Sandbox
@rjmurillo/ai-agents

Marketplace plugin for Claude Code and Copilot CLI

This repo packages a coordinated agent system for software development into installable bundles. The bundles include specialized agents, lifecycle hooks, reusable skills, and workflow commands that help you move from spec to build, test, review, and ship with shared gates.

45 stars14 forksMarkdownUpdated 6d ago
Who it's for

Builders who want Claude Code or Copilot CLI to work through the same agent workflow across planning, implementation, and review.

What it delivers

You can run multi-agent development with shared review gates instead of managing every step by hand.

What it does

Multi-agent orchestration

An orchestrator routes work to specialists like analyst, architect, implementer, QA, security, and devops.

Lifecycle commands

Commands like `/spec`, `/plan`, `/build`, `/test`, `/review`, and `/ship` guide work through a development flow.

Marketplace installs

Claude Code and Copilot CLI can install the repo from a marketplace URL and load the right bundle for each tool.

Hooks and quality gates

The toolkit includes lifecycle hooks and checks that enforce session protocol, review gates, and validation steps.

Reusable skills and prompts

Shared skills, rules, prompts, templates, and agent instructions keep behavior consistent across sessions and tools.

Cross-session memory and governance

Memory, ADR steering, and review artifacts help the system remember decisions and keep behavior aligned over time.

How to get it

  1. 1Claude Code
    /plugin marketplace add rjmurillo/ai-agents
  2. 2GitHub Copilot CLI
    /plugin marketplace add rjmurillo/ai-agents
  3. 3Claude Code
    Task(subagent_type="analyst", prompt="Hello, are you available?")
  4. 4GitHub Copilot CLI
    copilot plugin list
  5. 5VS Code (Copilot Chat)
    @orchestrator Hello, are you available?
  6. 6Install Python dependencies
    # Create virtual environment (optional but recommended)
    uv venv
    source .venv/bin/activate  # On Windows: .venv\Scripts\activate
    
    # Install project with dev dependencies
    uv pip install -e ".[dev]"

README

AI Agent System

For platform teams, engineering managers, and orgs that want AI-assisted development with real governance. Session protocol, review gates, and ADR-steered agent behavior built in.

Ask DeepWiki

GitHub commits since latest release GitHub commit activity CodeRabbit Pull Request Reviews

Spec-to-Implementation Validation Pester Tests CodeQL Analysis

Fastest Start demo


Fastest Start

Each AI tool has its own native marketplace flow. This repo ships a Claude Code marketplace at .claude-plugin/marketplace.json and a Copilot CLI marketplace at .github/plugin/marketplace.json, so the same repository URL works in both CLIs. Pick yours and paste the command(s) inside the CLI session.

Claude Code. One command installs the full set; restart Claude Code when it finishes.

/install-plugin rjmurillo/ai-agents

GitHub Copilot CLI. Two steps: register the marketplace, then install the Copilot-targeted toolkit. No restart needed afterward; Copilot CLI picks agents up automatically.

/plugin marketplace add rjmurillo/ai-agents
/plugin install project-toolkit@ai-agents

A Claude install lands the full set of agents, commands, hooks, and skills. A Copilot install lands the same capabilities generated from the same canonical sources. See Verify Installation for the per-tool sanity check that reports the exact counts for your install, or More Installation Options for component-level installs (agents only, etc.).

Python requirement for project-toolkit@ai-agents hooks. The project-toolkit plugin ships PreToolUse and PostToolUse hooks that run Python. Minimum version: Python 3.10. On Windows, the Python launcher (py) must be on PATH.

Without Python (or with a version below 3.10), hooks are skipped rather than blocking: your session works normally, but hook-based guards (security gates, review checks) do not run. A warning is printed naming the cause and the install step. This is the degraded mode, not an error.

The claude-agents@ai-agents bundle (agents only, no hooks) does not need Python at all.

Install Python: https://www.python.org/downloads/ (3.10 or newer).

What You Get

ComponentClaude CodeCopilot CLI
AgentsIncludedIncluded
SkillsIncludedIncluded
Slash commandsIncludedn/a (interactive only)
Lifecycle hooksIncludedIncluded
Session protocolIncludedIncluded
Review gatesIncludedIncluded

Specialized agent roles include analyst, architect, implementer, QA, security, devops, and more. See the Agent Catalog for the full list.

