npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@evalops/maestro

v0.10.50

Published

Maestro by EvalOps - Deterministic coding agent with TUI/CLI and Web UI for AI-assisted development

Downloads

970

Readme

Maestro by EvalOps

CI

Maestro is a coding agent for real software work. It can inspect code, edit files, run shell commands, search large repos, and help across terminal, web, IDE, browser, Slack, and GitHub workflows.

This README is intentionally short. Use it to get running, then jump into the docs for the details.

What Maestro Covers

  • Terminal-first coding agent with both interactive TUI and one-shot CLI flows
  • Shared runtime across the web UI, VS Code, JetBrains, browser automation, Slack, and GitHub
  • Multi-provider model support, OAuth-based logins, and managed EvalOps routing
  • Hooks, MCP servers, context files, and headless automation for custom workflows
  • Visible tool use with approvals, sandboxing, and firewall controls

Interfaces

| Interface | Best for | Guide | | --- | --- | --- | | Terminal (TUI/CLI) | Interactive coding sessions and one-shot repo tasks | Features | | Web UI | Browser-based Maestro sessions | Web UI Guide | | Conductor | Browser automation through a local Maestro server | Conductor Bridge | | VS Code | Inline chat and IDE-native workflows | VS Code extension | | JetBrains | IntelliJ, WebStorm, PyCharm, and related IDEs | JetBrains plugin | | Slack | Chat-driven agent workflows with sandboxing | Slack agent | | GitHub | Issue-driven automation and PR generation | GitHub agent | | Ambient Agent | Long-running GitHub automation daemon | Ambient Agent design | | Headless | Embedding Maestro in CI, tools, and eval harnesses | Headless protocol |

Install

Release Binary (recommended)

Download the binary for your platform from the latest GitHub release:

# macOS Apple Silicon
curl -L https://github.com/evalops/maestro/releases/latest/download/maestro-darwin-arm64 -o maestro
chmod +x ./maestro

# Linux x64
curl -L https://github.com/evalops/maestro/releases/latest/download/maestro-linux-x64 -o maestro
chmod +x ./maestro

Package Managers (dev/source workflows)

bun install -g @evalops/maestro
npm install -g @evalops/maestro

Package-manager installs are kept for contributors and source-based workflows. Release binaries are the primary install artifact and are smoke-tested directly with maestro --version and a headless protocol handshake before attachment.

If a global install fails while resolving @evalops/tui or @evalops/contracts, you are installing a deprecated 0.10.8-0.10.20 package that referenced private workspace dependencies. Upgrade to @evalops/maestro@latest; published release verification now runs npm and Bun registry install smokes against the public package metadata before promotion.

Nix

nix run github:evalops/maestro

Quick Start

  1. Sign in for the default Codex subscription models:
maestro codex login

maestro codex login uses Codex app-server auth. Published installs use the packaged @openai/codex app-server and source checkouts fall back to a codex binary on PATH, so an existing codex login is reused automatically.

Bare maestro defaults to openai-codex/gpt-5.5. Maestro also supports OpenAI API keys, Anthropic, Google, OpenRouter, Azure OpenAI, GitHub Copilot, Groq, xAI, Cerebras, the major Chinese model providers (DeepSeek, Moonshot/Kimi, Alibaba Qwen via DashScope, MiniMax, and Z.ai/Zhipu GLM), and managed EvalOps auth. See Models for provider-specific setup and overrides.

For another Codex subscription model, select models under the openai-codex provider such as openai-codex/gpt-5.5.

  1. Launch the interface you want:
maestro
maestro "Audit this repository and suggest the next refactor"
maestro web

maestro web starts the browser UI on http://localhost:8080.

  1. Add project-specific behavior when needed:
  • Keys and config: ~/.maestro/keys.json, ~/.maestro/config.json
  • MCP servers: ~/.maestro/mcp.json or .maestro/mcp.json
  • Hooks: ~/.maestro/hooks.json or .maestro/hooks.json
  • Skills: maestro skill new <name>, maestro skill lint .maestro/skills
  • Agent instructions: AGENT.md, .maestro/APPEND_SYSTEM.md, ~/.maestro/agent/AGENT.md

