overstory

作者 jayminwest已验证

Multi-agent orchestration for AI coding agents — pluggable runtime adapters for Claude Code, Pi, and more

1,329
Stars
210
Forks
TypeScript
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/jayminwest/overstory

快速入门

使用 overstory 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Overstory

Multi-agent orchestration for AI coding agents.

npm CI License: MIT

No longer maintained. Overstory is no longer actively maintained and this repository is archived (read-only) — I am not reviewing issues or merging pull requests here anymore. Thank you to everyone who contributed. The code stays MIT-licensed, so feel free to fork and carry it forward. Active development has moved to Warren, a self-hostable control plane for sandboxed cloud agents and overstory's spiritual successor — start there for anything new.

Overstory turns a single coding session into a multi-agent team by spawning worker agents in isolated git worktrees, coordinating them through a custom SQLite mail system, and merging their work back with tiered conflict resolution. New projects spawn Claude agents headless and surface them through a web UI (ov serve); tmux attach is the opt-in escape hatch for live steering. A pluggable AgentRuntime interface lets you swap between 11 runtimes — Claude Code, Pi, Gemini CLI, Aider, Goose, Amp, or your own adapter.

Warning: Agent swarms are not a universal solution. Do not deploy Overstory without understanding the risks of multi-agent orchestration — compounding error rates, cost amplification, debugging complexity, and merge conflicts are the normal case, not edge cases. Read STEELMAN.md for a full risk analysis and the Agentic Engineering Book (web version) before using this tool in production.

Install

Requires Bun v1.0+ and git. tmux is optional — only needed if you want to spawn workers with --no-headless or attach to a coordinator/worker pane directly. At least one supported agent runtime must be installed:

bun install -g @os-eco/overstory-cli

Or try without installing:

npx @os-eco/overstory-cli --help

Development

git clone https://github.com/jayminwest/overstory.git
cd overstory
bun install
bun link              # Makes 'ov' available globally

bun test              # Run all tests
bun run lint          # Biome check
bun run typecheck     # tsc --noEmit

Quick Start

# Initialize overstory in your project
cd your-project
ov init

# Install hooks into .claude/settings.local.json
ov hooks install

# Start a coordinator (persistent orchestrator)
ov coordinator start

# Open the web UI — primary operator surface for the swarm
ov serve   # then open http://localhost:7321

ov serve is where you watch the fleet, read the mail bus, and inspect per-agent timelines. New projects spawn Claude workers headless by default, so the UI sees them with full structured-event fidelity.

Other common commands:

# Spawn an individual worker agent (coordinator usually does this for you)
ov sling <task-id> --capability builder --name my-builder

# Force a worker into tmux when you want to attach mid-session
ov sling <task-id> --capability builder --name my-builder --no-headless
tmux attach -t ov-my-builder

# Inspect state from the CLI (also visible in the UI)
ov status
ov dashboard          # live TUI alternative to the web UI
ov mail check --inject
ov nudge <agent-name> # send a follow-up to a stalled agent

Commands

Every command supports --json where noted. Global flags: -q/--quiet, --timing, --project <path>. ANSI colors respect NO_COLOR.

Core Workflow

CommandDescription
ov initInitialize .overstory/ and bootstrap os-eco tools (--yes, --name, --tools, --skip-mulch, --skip-seeds, --skip-canopy, --skip-onboard, --json)
ov sling <task-id>Spawn a worker agent (--capability, --name, --spec, --files, --parent, --depth, --skip-scout, --skip-review, --max-agents, --dispatch-max-agents, --skip-task-check, --no-scout-check, --runtime, --base-branch, --profile, --headless, --no-headless, --recover, --json)
ov stop <agent-name>Terminate a running agent (--clean-worktree, --json)
ov primeLoad context for orchestrator/agent (--agent, --compact)
ov spec write <task-id>Write a task specification (--body)
ov discoverDiscover a brownfield codebase via coordinator-driven scout swarm (--skip, --name, --attach, --watchdog, --json)
ov updateRefresh .overstory/ managed files from installed package (--agents, --manifest, --hooks, --dry-run, --json)

Coordination