Troubleshooting

  • /install-plugin not recognized: That command is Claude Code only. In Copilot CLI use the two-step flow (/plugin marketplace add rjmurillo/ai-agents then /plugin install project-toolkit@ai-agents).
  • Copilot CLI install fails with "No plugin.json found in repository": This repo is a marketplace, not a single plugin. Run /plugin marketplace add rjmurillo/ai-agents first, then /plugin install project-toolkit@ai-agents.
  • /plugin not recognized in Copilot CLI: Update Copilot CLI to a recent stable release; plugin support is required. Run copilot --version in a regular terminal to check.
  • Denied by preToolUse hook from "project-toolkit@ai-agents": On plugin versions after this fix, this cannot happen: missing or too-old Python causes hooks to skip (exit 0) with a warning rather than deny. If you see this message, your installed plugin predates the fix. Upgrade: /plugin install project-toolkit@ai-agents (reinstalls at the latest version). If the denial persists, install or upgrade Python to 3.10+ and ensure it is on PATH (py -3 on Windows, python3 on Linux/macOS).
  • Plugin install fails or hangs: Confirm your AI tool is on a recent stable release that supports the install command, then retry. Check the version per tool: in Claude Code use /version or the title bar; for Copilot CLI run copilot --version in a regular terminal.
  • Agents not responding after install: Restart Claude Code (Copilot CLI does not need a restart). Then verify with Task(subagent_type="analyst", prompt="Hello, are you available?") in Claude Code, copilot plugin list in Copilot CLI to confirm project-toolkit@ai-agents is installed, or @orchestrator Hello, are you available? in VS Code Copilot Chat.

Where to Start

I want to...Go to
Use the agents right nowFastest Start (above)
Understand how it worksKey Concepts
Contribute or modify agentsDeveloper Setup
See all available agentsAgent Catalog
Full installation optionsAlternative: Full Installation

Table of Contents


Purpose and Scope

What is AI Agents?

AI Agents is a coordinated multi-agent system for software development. It provides specialized AI agents that handle different phases of the development lifecycle, from research and planning through implementation and quality assurance.

The orchestrator is the hub of operations. Its logic spans the full range, from taking a "vibe" or a "shower thought" and building out a functional spec with acceptance criteria and user stories, to taking a well-defined idea as input and executing on it. Both bundles ship a roster of agents that cover the roles of software development, from vision and strategy, to architecture, implementation, and verification. Each role looks at something specific, like the critic that just looks to poke holes in other agents' (or your own) work, or DevOps that's concerned about how you deploy and operate the thing you just built.

The agents themselves use the platform specific handoffs to invoke subagents, keeping the orchestrator context clean. A great example of this is orchestrator facilitating creating and debating an Architectural Decision Record from research and drafting, to discussion, iterating on the issues, tie breaking when agents don't agree. And then extracting persistent knowledge to steer future agents to adhere. Artifacts are stored in your memory system if you have one enabled, and Markdown files for easy reference to both agents and humans.

Core Capabilities

  • Specialized agents for different development phases (analysis, architecture, implementation, QA, etc.)
  • Explicit handoff protocols between agents with clear accountability
  • Multi-Agent Impact Analysis Framework for comprehensive planning
  • Cross-session memory with citation verification, graph traversal, and health reporting via Serena + Forgetful
  • Self-improvement system with skill tracking and retrospectives
  • Quality gates with pre-PR validation, session protocol enforcement, and automated CI checks
  • Reusable skills for common development workflows (git, PR management, testing, linting)
  • One-step plugin install through Claude Code's /install-plugin or Copilot CLI's /plugin marketplace add flow
  • CI/CD safeguards with CodeQL, deterministic validators, and spec validation

Key Concepts

TermDefinition
AgentA specialized AI persona with a defined role (analyst, implementer, security, etc.)
OrchestratorThe coordinating agent that routes tasks to specialists and synthesizes results
HandoffExplicit transfer of context and control between agents with clear accountability
SkillA reusable workflow component for common tasks (git, PR, testing, linting, and more)
MemoryCross-session context persistence via Serena + Forgetful for knowledge retention
ADRArchitectural Decision Record, structured documents capturing design decisions
Quality GateValidation checkpoint (critic review, QA pass, security scan) before proceeding

Alternative: Full Installation

The Fastest Start above is the recommended path. Use the commands below when you want component-level control (agents only, no skills, etc.).

