zymi-core
The auditable MCP backend for agents — tools as declarative YAML pipelines: event-sourced, replayable, approval-gated.
Install / Use
claude mcp add metravod -- npx -y github:metravod/zymi-coreIf the server publishes to npm under a different name, use that package instead — check the repo README.
MCP Server
Model Context Protocol server
Quality Score
Category
AutomationSupported Platforms
Our assessment of zymi-core
zymi-core scores 81/100 on our quality scale, 494th of 860 Automation skills we index.
Its MCP Server is 19 KB long, well organised into 25 sections with 12 code examples: a thorough specification that gives an agent plenty to work with.
It has 10 GitHub stars, so there is little community track record yet; judge it on its content.
Maintenance, license and trust
- The repository was last updated 16 days ago, so zymi-core is actively maintained.
- It is released under the MIT license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 97/100, with no cautions. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
Safety scan
No issues foundOur scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands (2 minor notes below). An AI review of the same text found nothing harmful.
- noteInstalls by piping a downloaded script into a shellline 62
> Don't have `uv` yet? `curl -LsSf https://astral.sh/uv/install.sh | sh` - noteInstalls by piping a downloaded script into a shellline 63
> (macOS/Linux) or `irm https://astral.sh/uv/install.ps1 | iex` (Windows).
AI review by kimi-k2.7-code on 2026-09-25. Automated pattern scan on 2026-09-24. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.
zymi-core compared with similar skills
All 4 of these similar skills score higher than zymi-core; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| zymi-core (this skill)by metravod | 81 | 10 | 16d ago | MCP Server |
| Agent-Reachby Panniantong | 100 | 85.3k | 9d ago | CLAUDE.md |
| headroomby headroomlabs-ai | 100 | 73.7k | today | CLAUDE.md |
| rufloby ruvnet | 100 | 73.2k | today | CLAUDE.md |
| CowAgentby zhayujie | 100 | 47.1k | today | CLAUDE.md |
Frequently asked questions
- How do I install zymi-core?
- Run
claude mcp add metravod -- npx -y github:metravod/zymi-core. The install tabs above show the steps for each supported agent. - Which AI agents does zymi-core work with?
- It is written for Claude Code and Claude Desktop, as a MCP Server file. Other agents that read the same format can often use it too.
- Is zymi-core safe to use?
- Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands (2 minor notes below). An AI review of the same text found nothing harmful. It is MIT-licensed and scores 97/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is zymi-core still maintained?
- The repository was last updated 16 days ago, so zymi-core is actively maintained.
Skill content
View source on GitHubWhy zymi-core?
Agent frameworks compete for the front of the stack — the loop, the planner, the IDE. zymi owns the back: the tools your agent calls.
zymi mcp serve exposes declarative YAML pipelines as MCP tools to any host — Claude Code, Claude Desktop, Cursor, or any framework with an MCP adapter (LangGraph, CrewAI, OpenAI Agents SDK). Unlike a script behind an endpoint, a zymi tool is:
- Declarative, like dbt. Agents, pipelines, tools, connectors, approvals — all YAML. The engine validates and runs them as a DAG.
- Event-sourced. Every state change is an immutable, hash-chained event. Runs are replayable, resumable, and auditable without extra logging.
- Boundary-safe — interactively. Steps emit intentions (run shell, write file, call HTTP) that pass through policy + contracts + optional human approval before execution. Over MCP the approval renders as an approve/deny form right in the calling agent's UI; the risky thing doesn't happen until someone says yes.
- Self-debuggable. Serve with
--expose-observabilityand the agent can introspect its own runs — list them, pull the event trace, read any step's exact I/O — and explain a failure without you opening a log file.
zymi is deliberately not an autonomous coding agent, an IDE plugin, or a chat UI — it's the governed tool layer underneath those. It also runs standalone: bring a Telegram agent online in two minutes, no MCP involved. Either way, a year later you can still answer exactly what this agent did on any past run.
📚 AI-assistant friendly out of the box. Every zymi init scaffold drops an AGENTS.md into the user's project — vocabulary, file map, task→file routing. Claude Code / Cursor / Aider read it automatically; the YAML they help you write gets noticeably more correct. For agents that build zymi projects (rather than work inside one), install zymi-skill into your assistant — opinionated Agent Skill with activation rules + progressive disclosure references, so the assistant produces zymi-native YAML instead of generic agent advice.
Run a Telegram agent in two minutes
The canonical standalone demo (no MCP host needed) — a real chat bot, wired declaratively.
uv tool install zymi-core # one-time; puts `zymi` on PATH globally
mkdir telegram-agent && cd telegram-agent
zymi init --example telegram
# 1. Create a bot via @BotFather in Telegram; copy the token.
# 2. Fill .env:
cp .env.example .env # edit TELEGRAM_BOT_TOKEN + OPENAI_API_KEY
# 3. Open project.yml, replace "your_username_here" with your actual
# Telegram username (no @). Keeps strangers out of the bot.
zymi fetch # uv sync — builds ./.venv from pyproject.toml
zymi serve chat # .env is auto-loaded; pipeline runs in ./.venv
Why
uv tool installandzymi fetch?zymiis a global CLI; your project keeps its ownpyproject.toml+.venvfor any Python deps your@toolfiles import.zymi fetchwrapsuv syncto build that venv, and pipeline-run commands transparently re-exec inside it (ADR-0032). Don't haveuvyet?curl -LsSf https://astral.sh/uv/install.sh | sh(macOS/Linux) orirm https://astral.sh/uv/install.ps1 | iex(Windows).
Message the bot. It replies in seconds. Every inbound message, LLM call, approval decision, and outbound reply is in .zymi/events.db; watch live with zymi observe.
The whole wiring — Telegram I/O, two-step DAG (assistant drafts, reviewer polishes), declarative + Python tools, approval channel — lives in YAML. The scaffold also drops AGENTS.md so an AI coding assistant can extend the project safely. Concrete demo of:
http_pollconnector — long-polls Telegram'sgetUpdates, no HTTPS / ngrok neededhttp_postoutput — sends eachResponseReadyback to the user- Telegram approval channel — DMs admins with ✅ / ❌ buttons when the agent calls
broadcast(requires_approval: true) - Python
@toolauto-discovery — droptools/get_weather.py(sync) ortools/translate.py(async) and the agent picks them up
Ask the bot to "announce that we're closing at 5pm" — the agent calls broadcast, you get a DM with approve/deny buttons, nothing goes out until you click. End-to-end audit trail in zymi events.
Full setup in docs/getting-started.md. Connector deep-dive in docs/connectors.md. Approvals in docs/approvals.md.
What's in the box
Pipelines — DAGs, agent steps, deterministic tool steps, ask steps
A pipeline is a list of steps with depends_on: edges. Independent steps run in parallel. Each step is an agent step (LLM ReAct loop), a deterministic tool step (ADR-0024) — direct dispatch with templated args, no LLM hop, but the same event envelope — or an ask step (ADR-0042): delegate a reasoning question to whoever called the pipeline instead of configuring a second, separately-billed model. The run parks, asks the caller, and resumes with the answer (a human at the terminal under zymi run; the connected agent under zymi mcp serve).
Mix them freely:
steps:
- id: fetch # deterministic — no LLM
tool: http_get
args: { url: "https://api.example.com/${inputs.id}" }
- id: classify # LLM
agent: classifier
task: "${steps.fetch.output}"
depends_on: [fetch]
- id: sanity # ask — the caller answers, no llm: needed
ask: "Does this classification look right?\n${steps.classify.output}"
depends_on: [classify]
Conditional branches (ADR-0028) — a step can gate on an upstream output. Skipped branches cascade to descendants and emit StepSkipped events, so routing decisions land in the trace, not in the LLM's head:
- id: router
agent: concierge
task: "Pick: ${inputs.q}" # calls route('short' | 'rag')
- id: rag_lookup
tool: pinecone_query
args: { query: "${inputs.q}" }
depends_on: [router]
when: "${steps.router.output} == 'rag'"
Schema, examples, gotchas → docs/pipelines.md.
Tools — four kinds, one catalogue
All four kinds emit identical ToolCallRequested / ToolCallCompleted events; the agent doesn't know which catalogue a tool came from.
- Declarative HTTP / shell in
tools/<name>.yml— no code. - Python
@toolintools/<name>.py— sync or async, signature → JSON Schema, auto-discovered. - MCP servers — one
mcp_servers:entry gives N tools, namespacedmcp__<server>__<tool>(ADR-0023). - Builtins —
read_file,write_file,write_memory,execute_shell_command,spawn_sub_agent.
# tools/get_weather.py — auto-discovered at runtime startup.
from zymi import tool
@tool
def get_weather(city: str) -> str:
"""Return the current weather for a city."""
return f"sunny in {city}"
Schema and the four kinds in detail → docs/tools.md.
zymi as an MCP server — pipelines as tools for any agent
The mirror of the MCP client above: zymi mcp serve exposes your pipelines as MCP tools over stdio, so any MCP host (Claude Code, Claude Desktop, Cursor, the OpenAI Agents / LangGraph / OpenHands runtimes via their MCP adapters) can call a zymi pipeline as a single tool — no per-runtime glue (ADR-0033).
This is the priority direction for zymi: own the auditable, event-sourced back of the agent stack rather than competing on the front. A pipeline is a tool whose every step is hash-chained, replayable, and resumable — which is exactly what an agent's tool catalogue is missing.
Exposure is opt-in per pipeline (so internal/cron pipelines never leak into agent tool catalogues):
# pipelines/research.yml
expose:
mcp:
name: research # tool name (defaults to file stem)
mode: sync | async # async hints the caller to task-augment (SEP-1686)
description: "Deep-research a topic and return a brief."
zymi mcp serve # serve all expose:-d pipelines over stdio
zymi mcp serve --include 'research_*' --exclude '*_internal'
- Sync —
tools/callblocks until the pipeline finishes; works on every MCP client today. Tool input schema is auto-generated from the pipeline'sinputs:. - Async — a client that augments the call with a SEP-1686 task gets a
CreateTaskResultimmediately and pollstasks/get/tasks/result/tasks/list;tasks/cancelandnotifications/cancelledcancel it. The pipeline runs in the background and stays fully observable in the event store.
Human approvals render in the calling agent's UI. A pipeline step that trips an approval sends a server-initiated elicitation/create back through the live tools/call — in Claude Code that's a native approve/deny form. Approve and the pipeline continues; deny and it halts with the decision in the audit trail; a client without elicitation support fail-closes (ApprovalDenied{reason: client_no_elicitation}). Verified live against Claude Code.
The pipeline can borrow the caller's brain. An ask: step (ADR-0042) delegates a reasoning question back to the calling agent instead of configuring a second model. On a task-augmented call the run parks, the task goes input_required carrying { prompt, resume_token }, and the caller reasons in its own loop and calls zymi/reasoning/resume { resume_token, answer } — no sampling, no deprecated primitives, just tools + park/resume. The prompt and answer are recorded, so replay reads the answer back byte-identical. A pure tool + ask pipeline needs no llm: at all. Verified live against zymi mcp serve.
The agent can debug its own runs. zymi mcp serve --expose-observability adds four read-only tools — zymi.runs.list / .get / .events / .step_io (ADR-0034). Ask the agent "why did the last run fail?" and it pulls the event trace and answers with the exact policy verdict and approval decision — introspection other stacks can't expose because the per-step event granularity isn't there. Scoped to the serve session by default; --observability-scope all opens the whole store for single-user dev.
**Current limitations (hone
Truncated for display — read the full file on GitHub.
Related Skills
Agent-Reach
85.3kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
headroom
73.7kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
ruflo
73.2k🌊 The original agent harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, federation, vector RAG integration, and native Claude Code / Codex / Hermes and many more Integrated
CowAgent
47.1kOpen-source super AI assistant & Agent Harness. Plans tasks, runs tools and skills, self-evolves with memory and knowledge. Multi-agent, multi-model, multi-channel. Lightweight, extensible, one-line install.
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
