Install
$ agentstack add mcp-malayvuong-agent-orchestra ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Agent Orchestra
Multi-agent runtime for code review, automation, and orchestrated AI workflows.
Install
npm install -g @malayvuong/agent-orchestra
Requires Node.js >= 20. The CLI command is ao.
Quick Start
ao setup # interactive wizard — provider, config, automation, dashboard
Or minimal setup:
ao init # auto-detect and configure
Review a file
ao run --target ./docs/spec.md --superpower plan-review --auto-apply
The architect analyzes, the reviewer challenges, they debate, acknowledged findings get patched. See results:
ao job list
ao job show
Automate workflows
ao automation add ./jobs/nightly.json # register a job
ao automation enable nightly # enable scheduled execution
ao automation run nightly # run immediately
ao automation logs nightly # see run history
Scheduled jobs run while the daemon/server is running. Schedules use simple intervals like every 5m, every 1h, or every 1d; cron expressions are not supported yet.
Dashboard
ao daemon start # start in background → http://localhost:3100/
ao daemon status # check if running
ao daemon stop # stop
The dashboard lets you manage runs, tasks, automation jobs, sessions, and projects through a web UI.
Manage projects
ao project list # all registered projects across your machine
ao project add # register current directory
ao project status # detailed status + data counts
Superpowers
Ready-to-use review presets:
| Superpower | Best for | |---|---| | plan-review | specs, plans, RFCs | | security-review | code security, OWASP | | test-generation | missing tests and edge cases | | dependency-audit | package risk |
Validate skills
Validate one skill directory:
ao skills validate
Validate all skills discoverable from a workspace:
ao skills validate .
Providers
ao init auto-detects available providers:
| Provider | Default model | |---|---| | claude-cli | claude-opus-4-6 | | codex-cli | gpt-5.4 | | openai | gpt-5.4 | | anthropic | claude-sonnet-4-6 |
Override per run:
ao run --target ./spec.md --architect-provider claude-cli --reviewer-provider codex-cli
Documentation
Guides
- [Setup Guide](docs/guides/setup.md) — interactive wizard walkthrough
- [Automation Guide](docs/guides/automation.md) — create and manage workflow jobs
- [Dashboard & Daemon](docs/guides/dashboard.md) — web UI, REST API, daemon management
- [Project Manager](docs/guides/project-manager.md) — multi-project tracking
- [CLI Reference](docs/guides/cli-reference.md) — all commands at a glance
Architecture
- [Architecture Overview](docs/architecture-overview.md) — system layers, key concepts, design principles
- [Implementation Plan](docs/implementation-plan-v2.md) — detailed phase breakdown
Reference
- [Quick Start with Init](docs/onboarding/init.md)
- [Superpowers Overview](docs/superpowers/overview.md)
- [Built-in Superpowers](docs/superpowers/builtin-superpowers.md)
- [Plan Review](docs/superpowers/plan-review.md)
- [MCP Integration](docs/integrations/mcp.md)
- [Skill Format Reference](docs/skills/skill-format.md)
Development
If you are developing Agent Orchestra itself and want to run this checkout instead of the npm package:
git clone https://github.com/malayvuong/agent-orchestra.git
cd agent-orchestra
pnpm install
pnpm link:ao
ao --help
This creates a symlink in the npm global bin directory so ao resolves to the local checkout.
Remove the local link later with pnpm unlink:ao.
Before pushing changes, run the same local checks covered by CI:
pnpm format:check
pnpm lint
pnpm typecheck
pnpm build
pnpm test
pnpm audit --audit-level moderate
CI verifies the main matrix on Node.js 20 and 22.
Run the dashboard/API server from this checkout:
pnpm dev:server
Links
- GitHub:
- Issues:
License
[MIT](LICENSE)
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: malayvuong
- Source: malayvuong/agent-orchestra
- License: MIT
- Homepage: https://github.com/malayvuong/agent-orchestra
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.