CommandDescription
ov coordinator startStart persistent coordinator agent (--attach/--no-attach, --watchdog, --monitor, --profile)
ov coordinator stopStop coordinator
ov coordinator statusShow coordinator state
ov coordinator sendFire-and-forget message to coordinator (--subject)
ov coordinator askSynchronous request/response to coordinator (--subject, --timeout)
ov coordinator outputShow recent coordinator output (--lines)
ov coordinator check-completeEvaluate exit triggers, return completion status
ov orchestrator startStart multi-repo orchestrator agent (--attach/--no-attach, --watchdog, --profile)
ov orchestrator stopStop orchestrator
ov orchestrator statusShow orchestrator state
ov orchestrator sendFire-and-forget message to orchestrator (--subject)
ov orchestrator askSynchronous request/response to orchestrator (--subject, --timeout)
ov orchestrator outputShow recent orchestrator output (--lines)
ov supervisor start[DEPRECATED] Start per-project supervisor agent
ov supervisor stop[DEPRECATED] Stop supervisor
ov supervisor status[DEPRECATED] Show supervisor state

Messaging

CommandDescription
ov mail sendSend a message (--to, --subject, --body, --type, --priority)
ov mail checkCheck inbox — unread messages (--agent, --inject, --debounce, --json)
ov mail listList messages with filters (--from, --to, --unread)
ov mail read <id>Mark message as read
ov mail reply <id>Reply in same thread (--body)
ov nudge <agent> [message]Send a text nudge to an agent (--from, --force, --json)

Task Groups

CommandDescription
ov group create <name>Create a task group for batch tracking
ov group status <name>Show group progress
ov group add <name> <issue-id>Add issue to group
ov group listList all groups

Merge

CommandDescription
ov mergeMerge agent branches into canonical (--branch, --all, --into, --dry-run, --json)

Observability

CommandDescription
ov statusShow all active agents, worktrees, tracker state (--json, --verbose, --all)
ov dashboardLive TUI dashboard for agent monitoring (--interval, --all)
ov inspect <agent>Deep per-agent inspection (--follow, --interval, --no-tmux, --limit, --json)
ov traceView agent/task timeline (--agent, --run, --since, --until, --limit, --json)
ov errorsAggregated error view across agents (--agent, --run, --since, --until, --limit, --json)
ov replayInterleaved chronological replay (--run, --agent, --since, --until, --limit, --json)
ov feedUnified real-time event stream (--follow, --interval, --agent, --run, --json)
ov logsQuery NDJSON logs across agents (--agent, --level, --since, --until, --follow, --json)
ov costsToken/cost analysis and breakdown (--live, --self, --agent, --run, --bead, --by-capability, --last, --json)
ov metricsShow session metrics (--last, --json)
ov run listList orchestration runs (--last, --json)
ov run show <id>Show run details
ov run completeMark current run as completed

Infrastructure

CommandDescription
ov hooks installInstall orchestrator hooks to .claude/settings.local.json (--force)
ov hooks uninstallRemove orchestrator hooks
ov hooks statusCheck if hooks are installed
ov worktree listList worktrees with status
ov worktree cleanRemove completed worktrees (--completed, --all, --force)
ov watchStart watchdog daemon — Tier 0 (--interval, --background)
ov monitor startStart Tier 2 monitor agent
ov monitor stopStop monitor agent
ov monitor statusShow monitor state
ov log <event>Log a hook event (--agent)
ov cleanClean up worktrees, sessions, artifacts (--completed, --all, --run)
ov doctorRun health checks on overstory setup — 13 categories (--category, --fix, --json)
ov serveHTTP + WebSocket surface for the web UI (--port, --host, --json)
ov ecosystemShow os-eco tool versions and health (--json)
ov upgradeUpgrade overstory to latest npm version (--check, --all, --json)
ov agents discoverDiscover agents by capability/state/parent (--capability, --state, --parent, --json)
ov completions <shell>Generate shell completions (bash, zsh, fish)

Architecture

Overstory uses instruction overlays and tool-call guards to turn agent sessions into orchestrated workers. Each agent runs in an isolated git worktree; new projects spawn Claude workers as headless subprocesses (stream-json over stdout) and surface them through ov serve's web UI, with tmux available as an opt-in for live attach. Inter-agent messaging is handled by a custom SQLite mail system (WAL mode, ~1-5ms per query) with typed protocol messages and broadcast support. A FIFO merge queue with 4-tier conflict resolution merges agent branches back to canonical. A tiered watchdog system (Tier 0 mechanical daemon, Tier 1 AI-assisted triage, Tier 2 monitor agent) ensures fleet health. See CLAUDE.md for full technical details.

Runtime Adapters

