oh-my-claudecode
AgentFreeTeams-first Multi-agent orchestration for Claude Code
Capabilities15 decomposed
multi-tier agent registry with specialization-based delegation
Medium confidenceMaintains a registry of 28 specialized agents organized into tiers (architecture, implementation, review, testing) that automatically route tasks based on delegation categories and agent specialization profiles. Uses a hook-driven execution model where pre-processing hooks analyze incoming requests, match them against agent capabilities via metadata, and delegate to the most appropriate tier. Agents can be customized with domain-specific prompts and skill bindings without modifying core orchestration logic.
Implements a tiered agent system with explicit specialization profiles and hook-driven delegation matching, allowing agents to be customized independently while maintaining centralized routing logic through pre-processing hooks that analyze task characteristics against agent metadata
More structured than generic function-calling approaches because it uses explicit agent tiers and specialization categories, enabling better task-to-agent matching than systems that treat all agents as interchangeable
session isolation with state persistence and recovery
Medium confidenceImplements project-level session isolation using an inbox/outbox pattern where each session maintains separate state files containing mode state, agent decisions, and execution history. State is persisted to disk in JSON schemas specific to each execution mode (Ralph Loop, Autopilot, Ultrawork, Team Orchestration), enabling recovery from interruptions and resumption of multi-step workflows. Session isolation prevents cross-project contamination and allows parallel execution of independent sessions with their own model routing and hook configurations.
Uses mode-specific state schemas and an inbox/outbox pattern for isolation, allowing each execution mode to define its own state structure while maintaining a unified recovery mechanism that can replay decisions and continue from checkpoints
More robust than stateless orchestration because it persists intermediate decisions and enables recovery, and more flexible than global state because session isolation prevents cross-project contamination and allows parallel execution
artifact generation with structured output and format support
Medium confidenceGenerates structured artifacts (code files, reports, documentation) from agent outputs using post-processing hooks that parse agent responses and format them according to artifact templates. Artifacts are stored in the project directory with metadata (agent, timestamp, mode) for tracking. Artifact generation supports multiple formats (code, markdown, JSON) and can apply transformations (linting, formatting) before writing. Artifacts are indexed in session state, enabling retrieval and versioning.
Implements post-processing hooks that parse agent outputs and generate formatted artifacts with metadata tracking, enabling structured output generation and artifact versioning without manual file management
More structured than raw text output because artifacts include metadata and formatting, and more flexible than hardcoded templates because artifact generation is hook-based and supports custom transformations
configuration management with settings.json and claude.md merge strategy
Medium confidenceManages configuration through settings.json (hook registry, model routing, skill definitions) and CLAUDE.md (project-specific context and constraints). Configuration changes are merged intelligently when updating oh-my-claudecode, preserving user customizations while incorporating new defaults. Settings are validated against a schema before application, preventing invalid configurations. Configuration is scoped per project, enabling different teams to use different settings. Configuration changes trigger hook reloads without requiring plugin restart.
Implements intelligent configuration merging that preserves user customizations while incorporating new defaults, with schema-based validation and per-project scoping, enabling safe updates without losing configuration
More robust than manual configuration because it validates settings before application, and more flexible than global configuration because it supports per-project customization
installation and auto-update system with version management
Medium confidenceProvides automated installation via setup wizard and auto-update mechanism that checks for new versions and applies updates with rollback capability. Installation guards prevent incompatible versions from being installed. Plugin cache is managed to prevent stale code from being loaded. Version reconciliation ensures that installed components match the expected versions. Update process preserves user configurations and custom hooks through the merge strategy. Installation diagnostics help troubleshoot setup issues.
Implements automated installation with setup wizard and auto-update that preserves user configurations through intelligent merge strategy, with version guards and rollback capability for safe updates
More user-friendly than manual installation because setup wizard automates configuration, and more reliable than simple version replacement because it includes rollback and configuration preservation
cli commands and launch system for programmatic control
Medium confidenceProvides a CLI interface with commands for launching execution modes, querying analytics, managing configurations, and running diagnostics. CLI commands can be invoked from external scripts or CI/CD pipelines, enabling integration with existing workflows. Launch system supports parameterized execution (mode, agents, skills, hooks) via command-line arguments. CLI output is structured (JSON, CSV) for easy parsing by external tools. Commands are authenticated and authorized based on project permissions.
Implements a structured CLI with parameterized execution and JSON/CSV output, enabling integration with CI/CD pipelines and external tools while maintaining project-based authentication
More scriptable than UI-only interfaces because CLI commands can be invoked from scripts, and more flexible than fixed integrations because CLI supports parameterized execution
notification system with configurable alerts and delivery channels
Medium confidenceProvides a notification system that alerts users to execution events (task completion, failures, escalations) via configurable delivery channels (in-app, email, Slack, webhooks). Notifications are triggered by post-processing hooks and can be customized per project. Notification templates support variable substitution (agent name, task status, error details). Notification history is tracked in session state for audit purposes. Notification delivery is asynchronous and includes retry logic for failed deliveries.
Implements asynchronous notifications with configurable delivery channels and retry logic, triggered by post-processing hooks and supporting variable substitution in templates
More flexible than hardcoded notifications because delivery channels are configurable, and more reliable than synchronous notifications because delivery is asynchronous with retry logic
hook-driven execution pipeline with pre/post-processing stages
Medium confidenceImplements a multi-stage hook system with pre-processing hooks (analyze requests, validate context), orchestration hooks (route to agents, manage delegation), persistent mode hooks (maintain state across steps), quality control hooks (validate outputs), and post-processing hooks (recovery, artifact generation). Hooks are executed in a defined sequence and can modify request/response data, trigger side effects, or abort execution. Hook configuration is stored in settings.json and can be customized per project, enabling teams to inject custom logic (logging, validation, integration) without modifying core orchestration code.
Provides a multi-stage hook system with explicit stages (pre-processing, orchestration, persistent mode, quality control, post-processing) that execute in sequence, allowing teams to inject custom logic at specific points while maintaining a clear execution model
More structured than generic middleware because hooks are stage-specific and execute in a defined order, and more flexible than hardcoded validation because hooks can be configured per-project without code changes
intelligent model routing across claude tier hierarchy (haiku/sonnet/opus)
Medium confidenceImplements CCG Tri-Model Orchestration that routes requests to Claude Haiku (fast, cost-effective), Sonnet (balanced), or Opus (high-capability) based on task complexity, token budget, and model fallback policies. Routing decisions are made by orchestration hooks that analyze request characteristics (code size, task type, required reasoning depth) and select the optimal model tier. If a request fails on a lower-tier model, the system automatically escalates to the next tier with exponential backoff. Model selection is persisted in session state to enable consistent routing across multi-step workflows.
Uses explicit task complexity analysis to route across three Claude tiers with automatic escalation and exponential backoff, persisting routing decisions in session state to ensure consistency across multi-step workflows
More cost-aware than single-model approaches because it routes simple tasks to Haiku, and more reliable than fixed-tier approaches because it automatically escalates on failure with exponential backoff
execution modes with persistent state and mode-specific workflows
Medium confidenceProvides four execution modes (Ralph Loop, Autopilot, Ultrawork, Team Orchestration) each with distinct workflow patterns, state schemas, and hook configurations. Ralph Loop implements iterative refinement with human feedback loops; Autopilot runs fully autonomous multi-step workflows; Ultrawork enables high-intensity parallel execution; Team Orchestration distributes tasks across worker agents with task claiming and communication. Each mode persists its state in a mode-specific JSON schema, enabling resumption and audit trails. Mode selection is determined by user intent or slash commands, and mode state is isolated per session.
Implements four distinct execution modes with mode-specific state schemas and hook configurations, allowing teams to choose the right workflow pattern (iterative, autonomous, parallel, or team-based) while maintaining persistent state and resumption capability
More flexible than single-mode orchestration because it supports different workflow patterns, and more structured than generic task runners because each mode has explicit state schemas and hook configurations
team orchestration with worker management and task distribution
Medium confidenceImplements a team coordination layer where a coordinator agent distributes tasks to worker agents via a task claiming mechanism. Workers communicate status updates through a message queue, and the coordinator monitors progress and reassigns tasks on failure. Task distribution uses a load-balancing strategy that considers worker availability and specialization. Worker communication is asynchronous and persisted in session state, enabling recovery if workers or the coordinator fail. Security and permissions are enforced at the task level, preventing workers from accessing unauthorized resources.
Implements a coordinator-worker pattern with asynchronous task claiming, load-balancing based on worker specialization, and task-level security enforcement, enabling large-scale parallel execution while maintaining security and recovery capability
More sophisticated than simple task queues because it includes worker specialization matching and security enforcement, and more resilient than centralized approaches because worker communication is persisted and enables recovery
skills system with invocation patterns and core skill library
Medium confidenceProvides a modular skills library (33+ skills) where each skill is a reusable workflow component with a SKILL.md definition, invocation pattern, and hook bindings. Skills are invoked through magic keywords or slash commands and can be composed into larger workflows. Core skills include autonomous execution, persistent mode management, and team coordination. Skills are registered in a skill registry and can be customized per project by overriding skill definitions or adding new skills. Skill invocation is tracked in session state, enabling audit trails and skill reuse analysis.
Implements a modular skills library with explicit SKILL.md definitions and invocation patterns, allowing skills to be composed into larger workflows while maintaining audit trails and enabling per-project customization
More structured than generic function libraries because skills have explicit definitions and invocation patterns, and more reusable than hardcoded workflows because skills can be customized and composed
magic keywords and slash commands for user interaction
Medium confidenceProvides a command interface using magic keywords (e.g., @agent-name, #skill-name) and slash commands (e.g., /autopilot, /team-mode) that trigger specific agents, skills, or execution modes. Commands are parsed by pre-processing hooks and mapped to agent delegations or mode transitions. Command context includes the current project state, selected code, and execution history. Commands can accept parameters and options, enabling fine-grained control over execution. Command history is tracked in session state for audit and replay purposes.
Implements a dual command system with magic keywords (@agent, #skill) and slash commands (/mode) that are parsed by pre-processing hooks and mapped to agent delegations or mode transitions, enabling quick access to common workflows
More efficient than menu-based interfaces because commands are faster to invoke, and more flexible than fixed shortcuts because commands can accept parameters and options
hud statusline with real-time execution monitoring and analytics
Medium confidenceProvides a heads-up display (HUD) statusline that shows real-time execution metrics including current agent, execution mode, token usage, session statistics, and progress indicators. HUD data is updated via a data pipeline that collects metrics from hooks and execution state. Analytics are tracked per session and aggregated across sessions for usage reporting. The HUD integrates with a Usage API that provides historical analytics and benchmarking data. Token tracking is granular (per-agent, per-model, per-mode) enabling cost analysis and optimization.
Implements a real-time HUD with granular token tracking (per-agent, per-model, per-mode) and a data pipeline that aggregates metrics from hooks, enabling cost analysis and performance monitoring without external tools
More detailed than basic logging because it provides real-time metrics and granular token tracking, and more integrated than external monitoring because it's built into the execution pipeline
background job management with async execution and polling
Medium confidenceEnables long-running tasks to execute asynchronously in the background while the user continues working. Background jobs are registered with a job ID and polling mechanism that checks for completion. Job state is persisted in session state, enabling recovery if the plugin crashes. Jobs can be monitored via HUD or CLI commands. Job results are stored in an outbox pattern, allowing the user to retrieve results when ready. Multiple jobs can run in parallel, with resource limits enforced to prevent system overload.
Implements async job execution with polling and outbox-based result retrieval, persisting job state in session storage to enable recovery and parallel execution without blocking the user interface
More user-friendly than blocking execution because it allows continued work while jobs run, and more resilient than in-memory job tracking because state is persisted and enables recovery
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with oh-my-claudecode, ranked by overlap. Discovered automatically through the match graph.
yicoclaw
yicoclaw - AI Agent Workspace
OpenAgentsControl
AI agent framework for plan-first development workflows with approval-based execution. Multi-language support (TypeScript, Python, Go, Rust) with automatic testing, code review, and validation built for OpenCode
LiteMultiAgent
The Library for LLM-based multi-agent applications
CopilotKit
The Frontend Stack for Agents & Generative UI. React + Angular. Makers of the AG-UI Protocol
Eliza
TypeScript framework for autonomous AI agents — multi-platform, plugins, memory, social agents.
OpenDevin
OpenDevin: Code Less, Make More
Best For
- ✓Teams building multi-agent coding workflows where task specialization matters
- ✓Developers extending oh-my-claudecode with custom agents for specific domains
- ✓Organizations needing transparent agent selection and audit trails
- ✓Teams running long-lived coding tasks that may be interrupted
- ✓Organizations requiring audit trails and execution history for compliance
- ✓Developers working on multiple projects in parallel with oh-my-claudecode
- ✓Teams generating code or documentation from agent workflows
- ✓Organizations requiring artifact tracking and versioning
Known Limitations
- ⚠Agent tier assignment is static per session — cannot dynamically promote/demote agents based on performance
- ⚠Delegation categories are predefined; adding new categories requires configuration changes
- ⚠No built-in learning from agent performance metrics to improve routing decisions
- ⚠State files are stored locally — no built-in distributed state synchronization across machines
- ⚠Recovery requires manual intervention to resume; no automatic resumption on plugin restart
- ⚠State schema changes between versions may require migration logic
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
Repository Details
Last commit: Apr 22, 2026
About
Teams-first Multi-agent orchestration for Claude Code
Categories
Alternatives to oh-my-claudecode
Are you the builder of oh-my-claudecode?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →