By littlelingo
Agentic orchestration framework for Claude Code. Agent Teams, subagents, progressive-disclosure skills, hooks, checkpoints, knowledge layer, and metrics.
Audit the project against the plugin's prescribed standards and refactor the project to conform. Run after `/init` to identify gaps, then apply fixes per dimension.
Mark a feature as CANCELLED, capture learnings from partial work, and optionally clean up branches and checkpoints.
Create, list, rollback, and clean hybrid checkpoints (git tag + .context/ snapshot).
Create a new skill with proper structure, scoped content, and a quality review pass. Adds the skill to the framework's skill table and updates the skill profile.
Something is broken. Uses parallel hypothesis testing via Agent Team for complex bugs, or single `debugger` subagent for simple ones.
Systematically diagnoses and resolves bugs. Uses diagnostic reasoning, log analysis, hypothesis testing, and bisection. Use when something is broken and needs investigation.
Executes PRP steps following the project's testing strategy. Works sequentially, validates after each step.
Executes MCP tool operations in isolated context and returns compressed summaries. Use for browser automation, database queries, documentation lookups, and other MCP-heavy tasks.
Creates structured PRPs (Product Requirements Prompts) from research notes. Produces actionable plans with file paths, test coverage needs, and validation criteria.
Explores codebase structure, finds relevant files, and returns distilled summaries. Use before planning to understand existing code without consuming main context.
API conventions for this project. Auto-loaded when working with routes, controllers, and endpoint files to ensure consistent API patterns.
Authentication and security patterns - JWT, OAuth, sessions, RBAC, input validation. Auto-loaded when working with auth, middleware, or security files.
Chrome DevTools debugging and browser automation via MCP. Auto-loaded when working with browser debugging, performance analysis, or web inspection tasks.
Context Engine framework reference. Auto-loaded when working with .context/, agents, commands, or hooks. Supplements CLAUDE.md with role and skill details.
Library documentation lookup via Context7 MCP. Use when you need current docs for any library, framework, or API. Prevents hallucinated APIs by fetching real documentation.
Executes bash commands
Hook triggers when Bash tool is used
Modifies files
Hook triggers on file write and edit operations
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Uses power tools
Uses power tools
Uses Bash, Write, or Edit tools
Uses Bash, Write, or Edit tools
An agentic orchestration framework for Claude Code. Structured workflows with explicit phase hand-offs, Agent Teams for parallel execution, 23 progressive-disclosure skills, persistent project knowledge, enforced safety hooks, and auto-learning from every session.
Context is the bottleneck, not intelligence. Skills load domain expertise on-demand.
v0.1.7 | MIT License
./install.sh /path/to/your/project
cd /path/to/your/project
claude
/init # auto-detect project, populate .context/
/research [feature] # begin first feature
# Install plugin
claude plugin add --path ./dist/context-engine-plugin
# In any project:
/context-engine:init
See docs/PLUGIN.md for the full plugin distribution guide.
/init ──> /adapt ──> /research ──> /planner ──> /implement ──> /validate ──> commit/PR
(once) (optional) researcher planner Agent Team Agent Team
subagent subagent or subagent or subagent
│ │ │ │
NOTES.md PRP.md Code + Tests Learnings
│ captured
[/clear + /resume between phases as needed]
Each command ends with the exact next command to run. Hand-offs are explicit. Commands choose Agent Teams or subagents automatically based on task complexity.
commands/ 21 user-facing commands (slash commands)
agents/ 6 agent role definitions
skills/ 23 progressive-disclosure skills (loaded on-demand)
hooks/ 11 enforcement scripts + hooks.json
.claude/
agent-memory/ Per-role persistent memory
instructions/ Shared framework instructions (5 files)
.context/
architecture/ OVERVIEW.md, TECH_STACK.md, DIRECTORY_MAP.md
features/ FEATURES.md + per-feature NOTES.md and PRP.md
patterns/ CODE_PATTERNS.md, ANTI_PATTERNS.md
decisions/ Architecture Decision Records (ADR-NNN.md)
errors/ INDEX.md + detail/ for complex errors
knowledge/ LEARNINGS.md + libraries/ + stack/ + dependencies/
checkpoints/ MANIFEST.md + CP-NNN snapshots
metrics/ HEALTH.md (velocity, errors, knowledge, agents, context)
templates/ PRP and NOTES templates
docs/ PLUGIN.md, CHEATSHEET.md, WALKTHROUGH.md
dist/ Built plugin output
| Command | Phase | Purpose |
|---|---|---|
/init | Setup | Bootstrap .context/, detect tech stack |
/adapt | Setup | Context-aware research for new projects |
/research [topic] | 1 | Explore codebase, produce NOTES.md |
/planner [notes] | 2 | Create PRP with testing strategy |
/implement [PRP] | 3 | Execute PRP steps (Agent Team or subagent) |
/validate [PRP] | 4 | Review, simplify, capture learnings, ship prompt |
| Command | Purpose |
|---|---|
/plan-quick [task] | Quick plan + implement for small tasks |
/debug [error] | Diagnose and fix bugs |
/refactor [goal] | Restructure code with safety checks |
/security-review | Standalone security review |
/simplify | Dead code, duplication, over-abstraction pass |
/status | Project briefing (add onboard for extended version) |
/resume | Reload state after /clear or new session |
/cancel | Abandon a feature in progress |
| Command | Purpose |
|---|---|
/learn [insight] | Route knowledge to deep reference layer |
/knowledge | Browse, search, promote knowledge base |
/checkpoint [action] | Create, list, rollback hybrid checkpoints |
/health [action] | Metrics dashboard with deep-dive modes |
/update-arch | Refresh architecture docs |
/create-skill | Create a new skill |
/update-skill | Update an existing skill |
Two modes. Commands pick automatically based on complexity.
Used by /implement, /validate, /debug, /refactor when work has 3+ parallel tracks. Teammates work independently on owned files, communicate directly, and coordinate via shared task list with dependency ordering.
Used by /research, /planner, and as fallback for small tasks. Single specialist works in isolated context, returns a summary.
npx claudepluginhub littlelingo/context-engine --plugin context-engineHarness for Claude Code — skills, /harness:* slash commands, persona subagents, lifecycle hooks, and MCP tools without per-repo `harness setup`. Sibling plugins exist for Cursor, Gemini CLI, and Codex.
Context-Driven Development plugin that transforms Claude Code into a project management tool with structured workflow: Context → Spec & Plan → Implement
11 agents, 35 skills, 18 commands, 9 hooks — spec-driven multi-agent orchestration for Claude Code, with optional cross-device semantic memory.
Agent enforcement framework — context injection, planning gates, session learning
Conductor v3 — Multi-agent orchestration with Evaluate-Loop, parallel execution, Board of Directors, and bundled SupaConductor skills for Claude Code
Multi-model consensus engine integrating OpenAI Codex CLI, Gemini CLI, and Claude CLI for collaborative code review and problem-solving.