everything-claude-code
MCP ServerFreeThe agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Capabilities18 decomposed
multi-agent orchestration with delegation patterns
Medium confidenceImplements a hierarchical agent system where multiple specialized agents (Observer, Skill Creator, Evaluator, etc.) coordinate through a central harness using pre/post-tool-use hooks and session-based context passing. Agents delegate subtasks via explicit hand-off patterns defined in agent.yaml, with state synchronized through SQLite-backed session persistence and strategic context window compaction to prevent token overflow during multi-step workflows.
Uses a hook-based pre/post-tool-use interception system combined with SQLite session persistence and strategic context compaction to enable stateful multi-agent coordination without requiring external orchestration platforms. The Observer Agent pattern detects execution patterns and feeds them into the Continuous Learning v2 system for autonomous skill evolution.
Unlike LangChain's sequential agent chains or AutoGen's message-passing model, ECC integrates directly into IDE workflows with persistent session state and automatic context optimization, enabling tighter coupling with Claude's native capabilities.
continuous learning system with instinct evolution
Medium confidenceImplements a closed-loop learning pipeline (Continuous Learning v2 Architecture) where an Observer Agent monitors code execution patterns, detects recurring problems, and automatically generates new skills via the Skill Creator. Instincts are structured as pattern-matching rules stored in SQLite, evolved through an evaluation system that tracks skill health metrics, and scoped to individual projects to prevent cross-project interference. The evolution pipeline includes observation → pattern detection → skill generation → evaluation → integration into the active skill set.
Combines Observer Agent pattern detection with automatic Skill Creator integration and SQLite-backed instinct persistence, enabling autonomous skill generation without manual prompt engineering. Project-scoped learning prevents skill pollution across different codebases, and the evaluation system provides feedback loops for skill health tracking.
Unlike static prompt libraries or manual skill curation, ECC's continuous learning automatically discovers and evolves skills based on actual execution patterns, with project isolation preventing cross-project interference that plagues global knowledge bases.
checkpoint and verification workflow with rollback capability
Medium confidenceProvides a Checkpoint & Verification Workflow that creates savepoints of project state at key milestones, verifies code quality and functionality at each checkpoint, and enables rollback to previous checkpoints if verification fails. Checkpoints are stored in session state with full context snapshots, and verification uses the Plankton Code Quality System and Evaluation System to assess quality. The workflow integrates with version control to track checkpoint history.
Creates savepoints of project state with integrated verification and rollback capability, enabling safe exploration of changes with ability to revert to known-good states. Checkpoints are tracked in version control for audit trails.
Unlike manual version control commits or external backup systems, ECC's checkpoint workflow integrates verification directly into the savepoint process, ensuring checkpoints represent verified, quality-assured states.
autonomous loop patterns with self-directed task execution
Medium confidenceImplements Autonomous Loop Patterns that enable agents to self-direct task execution without human intervention, using the planning-reasoning system to decompose tasks, execute them through agent delegation, and verify results through evaluation. Loops can be configured with termination conditions (max iterations, success criteria, token budget) and include safeguards to prevent infinite loops. The Observer Agent monitors loop execution and feeds patterns into continuous learning.
Enables self-directed agent execution with configurable termination conditions and integrated safety guardrails, using the planning-reasoning system to decompose tasks and agent delegation to execute subtasks. Observer Agent monitors execution patterns for continuous learning.
Unlike manual step-by-step agent control or external orchestration platforms, ECC's autonomous loops integrate task decomposition, execution, and verification into a self-contained workflow with built-in safeguards.
token optimization and context window management
Medium confidenceProvides Token Optimization Strategies that monitor token usage across agent execution, identify high-cost operations, and apply optimization techniques (context compaction, selective context inclusion, prompt compression) to reduce token consumption. Context Window Management tracks available tokens per platform and automatically adjusts context inclusion strategies to stay within limits. The system includes token budgeting per task and alerts when approaching limits.
Combines token usage monitoring with heuristic-based optimization strategies (context compaction, selective inclusion, prompt compression) and per-task budgeting to keep token consumption within limits while preserving essential context.
Unlike static context window management or post-hoc cost analysis, ECC's token optimization actively monitors and optimizes token usage during execution, applying multiple strategies to stay within budgets.
package manager system for skill and rule distribution
Medium confidenceImplements a Package Manager System that enables installation, versioning, and distribution of skills, rules, and commands as packages. Packages are defined in manifest files (install-modules.json) with dependency specifications, and the package manager handles dependency resolution, conflict detection, and selective installation. Packages can be installed from local directories, Git repositories, or package registries, and the system tracks installed versions for reproducibility.
Provides a package manager for skills and rules with dependency resolution, conflict detection, and support for multiple package sources (Git, local, registry). Packages are versioned for reproducibility and tracked for audit trails.
Unlike manual skill copying or monolithic skill repositories, ECC's package manager enables modular skill distribution with dependency management and version control.
project detection and context inference system
Medium confidenceAutomatically detects project type, framework, and structure by analyzing codebase patterns, package manifests, and configuration files. Infers project context (language, framework, testing patterns, coding standards) and uses this to select appropriate skills, rules, and commands. The system maintains a project detection cache to avoid repeated analysis and integrates with the CLAUDE.md context file for explicit project metadata.
Automatically detects project type and infers context by analyzing codebase patterns and configuration files, enabling zero-configuration setup where Claude adapts to project structure without manual specification.
Unlike manual project configuration or static project templates, ECC's project detection automatically adapts to diverse project structures and infers context from codebase patterns.
plankton code quality system with structural analysis
Medium confidenceIntegrates the Plankton Code Quality System for structural analysis of generated code using language-specific parsers (tree-sitter for 40+ languages) instead of regex-based matching. Provides metrics for code complexity, maintainability, test coverage, and style violations. Plankton integrates with the Evaluation System to track code quality trends and with the Skill Creator to generate quality-focused skills.
Uses tree-sitter AST parsing for 40+ languages to provide structurally-aware code quality analysis instead of regex-based matching, enabling accurate metrics for complexity, maintainability, and style violations.
More accurate than regex-based linters because it uses language-specific AST parsing to understand code structure, enabling detection of complex quality issues that regex patterns cannot capture.
tmux worktree orchestration for parallel development
Medium confidenceProvides Tmux Worktree Orchestration that enables parallel development across multiple Git worktrees using tmux sessions for isolation. Agents can spawn parallel tasks in separate worktrees, coordinate changes across worktrees, and merge results back to main branch. The system manages worktree lifecycle (creation, cleanup) and provides coordination primitives for synchronizing parallel execution.
Orchestrates parallel development across Git worktrees using tmux sessions for isolation, enabling agents to work on multiple features in parallel with coordination primitives for merging results.
Unlike sequential development or external CI/CD systems, ECC's tmux worktree orchestration enables local parallel development with tight integration into the agent execution pipeline.
jira integration for task management and tracking
Medium confidenceProvides JIRA Integration that enables agents to read tasks from JIRA, update task status as work progresses, and link code changes to JIRA issues. The integration includes a JIRA command for manual task management and automatic status updates based on agent execution results. Session state tracks JIRA issue context for multi-session continuity.
Integrates JIRA task management directly into agent execution, enabling automatic task status updates and linking code changes to JIRA issues with session-scoped context persistence.
Unlike manual JIRA updates or external CI/CD integrations, ECC's JIRA integration is tightly coupled to agent execution, enabling automatic status updates and context preservation across sessions.
hook-based tool-use interception and transformation
Medium confidenceProvides a middleware layer for intercepting and transforming tool calls through PreToolUse and PostToolUse hooks that execute before/after any MCP tool invocation. Hooks are registered globally or per-session, support async execution, can modify tool arguments or results, and integrate with the hook testing infrastructure for validation. The hook lifecycle is tied to session events (session start, context refresh, tool execution) enabling fine-grained control over agent behavior without modifying core agent logic.
Implements a pre/post-tool-use hook system that integrates directly into the MCP execution pipeline with session-scoped lifecycle management and async support, enabling middleware-style transformations without requiring agent code modifications. Hook testing infrastructure provides validation patterns for complex hook logic.
More flexible than static tool schemas or prompt-based guardrails because hooks execute in the execution path with full access to tool context, enabling dynamic validation and transformation that adapts to runtime conditions.
session persistence and strategic context compaction
Medium confidenceManages agent state across IDE sessions using SQLite-backed session files with structured JSON payloads, session aliases for easy recall, and a strategic compaction algorithm that summarizes old context to fit within token budgets. Sessions track conversation history, tool execution logs, agent decisions, and learned instincts. The Session Manager API provides CRUD operations, and session adapters enable format conversion for different platforms (Claude Code, Cursor, OpenCode). Compaction uses heuristics to identify low-value context (verbose logs, redundant explanations) and replace with summaries.
Combines SQLite persistence with strategic context compaction heuristics that identify and summarize low-value context (verbose logs, redundant explanations) while preserving essential project knowledge. Session adapters enable format conversion across different IDE platforms, and session aliases provide human-friendly session recall without exposing database IDs.
Unlike simple conversation history export or cloud-based session storage, ECC's local SQLite persistence with strategic compaction enables token-efficient long-running sessions without external dependencies or privacy concerns.
skill system with modular capability definitions
Medium confidenceDefines reusable agent capabilities as discrete skill modules (SKILL.md format) that encapsulate domain knowledge, code patterns, testing strategies, and verification procedures. Skills are installed via a package manager system, can be enabled/disabled per project, and include metadata for skill health tracking (success rate, token cost, latency). The Skill Creator Agent generates new skills from observed patterns, and the Evaluation System tracks skill effectiveness. Skills integrate with the continuous learning pipeline to evolve based on execution feedback.
Encapsulates domain knowledge as discrete, versioned skill modules with integrated health tracking and automatic evolution through the Continuous Learning v2 system. Skills are installed via a package manager, enabling team-wide sharing and reuse without requiring prompt engineering.
Unlike prompt-based knowledge injection or monolithic system prompts, ECC's skill system provides modular, measurable, and evolvable capabilities that can be independently tested, versioned, and shared across projects.
code review and security workflow automation
Medium confidenceProvides a specialized workflow (Code Review & Security Workflow) that combines multiple agents and skills to perform automated code review, security scanning, and quality verification. Integrates with the Plankton Code Quality System for structural analysis, uses PreToolUse hooks for security guardrails (preventing dangerous operations), and leverages the Evaluation System to track review effectiveness. The workflow can be triggered manually or as part of autonomous loops, with results persisted to session state for audit trails.
Combines multi-agent orchestration with PreToolUse security hooks and Plankton structural analysis to provide comprehensive code review that integrates security guardrails directly into the execution pipeline. Review decisions are persisted to session state for audit trails and continuous improvement through the evaluation system.
More comprehensive than static linters or external code review services because it integrates security guardrails into the agent execution path, enabling dynamic validation that adapts to project-specific policies and learns from review effectiveness metrics.
cross-platform ide integration with platform-specific skills
Medium confidenceProvides unified agent harness across multiple IDE platforms (Claude Code, Cursor, OpenCode, Codex CLI, Kiro IDE) through a platform abstraction layer that normalizes MCP server configuration, tool availability, and context window constraints. Platform-specific skills adapt to IDE capabilities (e.g., Swift 6.2 Concurrency for Kiro, FoundationModels for on-device LLM support). Session adapters enable session portability across platforms, and platform feature comparison documentation guides skill selection per platform.
Implements a platform abstraction layer that normalizes MCP configuration and tool availability across 5+ IDE platforms while providing platform-specific skill variants that leverage native capabilities. Session adapters enable cross-platform portability without losing context.
Unlike IDE-specific agent configurations or manual skill curation per platform, ECC's platform abstraction enables single configuration with automatic platform-specific optimizations and session portability across IDEs.
eval-driven development workflow with automated testing
Medium confidenceImplements an Eval-Driven Development Workflow that uses the Evaluation System to define success metrics, automatically generate test cases, and measure agent performance against those metrics. The workflow integrates with the Skill Creator to generate new skills based on eval results, and uses the Plankton Code Quality System for structural verification. Evals are defined as YAML configurations with input/output specifications, and results are persisted to session state for tracking improvement over time.
Integrates eval definition, automated test case generation, and skill evolution into a closed-loop workflow that measures agent performance against quantitative metrics and automatically improves skills based on eval results. Evals are first-class citizens in the development process, not afterthoughts.
Unlike manual testing or post-hoc evaluation, ECC's eval-driven workflow makes metrics central to development, enabling continuous measurement and automatic skill evolution based on quantitative feedback.
research-first development workflow with search-first patterns
Medium confidenceProvides a Search-First Workflow that prioritizes information retrieval and analysis before code generation, using iterative retrieval patterns to gather context from documentation, codebase, and external sources. The workflow integrates with memory systems (RAG, knowledge bases) to retrieve relevant patterns before generating code, reducing hallucinations and improving code quality. Iterative retrieval allows Claude to refine searches based on initial results, enabling multi-step research workflows.
Prioritizes information retrieval and iterative refinement before code generation, using multi-step search workflows to gather context from codebase and documentation. Iterative retrieval allows Claude to refine searches based on initial results, enabling sophisticated research patterns.
Unlike code-first approaches that generate immediately, ECC's search-first workflow reduces hallucinations by grounding code generation in retrieved patterns and documentation, improving solution quality at the cost of initial latency.
test-driven development workflow with automated test generation
Medium confidenceImplements a Test-Driven Development Workflow that generates test cases before code implementation, uses the Evaluation System to verify test quality, and integrates with the Plankton Code Quality System for structural validation. Tests are generated based on requirements and project patterns, and the workflow ensures code passes tests before considering tasks complete. Test generation leverages learned patterns from the continuous learning system.
Generates tests before implementation using project patterns and requirements, then verifies code against generated tests before acceptance. Test generation leverages learned patterns from continuous learning, improving test quality over time.
Unlike manual test writing or post-hoc test generation, ECC's TDD workflow makes testing central to development, generating tests first and using them to drive implementation quality.
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 everything-claude-code, ranked by overlap. Discovered automatically through the match graph.
yicoclaw
yicoclaw - AI Agent Workspace
Agents
Library/framework for building language agents
MobileAgent
Mobile-Agent: The Powerful GUI Agent Family
awesome-openclaw-usecases-zh
🇨🇳 OpenClaw中文用例大全 | 49个真实场景 | 国内特色 + 海外案例的国内适配 | 自动化办公·内容创作·运维·AI助理·知识管理 | 新手友好 | Chinese guide for OpenClaw AI agent use cases
pro-workflow
Claude Code learns from your corrections: self-correcting memory that compounds over 50+ sessions. Context engineering, parallel worktrees, agent teams, and 17 battle-tested skills.
awesome-openclaw-examples
Awesome OpenClaw examples: 100 tested, real-world OpenClaw usecases built with ClawHub skills, runnable scripts, prompts, KPIs, and sample outputs.
Best For
- ✓teams building autonomous development workflows with Claude Code or Cursor
- ✓developers needing persistent multi-step agent coordination across sessions
- ✓organizations implementing research-first development with continuous learning loops
- ✓long-running projects where development patterns stabilize over time
- ✓teams wanting to build institutional knowledge into their AI agent harness
- ✓developers using research-first development workflows with eval-driven iteration
- ✓teams working on critical systems where rollback capability is essential
- ✓developers wanting to verify quality at key milestones before committing changes
Known Limitations
- ⚠Hook-based coordination adds latency per agent handoff (~50-200ms per PreToolUse/PostToolUse cycle)
- ⚠Session compaction strategy requires manual tuning of context window thresholds per project
- ⚠Agent delegation patterns are tightly coupled to MCP server availability — offline mode degrades gracefully but loses real-time coordination
- ⚠Skill evolution requires minimum observation window (typically 5-10 pattern occurrences) before generating new skills, causing initial cold-start delay
- ⚠Pattern detection relies on heuristic matching — complex domain-specific patterns may require manual skill definition
- ⚠Project-scoped learning increases storage overhead (~5-50MB per project depending on codebase size and session history)
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 21, 2026
About
The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Categories
Alternatives to everything-claude-code
Are you the builder of everything-claude-code?
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 →