A minimal yet powerful framework for creating AI agents with full control over tools, providers, and execution flow.
SaferSkills independently audited zypher-agent (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Production-ready AI agents that live in your applications
next steps based on LLM reasoning.
built-in checkpoint management
terminal commands with support for custom tools
authentication
through a unified interface
post-inference interceptors
comprehensive error handling
[!NOTE] Support for npm coming soon.
#### Using JSR
deno add jsr:@zypher/agentimport { 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
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.