Safety Model

  • Approval modes let you choose how much confirmation Maestro needs before acting
  • Sandbox modes range from workspace containment to danger-full-access
  • Firewall rules, trusted paths, and CI/secrets protections reduce common footguns

See Safety and the Threat Model for the full behavior.

Docs

| Goal | Guide | | --- | --- | | Install, build, and first run | Quickstart | | Learn TUI and CLI workflows | Features | | Find slash commands and flags | Tools Reference | | Configure providers and models | Models | | Understand approvals and sandboxing | Safety | | Run the browser interface | Web UI Guide | | Set up MCP servers | MCP Guide | | Package reusable skills | Skill Cookbook | | Work on the repo as a contributor | Contributor Runbook | | Integrate Maestro headlessly | Headless protocol | | Bring any coding agent into EvalOps | Any-Agent Control Plane | | Browse the full docs map | Documentation index |

Contributing

Fast path for local development:

git clone https://github.com/evalops/maestro.git
cd maestro
bun install
npx nx run maestro:build --skip-nx-cache
npm run smoke:local-e2e
npx nx run maestro:test --skip-nx-cache
npx nx run maestro:evals --skip-nx-cache

npm run smoke:local-e2e is credential-free after build: it checks help, version, the headless protocol handshake, and deterministic mock-agent read/write/search/edit flows through the built CLI.

For the browser UI without local API keys or Redis, use the local-only dev profile:

make web-local
curl http://localhost:8080/api/models

To prove Maestro works against a local Cerebro stack, keep sibling checkouts and run:

gh repo clone evalops/cerebro ../cerebro
make cerebro-e2e-doctor
make cerebro-e2e

To actually use the two repos together locally, start Cerebro from Maestro and export the same Cerebro/MCP env into the Maestro terminal:

make cerebro-dev

# In another Maestro terminal:
eval "$(make -s cerebro-env)"
make run-ts

That target delegates to Cerebro's make local-maestro-e2e with LOCAL_MAESTRO_REPO set to the current Maestro checkout. It builds and smokes Maestro, emits Maestro's canonical Platform replay, publishes it through local NATS, and verifies Cerebro graph projection plus MCP recall from the generated session traffic. make cerebro-e2e-doctor checks the Cerebro checkout, Docker Compose, the replay generator, and Cerebro's own local-E2E doctor before the full smoke starts. It also checks the effective local Cerebro URL, MCP URL, and workspace from .env or exported environment values, then verifies that the configured API port is free before the self-contained smoke starts. The default URL is http://localhost:18080; use LOCAL_BASE_URL/MAESTRO_CEREBRO_URL plus matching Cerebro LOCAL_HTTP_PORT overrides when that port is occupied. Set LOCAL_CEREBRO_REPO=/path/to/cerebro when the checkout is not a sibling directory. If your machine cannot surface OTEL collector debug logs, run LOCAL_ASSERT_OTEL=false make cerebro-e2e.

For direct local Maestro runs against an already-running Cerebro dev stack, make cerebro-env prints copyable exports derived from .env or shell overrides. The Makefile exports those vars to make targets so make run-ts, make web-local, and local smokes all see the same configuration.

Need Redis or PostgreSQL for a specific workflow? Start from docker-compose.yml and use the Contributor Runbook for the rest of the repo workflow.

Repository Layout

  • src/ - CLI entrypoints and shared application code
  • packages/core/ - agent loop, transport, types, and sandbox primitives
  • packages/ai/ - model registry, provider transport, and event streaming
  • packages/tui/ - TypeScript terminal UI
  • packages/tui-rs/ - native Rust TUI
  • packages/web/ - browser UI
  • packages/vscode-extension/, packages/jetbrains-plugin/, packages/slack-agent/, packages/github-agent/ - interface integrations

License

Business Source License 1.1. You can use Maestro for development, testing, and production use, but not as a competing hosted or embedded product. On April 14, 2030, the license converts to Apache 2.0. See LICENSE for details.