
Security News
GitHub Actions Adds cache-mode to Limit Cache Poisoning Risk
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.
@aibind/nuxt
Advanced tools
AI SDK bindings for Nuxt — composables with defaults, server handlers, and agents
AI SDK bindings for Nuxt. Vue 3 composables, server handlers, and agents — all wired up with sensible defaults.
npm install @aibind/nuxt ai vue
Peer dependencies: vue ^3.3, ai ^6.0.
// server/api/__aibind__/[...path].ts
import { createStreamHandler } from "@aibind/nuxt/server";
import { anthropic } from "@ai-sdk/anthropic";
const handler = createStreamHandler({
model: anthropic("claude-sonnet-4-20250514"),
});
export default defineEventHandler(async (event) => {
return handler(toWebRequest(event));
});
<script setup lang="ts">
import { useStream } from "@aibind/nuxt";
const { text, loading, send } = useStream({
system: "You are a helpful assistant.",
});
const prompt = ref("");
</script>
<template>
<form @submit.prevent="send(prompt)">
<input v-model="prompt" />
<button :disabled="loading">Send</button>
</form>
<p v-if="text">{{ text }}</p>
</template>
| Import Path | What You Get |
|---|---|
@aibind/nuxt | useStream, useStructuredStream, defineModels |
@aibind/nuxt/server | createStreamHandler, ServerAgent |
@aibind/nuxt/agent | useAgent |
@aibind/nuxt/history | ReactiveChatHistory, ReactiveMessageTree |
@aibind/nuxt/markdown | StreamMarkdown |
@aibind/nuxt/project | Project |
Full documentation, API reference, and guides: aibind.dev
MIT
FAQs
AI SDK bindings for Nuxt — composables with defaults, server handlers, and agents
We found that @aibind/nuxt demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.

Company News
Allow myself to introduce... myself.

Research
/Security News
A Twitch browser extension on Chrome and Firefox forwards users’ live OAuth session tokens through proxies controlled by a Russian bot service.