by open-mercato
Cezar is a parallel coding agents orchestrator. Type a task, pick a workflow and an agent — Claude Code, Codex or OpenCode, or a mix of them per step — and watch it work live: steps, tool calls ... or: fire and forget, PR will land and issue will be fixed. Run ot locally (Linux, Mac, WSL2) or on VPS!
# Add to your Claude Code skills
git clone https://github.com/open-mercato/cezarLast scanned: 8/7/2026
{
"issues": [
{
"type": "npm-audit",
"message": "@hono/node-server: Node.js Adapter for Hono: Path traversal in `serve-static` on Windows via encoded backslash (`%5C`)",
"severity": "medium"
},
{
"type": "npm-audit",
"message": "hono: Hono: ReDoS in CORS middleware via Access-Control-Request-Headers",
"severity": "medium"
},
{
"type": "npm-audit",
"message": "mermaid: Mermaid configuration APIs allow prototype pollution",
"severity": "medium"
},
{
"type": "npm-audit",
"message": "postcss: PostCSS: incomplete fix of GHSA-6g55-p6wh-862q — attacker-controlled sourceMappingURL reads arbitrary .map files when `from` is unset",
"severity": "medium"
},
{
"type": "npm-audit",
"message": "react-router: React Router: RSC Mode CSRF Bypass Allows Action Execution Before 400 Response",
"severity": "high"
},
{
"type": "npm-audit",
"message": "undici: undici vulnerable to downstream response desynchronization via retry interceptor",
"severity": "high"
}
],
"status": "WARNING",
"scannedAt": "2026-08-07T05:39:54.051Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}See how cezar compares with popular alternatives.
cezar is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by open-mercato. Cezar is a parallel coding agents orchestrator. Type a task, pick a workflow and an agent — Claude Code, Codex or OpenCode, or a mix of them per step — and watch it work live: steps, tool calls ... or: fire and forget, PR will land and issue will be fixed. Run ot locally (Linux, Mac, WSL2) or on VPS!. It has 228 GitHub stars.
cezar returned warnings in SkillsLLM's automated security scan. It has no critical vulnerabilities, but review the flagged issues in the Security Report section before adding it to your workflow.
Clone the repository with "git clone https://github.com/open-mercato/cezar" and add it to your Claude Code skills directory (see the Installation section above).
cezar is primarily written in TypeScript. It is open-source under open-mercato on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh cezar against similar tools.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
claude, codex, opencode or pi login. No API key needed..ai/cezar/.Parallel tasks — Run and queue many tasks, each in its own git worktree.
Live run — Every step, tool call and token, as it happens.
Variants — Run a task ×2 or ×3 and keep the best diff.
Workflows — Drag skills and checks into a chain, saved as YAML.
GitHub — Hand an open issue to the agent in one click.
Skills + Autonomous — Pick a playbook, flip Autonomous and walk away.
On your phone — the same cockpit, from the task list to the diff.
You need Node 20+ and at least one agent CLI you're logged into:
Claude Code, Codex,
OpenCode or pi.
git and gh are optional.
cd your-repo
npx cezar-cli
This opens the cockpit at http://localhost:4321. Type a task, pick a workflow, then hit Start.
npx cezar-cli run "add a --json flag to the export command" # headless, no browser
npx cezar-cli init # scaffold .ai/cezar/
npx cezar-cli@nightly # try tonight's build
Just want to look around? Run
CEZ_DRY_RUN=1 npx cezar-cli. It uses a built-in mock agent, so you don't need to log in.
npx cezar-cli server-install --platform ubuntu-vps
This sets up HTTPS, a login and a system service, so you can open the cockpit from anywhere, including your phone. There are guides for Ubuntu VPS and macOS + ngrok.
A workflow is a small YAML file in .ai/cezar/workflows/:
name: fix-and-verify
steps:
- id: implement
prompt: "{{task}}"
skill: project-conventions # optional: a Markdown skill from .ai/skills
runner: codex # optional: which agent runs this step
- id: verify
command: "npm test" # exit 0 = pass
onFail: { retry: implement, max: 2 }
The built-in quick-task workflow runs with no setup.
The reference covers everything else: configuration, environment variables, agent backends, multiple projects, remote access and local development.
git clone https://github.com/open-mercato/cezar.git && cd cezar
npm install
npm run dev
MIT © Patryk Lewczuk. Full text in LICENSE.