See CONTRIBUTING.md for development setup including Python 3.14.x, pre-commit hooks, and test dependencies. Day-to-day use of the claude-agents@ai-agents bundle (agents only) does not need Python. The project-toolkit@ai-agents plugin requires Python 3.10+ for its hooks; without it, hooks are skipped with a warning (see Fastest Start).

Quick Install (CLI marketplace)

The Fastest Start commands install the full toolkit. For component-level installs, register the marketplace once in the CLI you are using and then install just the parts you want. Claude Code resolves that repository to .claude-plugin/marketplace.json; Copilot CLI resolves it to .github/plugin/marketplace.json. In Claude Code you can also use /install-plugin rjmurillo/ai-agents as a one-step shortcut that registers the marketplace and prompts for plugin selection.

Claude Code:

/plugin marketplace add rjmurillo/ai-agents
ComponentInstall CommandWhat You Get
Claude agents only/plugin install claude-agents@ai-agentsAgent definitions from src/claude/ (no skills, commands, or hooks)
Project toolkit/plugin install project-toolkit@ai-agentsAgents, slash commands, hooks, and reusable skills from .claude/

GitHub Copilot CLI:

/plugin marketplace add rjmurillo/ai-agents
ComponentInstall CommandWhat You Get
Copilot full toolkit/plugin install project-toolkit@ai-agentsAgents, hooks, and skills from src/copilot-cli/ (Copilot CLI)

Claude exposes both an agents-only bundle (claude-agents, from src/claude/) and the full toolkit (project-toolkit, from ./.claude); the two draw from different curated sets (src/claude/ versus .claude/agents/), kept in sync where they overlap. Copilot CLI installs ship a single project-toolkit plugin from src/copilot-cli/ because that directory's plugin.json declares one identity; an agents-only Copilot install would silently register as project-toolkit and is therefore not advertised (issue #1840).

Verify Installation

After installing, confirm the agents are loaded.

Claude Code:

Task(subagent_type="analyst", prompt="Hello, are you available?")

GitHub Copilot CLI:

copilot plugin list

The output should include project-toolkit@ai-agents (or whichever component you installed). To exercise an agent end-to-end, run copilot -p "analyst: respond with 'available'".

VS Code (Copilot Chat):

@orchestrator Hello, are you available?

Supported Platforms

PlatformAgent LocationUsage
Claude Code CLIsrc/claude/Use Task(subagent_type="...")
GitHub Copilot CLIsrc/copilot-cli/Use --agent flag, /agent to select, or call out agent by name
VS Code / GitHub Copilot.github/agents/Use @agent syntax in Copilot Chat

See docs/installation.md for complete installation documentation, including platform-specific paths, troubleshooting, and post-installation steps.


Quick Start

After installing the agents with the method of your choice, you can either select one of them explicitly, ask your LLM to use the agent by name, or even prefix your input with the name of the agent.

Examples

Here are prompts you can copy and paste. Prefix with the agent name to route directly, or use the orchestrator for multi-step workflows.

Simple Scenarios

Review code quality:

critic: review @src/auth/login-handler.ts for coupling, error handling gaps, and test coverage. Deliver an APPROVE or REJECT verdict with specific line references.

Shows the critic agent doing a focused code review.

Investigate a bug:

analyst: the /api/users endpoint returns 500 when the email contains a plus sign. Trace the request through the handler, identify the root cause, and propose a fix.

Shows the analyst doing root cause analysis on a specific bug.

Scan for vulnerabilities:

security: scan @src/api/ for OWASP Top 10 vulnerabilities. Focus on injection, broken auth, and data exposure. Output a threat matrix with CWE identifiers and severity ratings.

Shows the security agent doing a targeted scan.

Write tests for existing code:

qa: write pytest tests for @scripts/validate_session_json.py. Cover happy path, malformed input, missing required fields, and boundary conditions. Target 95% line coverage.

Shows the QA agent generating tests with specific coverage targets.

Document a module:

explainer: document @scripts/memory_enhancement/ as a user guide. Include purpose, installation, CLI usage with examples, and architecture overview. Write for developers who have never seen this codebase.

Shows the explainer creating developer documentation.

Plan a feature:

milestone-planner: break down "add webhook retry with exponential backoff" into milestones. Include acceptance criteria, estimated complexity, dependencies, and a suggested implementation order.

Shows the planner creating structured work packages.

Advanced Scenarios

End-to-end feature pipeline:

