Create AI agents with markdown files
Define agents using SKILL.md and AGENT.md files. No programming required. Syner OS implements the OS Protocol for building multi-agentic systems.
What is Syner OS?
An agentic operating system that lets you build AI agents using simple markdown files.
No Programming Required
Define agents with .md files. SKILL.md describes capabilities, AGENT.md defines behavior. The SDK handles the rest.
Protocol-First
OS Protocol defines contracts for agentic systems, like HTTP did for the web. Build interoperable agents that work together.
Extensible
Vendors create extensions that implement protocol contracts. @syner/vercel provides sandbox execution out of the box.
Three-Layer Architecture
Protocol defines contracts, SDK provides defaults, extensions enable customization.
Example: The protocol defines a sandbox API. The SDK provides a local implementation. @syner/vercel replaces it with Vercel's sandbox.
The Agent Loop
Every agent follows the same core pattern: read context, execute actions, validate with checks, and iterate.
Workflow Patterns
Built-in patterns from Anthropic's "Building Effective Agents" research.
Routing
Classify input and delegate to specialized agents based on intent.
Orchestrator-Workers
Central agent coordinates multiple workers for complex tasks.
Parallelization
Execute independent subtasks concurrently for faster results.
Evaluator-Optimizer
Generate, evaluate, and refine outputs iteratively until quality threshold met.
Integrations
Vendors extend Syner OS by implementing protocol contracts.
@syner/vercel
Vercel sandbox integration
What it provides: Secure code execution in Vercel's isolated sandbox environment. Replaces the SDK's default local sandbox with cloud-based execution.
Open Source
Syner OS and the OS Protocol are fully open source. Contribute, explore, or build on top.