Are you the author? Sign in to claim
A minimal yet powerful framework for creating AI agents with full control over tools, providers, and execution flow.
Production-ready AI agents that live in your applications
[!NOTE] Support for npm coming soon.
deno add jsr:@zypher/agent
import { createZypherAgent } from "@zypher/agent";
import { createFileSystemTools } from "@zypher/agent/tools";
import { eachValueFrom } from "rxjs-for-await";
const agent = await createZypherAgent({
model: "claude-sonnet-4-5-20250929", // Or use ModelProvider for advanced options
tools: [...createFileSystemTools()],
mcpServers: ["@modelcontextprotocol/sequentialthinking-server"],
});
// Run task with streaming
const taskEvents = agent.runTask("Implement authentication middleware");
for await (const event of eachValueFrom(taskEvents)) {
console.log(event);
}
See our documentation for full usage examples and API reference.
Licensed under the Apache License, Version 2.0. See LICENSE.md for details.
Built with ♥️ by CoreSpeed
Run analytics queries on ClickHouse — explore schemas, execute SQL, fetch results
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
Google's universal MCP server supporting PostgreSQL, MySQL, MongoDB, Redis, and 10+ databases