orchestrator: build the webhook retry system described in @.agents/specs/webhook-retry.md. Start with analyst to verify requirements. Then milestone-planner to create work packages. Run critic to stress-test the plan. Then implementer to write code and tests. Run qa to verify coverage meets acceptance criteria. Run security to scan for injection and replay risks. Fix all critical findings recursively until critic, qa, and security pass. Open a PR.

The orchestrator chains seven agents into a full development pipeline with quality gates at each stage.

Architecture review:

orchestrator: conduct a full review of @docs/architecture/service-mesh.md. Route through analyst for data accuracy, architect for structural decisions, security for threat modeling with CWE/CVSS ratings, critic to stress-test for gaps, and independent-thinker to challenge assumptions. Synthesize all findings into a single summary highlighting consensus and disagreements.

Five agents examine the same artifact through different lenses. The orchestrator synthesizes their independent assessments.

Debug, fix, and ship:

orchestrator: the payment webhook handler drops events when Redis is unavailable. Have analyst investigate the failure pattern in the logs. Then architect propose a resilient design with fallback queuing. Then implementer build the fix with tests. Run qa and security to validate. Open a PR when all checks pass.

Turns an incident report into a shipped fix through structured agent collaboration.

Technology migration evaluation:

orchestrator: we are considering migrating from REST to gRPC for internal services. Route through analyst to research benchmarks and ecosystem maturity. Then architect to map impact on existing contracts. Then security to threat-model the new transport layer. Then devops to estimate CI/CD changes. Then independent-thinker to argue the strongest case for staying with REST. Then high-level-advisor to deliver a GO or NO-GO verdict with conditions.

Six agents build a decision package. Each contributes a different dimension of analysis. The advisor synthesizes everything into an actionable verdict.

Strategic prioritization:

orchestrator: we have three candidate features for next quarter: plugin marketplace, offline mode, and admin audit logging. For each, run analyst for effort and risk, roadmap to score with RICE and KANO, security for compliance implications, and devops for operational burden. Then independent-thinker to argue which one we will most regret skipping. Then high-level-advisor to rank all three with a clear recommendation.

The orchestrator runs the same evaluation pipeline across all candidates, producing comparable data for a defensible quarterly plan.


Lifecycle Commands

Six slash commands that map to the development lifecycle. Each one activates the right agents and quality gates automatically.

  DEFINE          PLAN           BUILD          VERIFY         REVIEW          SHIP
 ┌──────┐      ┌──────┐      ┌──────┐      ┌──────┐      ┌──────┐      ┌──────┐
 │ Idea │ ───> │ Spec │ ───> │ Code │ ───> │ Test │ ───> │  QA  │ ───> │  Go  │
 │Refine│      │  PRD │      │ Impl │      │Debug │      │ Gate │      │ Live │
 └──────┘      └──────┘      └──────┘      └──────┘      └──────┘      └──────┘
  /spec          /plan          /build        /test         /review       /ship
What you're doingCommandWhat happens
Define what to build/specCVA analysis, testable acceptance criteria, critic review
Plan how to build it/planMilestones, atomic tasks (S/M/L), dependency graph, risk register
Build incrementally/buildTDD slices, atomic commits, code quality scoring
Prove it works/test6 quality gates (functional, non-functional, security, DevOps, DX, observability)
Review before merge/review5-axis review (architecture, security, quality, tests, standards)
Ship to production/shipPre-flight checks, PR creation, ship report

Each command chains to the next. Output from /spec feeds into /plan, which feeds into /build, and so on. You can also jump in at any point for smaller tasks.

Standard feature:

/spec Add OAuth2 login flow with JWT tokens
/plan
/build
/test
/review
/ship

Quick fix:

/build Fix null reference in UserService.GetById
/test
/ship

See docs/workflow-commands.md for the full command reference.


System Architecture

How Agents Work Together

The orchestrator coordinates specialized agents through explicit handoffs. Each agent focuses on its domain, and the orchestrator synthesizes results.

flowchart LR
    User([User]) --> Orchestrator
    
    subgraph Planning
        Orchestrator --> Analyst
        Orchestrator --> Architect
        Orchestrator --> Planner[Milestone Planner]
    end
    
    subgraph Implementation
        Orchestrator --> Implementer
        Implementer --> Code[Code + Tests]
    end
    
    subgraph Quality
        Orchestrator --> QA
        Orchestrator --> Security
        Orchestrator --> Critic
    end
    
    Code --> QA
    QA --> |pass| Done([Done])
    QA --> |fail| Implementer
    Critic --> |approve| Done
    Critic --> |reject| Implementer

