
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/solidstart
Advanced tools
AI SDK bindings for SolidStart — reactive hooks with defaults, server handlers, and agents
AI SDK bindings for SolidStart. Reactive SolidJS hooks, server handlers, and agents — all wired up with sensible defaults.
npm install @aibind/solidstart ai solid-js
Peer dependencies: solid-js ^1.8, ai ^6.0.
// src/routes/api/__aibind__/[...path].ts
import { createStreamHandler } from "@aibind/solidstart/server";
import { anthropic } from "@ai-sdk/anthropic";
const handler = createStreamHandler({
model: anthropic("claude-sonnet-4-20250514"),
});
export async function POST({ request }: { request: Request }) {
return handler(request);
}
import { useStream } from "@aibind/solidstart";
function Chat() {
const { text, loading, send } = useStream({
system: "You are a helpful assistant.",
});
let prompt = "";
return (
<form
onSubmit={(e) => {
e.preventDefault();
send(prompt);
}}
>
<input value={prompt} onInput={(e) => (prompt = e.target.value)} />
<button disabled={loading()}>Send</button>
<Show when={text()}>
<p>{text()}</p>
</Show>
</form>
);
}
| Import Path | What You Get |
|---|---|
@aibind/solidstart | useStream, useStructuredStream, defineModels |
@aibind/solidstart/server | createStreamHandler, ServerAgent |
@aibind/solidstart/agent | useAgent |
@aibind/solidstart/history | ReactiveChatHistory, ReactiveMessageTree |
@aibind/solidstart/markdown | useStreamMarkdown |
@aibind/solidstart/project | Project |
Full documentation, API reference, and guides: aibind.dev
MIT
FAQs
AI SDK bindings for SolidStart — reactive hooks with defaults, server handlers, and agents
We found that @aibind/solidstart 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.