Overstory is runtime-agnostic. The AgentRuntime interface (src/runtimes/types.ts) defines the contract — each adapter handles spawning, config deployment, guard enforcement, readiness detection, and transcript parsing for its runtime. Set the default in config.yaml or override per-agent with ov sling --runtime <name>.

Claude Code agents can run in headless mode (the default for new projects — -p --output-format stream-json subprocess, NDJSON events parsed by ClaudeRuntime.parseEvents, surfaced through ov serve's web UI) or tmux mode (escape hatch for live attach — operator can tmux attach to watch and steer mid-session). ov init writes runtime.claudeHeadlessByDefault: true for new projects; legacy projects upgrading from earlier overstory versions keep tmux until they edit config. Override per-spawn with ov sling --no-headless (force tmux) or --headless (force headless). Sapling is statically headless; Pi, Codex, and Cursor have no buildDirectSpawn and reject --headless.

RuntimeCLIGuard MechanismStability
Claude Codeclaudesettings.local.json hooksStable
Saplingsp.sapling/guards.jsonStable
Pipi.pi/extensions/ guard extensionExperimental
Copilotcopilot(none — --allow-all-tools)Experimental
Cursoragent(none — --yolo)Experimental
CodexcodexOS-level sandbox (Seatbelt/Landlock)Experimental
Geminigemini--sandbox flagExperimental
Aideraider(none — --yes-always)Experimental
GoosegooseProfile-based permissionsExperimental
AmpampBuilt-in approval systemExperimental
OpenCodeopencode(none)Experimental

How It Works

Instruction overlays + tool-call guards + the ov CLI turn your coding session into a multi-agent orchestrator. A persistent coordinator agent manages task decomposition and dispatch, while a mechanical watchdog daemon monitors agent health in the background.

Orchestrator (multi-repo coordinator of coordinators)
  --> Coordinator (persistent orchestrator at project root)
        --> Supervisor / Lead (team lead, depth 1)
              --> Workers: Scout, Builder, Reviewer, Merger (depth 2)

Agent Types

AgentRoleAccess
OrchestratorMulti-repo coordinator of coordinators — dispatches coordinators per sub-repoRead-only
CoordinatorPersistent orchestrator — decomposes objectives, dispatches agents, tracks task groupsRead-only
SupervisorPer-project team lead — manages worker lifecycle, handles nudge/escalationRead-only
ScoutRead-only exploration and researchRead-only
BuilderImplementation and code changesRead-write
ReviewerValidation and code reviewRead-only
LeadTeam coordination, can spawn sub-workersRead-write
MergerBranch merge specialistRead-write
MonitorTier 2 continuous fleet patrol — ongoing health monitoringRead-only

Key Architecture

  • Agent Definitions: Two-layer system — base .md files define the HOW (workflow), per-task overlays define the WHAT (task scope). Base definition content is injected into spawned agent overlays automatically.
  • Messaging: Custom SQLite mail system with typed protocol — 8 message types (worker_done, merge_ready, dispatch, escalation, etc.) for structured agent coordination, plus broadcast messaging with group addresses (@all, @builders, etc.)
  • Worktrees: Each agent gets an isolated git worktree — no file conflicts between agents
  • Merge: FIFO merge queue (SQLite-backed) with 4-tier conflict resolution
  • Watchdog: Tiered health monitoring — Tier 0 mechanical daemon (tmux/pid liveness), Tier 1 AI-assisted failure triage, Tier 2 monitor agent for continuous fleet patrol
  • Tool Enforcement: Runtime-specific guards (hooks for Claude Code, extensions for Pi) mechanically block file modifications for non-implementation agents and dangerous git operations for all agents
  • Task Groups: Batch coordination with auto-close when all member issues complete
  • Session Lifecycle: Checkpoint save/restore for compaction survivability, handoff orchestration for crash recovery
  • Token Instrumentation: Session metrics extracted from runtime transcript files (JSONL)

Project Structure

overstory/
  src/
    index.ts                      CLI entry point (Commander.js program)
    types.ts                      Shared types and interfaces
    config.ts                     Config loader + validation
    errors.ts                     Custom error types
    json.ts                       Standardized JSON envelope helpers
    commands/                     One file per CLI subcommand (38 commands)
      agents.ts                   Agent discovery and querying
      coordinator.ts              Persistent orchestrator lifecycle
      supervisor.ts               Team lead management [DEPRECATED]
      dashboard.ts                Live TUI dashboard (ANSI via Chalk)
      hooks.ts                    Orchestrator hooks management
      sling.ts                    Agent spawning
      group.ts                    Task group batch tracking
      nudge.ts                    Agent nudging
      mail.ts                     Inter-agent messaging
      monitor.ts                  Tier 2 monitor management
      merge.ts                    Branch merging
      status.ts                   Fleet status overview
      prime.ts                    Context priming
      init.ts                     Project initialization
      worktree.ts                 Worktree management
      watch.ts                    Watchdog daemon
      log.ts                      Hook event logging
      logs.ts                     NDJSON log query
      feed.ts                     Unified real-time event stream
      run.ts                      Orchestration run lifecycle
      trace.ts                    Agent/task timeline viewing
      clean.ts                    Worktree/session cleanup
      doctor.ts                   Health check runner (13 check modules)
      inspect.ts                  Deep per-agent inspection
      spec.ts                     Task spec management
      errors.ts                   Aggregated error view
      replay.ts                   Interleaved event replay
      stop.ts                     Agent termination
      costs.ts                    Token/cost analysis
      metrics.ts                  Session metrics
      ecosystem.ts                os-eco tool dashboard
      update.ts                   Refresh managed files
      upgrade.ts                  npm version upgrades
      discover.ts                 Brownfield codebase discovery via coordinator-driven scout swarm
      orchestrator.ts             Multi-repo coordination (PersistentAgentSpec)
      completions.ts              Shell completion generation (bash/zsh/fish)
      serve.ts                    HTTP + WebSocket surface for the web UI
      serve/                      REST handlers, WebSocket broadcaster, static SPA fallback
    canopy/
      client.ts                   Canopy client (prompt rendering, listing, emission)
    agents/                       Agent lifecycle management
      manifest.ts                 Agent registry (load + query)
      overlay.ts                  Dynamic CLAUDE.md overlay generator
      identity.ts                 Persistent agent identity (CVs)
      checkpoint.ts               Session checkpoint save/restore
      lifecycle.ts                Handoff orchestration
      hooks-deployer.ts           Deploy hooks + tool enforcement
      copilot-hooks-deployer.ts   Deploy hooks config to Copilot worktrees
      guard-rules.ts              Shared guard constants (tool lists, bash patterns)
      mail-poll-detect.ts         Bash mail-poll pattern detector (runtime backstop)
      scope-detect.ts             Soft FILE_SCOPE violation detection (builder/merger)
    worktree/                     Git worktree + tmux management
    mail/                         SQLite mail system (typed protocol, broadcast)
    merge/                        FIFO queue + conflict resolution + sentinel-file lock + dry-run prediction
    watchdog/                     Tiered health monitoring (daemon, triage, health)
    logging/                      Multi-format logger + sanitizer + reporter + color control + shared theme/format
    metrics/                      SQLite metrics + pricing + transcript parsing
    doctor/                       Health check modules (13 checks)
    utils/                        Shared utilities (bin, fs, pid, time, version)
    insights/                     Session insight analyzer + quality-gate runner (success/partial/failure)
    runtimes/                     AgentRuntime abstraction (registry + adapters: Claude, Pi, Copilot, Codex, Gemini, Sapling, OpenCode, Cursor, Aider, Goose, Amp)
    tracker/                      Pluggable task tracker (beads + seeds backends)
    mulch/                        mulch client (programmatic API + CLI wrapper)
    e2e/                          End-to-end lifecycle tests
  agents/                         Base agent definitions (.md, 9 roles) + skill definitions
  templates/                      Templates for overlays and hooks

Configuration

Gateway Providers

Route agent API calls through custom gateway endpoints (z.ai, OpenRouter, self-hosted proxies). Configure providers in .overstory/config.yaml:

providers:
  anthropic:
    type: native
  zai:
    type: gateway
    baseUrl: https://api.z.ai/v1
    authTokenEnv: ZAI_API_KEY
  openrouter:
    type: gateway
    baseUrl: https://openrouter.ai/api/v1
    authTokenEnv: OPENROUTER_API_KEY
models:
  builder: zai/claude-sonnet-4-6
  scout: openrouter/openai/gpt-4o

How it works: Model refs use provider/model-id format. Overstory sets ANTHROPIC_BASE_URL to the gateway baseUrl, ANTHROPIC_AUTH_TOKEN from the env var named in authTokenEnv, and ANTHROPIC_API_KEY="" to prevent direct Anthropic calls. The agent receives "sonnet" as a model alias and Claude Code routes via env vars.

Environment variable notes:

  • ANTHROPIC_AUTH_TOKEN and ANTHROPIC_API_KEY are mutually exclusive per-agent
  • Gateway agents get ANTHROPIC_API_KEY="" and ANTHROPIC_AUTH_TOKEN from provider config
  • Direct Anthropic API calls (merge resolver, watchdog triage) still need ANTHROPIC_API_KEY in the orchestrator env

Validation: ov doctor --category providers checks reachability, auth tokens, model-provider refs, and tool-use compatibility.

ProviderConfig fields:

FieldTypeRequiredDescription
typenative or gatewayYesProvider type
baseUrlstringGateway onlyAPI endpoint URL
authTokenEnvstringGateway onlyEnv var name holding auth token

Troubleshooting

Recovering a dead lead (or any agent that exited mid-task)

If a lead exits without sending merge_ready (process termination, watchdog kill, manual ov stop) and the task was already closed, both ov nudge and ov sling would normally refuse to re-engage:

  • ov nudge <name> reports No active session for agent "..." (state: completed). The agent's process is gone, so there's nothing to send keystrokes to.
  • ov sling <task-id> --capability lead reports Task "..." is not workable (status: closed).

To re-dispatch a fresh lead against the same task, pass --recover:

ov sling <task-id> --capability lead --recover --name <fresh-name>

--recover bypasses the workable-status check so the new lead can pick up where the dead one left off (the task remains closed; the new lead reads the spec and proceeds). The terminal-state nudge error itself includes a copy-paste hint to this exact form.

Coordinator died during startup

This error means the coordinator tmux session exited before the TUI became ready. The most common cause is slow shell initialization.

Step 1: Measure shell startup time

time zsh -i -c exit   # For zsh
time bash -i -c exit  # For bash

If startup takes more than 1 second, slow shell init is likely the cause.

Step 2: Common slow-startup causes

CauseTypical delayFix
oh-my-zsh with many plugins1-5sReduce plugins, switch to lighter framework (zinit with lazy loading)
nvm (Node Version Manager)1-3sUse --no-use + lazy-load nvm, or switch to fnm/volta
pyenv init0.5-2sLazy-load pyenv
rbenv init0.5-1sLazy-load rbenv
starship prompt0.5-1sCheck starship timings
conda auto-activate1-3sauto_activate_base: false in .condarc
Homebrew shellenv0.5-1sCache output instead of evaluating every shell start

Step 3: Configure shellInitDelayMs in .overstory/config.yaml:

runtime:
  shellInitDelayMs: 3000
  • Default: 0 (no delay)
  • Typical values: 10005000 depending on shell startup time
  • Values above 30000 (30s) trigger a warning
  • Inserts a delay between tmux session creation and TUI readiness polling

Step 4: Optimization examples

Lazy-load nvm (add to ~/.zshrc or ~/.bashrc):

# Lazy-load nvm — only activates when you first call nvm/node/npm
export NVM_DIR="$HOME/.nvm"
nvm() { unset -f nvm node npm npx; [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"; nvm "$@"; }
node() { unset -f nvm node npm npx; [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"; node "$@"; }
npm()  { unset -f nvm node npm npx; [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"; npm  "$@"; }
npx()  { unset -f nvm node npm npx; [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"; npx  "$@"; }

Reduce oh-my-zsh plugins (edit ~/.zshrc):

# Before: plugins=(git zsh-autosuggestions zsh-syntax-highlighting node npm python ruby rbenv pyenv ...)
# After: keep only what you use regularly
plugins=(git)

Part of os-eco

Overstory is part of the os-eco AI agent tooling ecosystem.

os-eco

Contributing

Contributions are welcome! See CONTRIBUTING.md for guidelines.

License

MIT

常见问题

What is overstory?

overstory is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by jayminwest. Multi-agent orchestration for AI coding agents — pluggable runtime adapters for Claude Code, Pi, and more. It has 1,329 GitHub stars.

Is overstory safe to use?

Yes. overstory passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install overstory?

Clone the repository with "git clone https://github.com/jayminwest/overstory" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is overstory written in?

overstory is primarily written in TypeScript. It is open-source under jayminwest on GitHub, so you can review or fork the full source.

Are there alternatives to overstory?

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 overstory against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情