Typical flow:

  1. User describes a task to the Orchestrator
  2. Orchestrator routes to Analyst for research and feasibility
  3. Architect designs the solution; Milestone Planner breaks it into work packages
  4. Implementer writes code and tests
  5. QA and Security validate; Critic stress-tests the approach
  6. On approval, work is complete; on failure, it loops back for fixes

Agent Catalog

The Copilot CLI bundle adds the backlog-generator agent; both bundles include all the other agents. spec-generator is now a skill (issue #2001), available in both bundles. Both bundles share the same templates.

AgentPurposeOutputBundle
orchestratorTask coordination and routingDelegated results from specialistsboth
analystResearch, feasibility analysis, trade-off evaluationQuantitative findings with evidenceboth
architectSystem design evaluation, ADRs, pattern enforcementRated assessments (Strong/Adequate/Needs-Work)both
milestone-plannerMilestones and work packagesImplementation plans with acceptance criteriaboth
implementerProduction code and testsCode, tests, commitsboth
criticPlan stress-testing, gap identificationVerdicts: APPROVE / APPROVE WITH CONDITIONS / REJECTboth
qaTest strategy and verificationTest reports, coverage analysisboth
securityThreat modeling, vulnerability assessmentThreat matrices with CWE/CVSS ratingsboth
devopsCI/CD pipelines, operational planningInfrastructure configs, maintenance estimatesboth
roadmapStrategic prioritization, RICE/KANO analysisPriority stacks, cost-benefit analysisboth
retrospectiveLearning extractionActionable insights, skill updatesboth
skillbookSkill managementAtomic strategy updatesboth
explainerPRDs and documentationSpecs, user guidesboth
task-decomposerAtomic task breakdownEstimable work items with done criteriaboth
high-level-advisorStrategic decisions, unblockingVerdicts: GO / CONDITIONAL GO / NO-GOboth
independent-thinkerChallenge assumptions, devil's advocateCounter-arguments with alternativesboth
pr-comment-responderPR review handlingTriaged responses, resolution trackingboth
debugDebugging assistance, root cause analysisDiagnostic findings with resolution stepsboth
janitorCode and documentation cleanupRefactoring and cleanup suggestionsboth
issue-feature-reviewFeature-request triage on GitHub issuesConstructive verdict with next stepsboth
merge-resolverResolve git/PR merge conflictsPattern-based resolution planboth
negotiationOffer analysis and counter-proposalsValue-gap analysis with RADAR protocolboth
backlog-generatorProactive task discovery when idleSized tasks from project state analysisCopilot CLI only

See AGENTS.md for detailed agent documentation.

Directory Structure

ai-agents/
├── src/
│   ├── vs-code-agents/      # VS Code / GitHub Copilot agents
│   ├── copilot-cli/         # GitHub Copilot CLI agents
│   └── claude/              # Claude Code CLI agents
├── templates/               # Agent template system
├── scripts/                 # Validation and utility scripts
├── docs/                    # Documentation
├── .agents/                 # Agent artifacts (ADRs, plans, etc.)
├── .claude-plugin/          # Claude Code marketplace manifest
├── .github/plugin/          # GitHub Copilot CLI marketplace manifest
├── .github/copilot-instructions.md  # GitHub Copilot instructions
├── CLAUDE.md                        # Claude Code instructions
└── AGENTS.md                        # Detailed usage guide

Additional Troubleshooting

Agent not responding or not found
  • Restart your editor after installation to reload agent definitions
  • Verify installation with the Verify Installation commands
  • Check that you're using the correct syntax for your platform (Task() for Claude, @agent for VS Code)
/install-plugin command not recognized
  • /install-plugin is a Claude Code CLI shortcut. In Copilot CLI use the explicit two-step flow:
    1. /plugin marketplace add rjmurillo/ai-agents
    2. /plugin install project-toolkit@ai-agents
  • Ensure you're running inside Claude Code CLI or Copilot CLI, not a regular shell. The command is built into the AI tool.
Python version errors when running tests
  • This project requires Python 3.14.x for development (running tests, linters, build scripts). The project-toolkit@ai-agents plugin requires Python 3.10+ at runtime for its hooks. Without Python 3.10+, hooks degrade (skip with a warning) rather than block. The claude-agents@ai-agents bundle (agents only, no hooks) does not need Python.
  • The .python-version file pins the exact version (currently 3.14.4)
  • See CONTRIBUTING.md for detailed setup
Orchestrator not routing to agents correctly
  • Be explicit: prefix prompts with the agent name (e.g., analyst: ...)
  • Check that agents were installed for your specific platform
  • Review Quick Start examples for correct syntax

Contributing

See CONTRIBUTING.md for detailed contribution guidelines.

Developer Setup

If you're contributing code or running tests locally:

  1. Fork and clone the repository

  2. Install Python dependencies:

    # Create virtual environment (optional but recommended)
    uv venv
    source .venv/bin/activate  # On Windows: .venv\Scripts\activate
    
    # Install project with dev dependencies
    uv pip install -e ".[dev]"
    
  3. Set up environment variables (copy .env.example to .env and fill in your API keys)

  4. Install Git hooks: uv run --frozen lefthook install --reset-hooks-path, then verify with uv run --frozen lefthook check-install

  5. Run tests to verify setup:

    python -m pytest tests/ -v
    
  6. Make changes following the guidelines

  7. Submit a pull request

Agent Development

This project uses a template-based generation system. To modify agents:

  1. Edit templates in templates/agents/*.shared.md
  2. Run uv run python build/generate_agents.py to regenerate
  3. Commit both template and generated files

Do not edit files in src/vs-code-agents/ or src/copilot-cli/ directly. See CONTRIBUTING.md for details.


Documentation

DocumentDescription
docs/getting-started.mdStep-by-step setup guide
docs/agent-catalog.mdAll agents with capabilities and examples
docs/skill-reference.mdAll skills with usage descriptions
docs/architecture.mdPlugin structure, template system, design decisions
docs/customization.mdHow to extend and customize agents, skills, and hooks
docs/installation.mdComplete installation guide
docs/project-structure.mdAnnotated repo layout (what to edit vs generated)
AGENTS.mdComprehensive usage guide
CONTRIBUTING.mdContribution guidelines and agent development
CLAUDE.mdClaude Code integration
copilot-instructions.mdGitHub Copilot integration
docs/workflow-commands.mdLifecycle commands (/spec, /plan, /build, /test, /review, /ship)
docs/when-to-use.mdFitness guide: which lifecycle phases fit which task shapes, and when the full lifecycle is overkill
docs/ideation-workflow.mdIdeation workflow documentation
docs/markdown-linting.mdMarkdown standards

License

MIT

Files in the repo

Repository payload48 top-level entries
  • .agents
  • .baseline
  • .claude
  • .claude-mem
  • .claude-plugin
  • .codeql
  • .config
  • .diffray
  • .factory
  • .gemini
  • .github
  • .serena
  • .vscode
  • build
  • docs
  • evals
  • packages
  • scripts
  • src
  • templates
  • tests
  • .actrc
  • .coderabbit.yaml
  • .env.example
  • .gitattributes
  • .gitignore
  • .markdownlint-cli2.yaml
  • .mcp.json
  • .PSScriptAnalyzerSettings.psd1
  • .python-version
  • .qualityrc.json
  • .semgrepconfig.yml
  • .worktreeinclude
  • .yamllint.yml
  • AGENTS.md
  • CLAUDE.md
  • conftest.py
  • CONTRIBUTING.md
  • lefthook.yml
  • LICENSE
  • memory_enhancement
  • pr_body.md
  • pyproject.toml
  • README.md
  • RELEASING.md
  • renovate.json
  • THIRD-PARTY-NOTICES.TXT
  • uv.lock

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More plugins

Makes your AI agent think like the laziest senior dev in the room. The best code is the code you never wrote.

138k
1 add

Graphs that teach > graphs that impress. Turn any code into an interactive knowledge graph you can explore, search, and ask questions about. Works with Claude Code, Codex, Cursor, Copilot, Gemini CLI, and more.

82k
code-yeongyu/
oh-my-openagent

OmO: Just type "mass ulw" keyword with your prompt. Now you are the master of graph engineering.

69k

Persistent Context Across Sessions for Every Agent – Captures everything your agent does during sessions, compresses it with AI, and injects relevant context back into future sessions. Works with Claude Code, OpenClaw, Codex, Gemini, Hermes, Copilot, OpenCode + More

94k

Opinionated Oxlint rules for rejecting low-evidence TypeScript and JavaScript patterns

4.3k