By infohata
Centralized AI-agent configuration: the mind-vault sprint-workflow skills (/idea /plan /work /wrap /land /compound and more), the 8 mv:* persona subagents, and slash-commands. Commands namespace under /mv:.
Alias for /plan — brainstorming is the interactive front-end of the plan skill when input is thin; both commands invoke the same skill
Create well-structured pull request with AI-generated title and description
Show comprehensive git status and working directory state
Load mind-vault behavioural rules (RULE_*.md) — works on both the plugin and symlink channels
Multi-engine review-fix-rerun loop (Cursor Bugbot + GitHub Copilot + Claude Code Review, or any subset) with bounded-autonomy policy
Use this agent for cross-cutting structural design and review — multi-app refactors, dependency/coupling decisions, abstraction boundaries, and blast-radius analysis before feature code is written. It is the reviewer of a drafted plan in /plan, and the author of cross-cutting refactors in /work. Examples: <example> Context: A plan touches auth, billing, and kb apps through a shared base class. user: "Refactor the permission layer across auth, billing, and kb." assistant: "I'll use the architect agent to map the dependency surface and design the shared abstraction before any app-level edits." <commentary> Spans 3 apps with a shared base class — cross-cutting, so route to architect rather than a single-domain implementer. </commentary> </example> <example> Context: A drafted plan needs an independent structural read before execution. user: "Review this plan for coupling and genericity issues." assistant: "I'll use the architect agent to run its abstraction / coupling / boundary / scaling passes over the plan." <commentary> Plan review (not authoring) is the architect's reviewer mode in /plan. </commentary> </example>
Use this agent for Django server-side implementation — models, migrations, signals, DRF viewsets/serializers, Channels, Celery tasks, and ORM optimization (select_related / prefetch_related, killing N+1s, service-layer extraction). Examples: <example> Context: A feature needs a new API surface the frontend will consume. user: "Add a billing_summary API endpoint." assistant: "I'll use the backend agent to add the DRF viewset, serializer, and route with the query optimized up front." <commentary> Models/views/DRF is backend's domain. </commentary> </example> <example> Context: A list view is issuing a query per row. user: "This admin page is slow — looks like an N+1 on the orders list." assistant: "I'll use the backend agent to trace the queryset and add the right prefetch_related/select_related." <commentary> ORM efficiency and N+1 elimination are core backend responsibilities. </commentary> </example>
Use this agent as a relentless pre-commit / pre-push code reviewer — a local Bugbot/Copilot replacement specialized in Django, PostgreSQL multi-tenancy, and HTMX/Alpine patterns. It reviews a diff and reports findings; it never writes or edits files. It has no Write/Edit tools; `Bash`/`Grep` are granted only to inspect (e.g. `git diff HEAD`), so read-only here is a behavioral constraint, not a tool-enforced sandbox. Reach for it when no external review bot is wired up, or before opening a PR. Examples: <example> Context: Work is done on a feature branch and the user wants a gate before pushing. user: "Review my changes before I push." assistant: "I'll use the curator agent to run a multi-pass review over the local diff and report findings by severity." <commentary> Pre-push local review with no external bot is exactly curator's role. </commentary> </example> <example> Context: A PR introduces a ViewSet and the user wants a pattern-enforcement pass. user: "Check this viewset for our multi-tenant and filterset conventions." assistant: "I'll use the curator agent to verify tenant scoping and that filterset_fields excludes removed model fields." <commentary> Pattern/convention enforcement on a diff routes to curator. </commentary> </example>
Use this agent for infrastructure and operations work — Docker / docker compose, nginx & Traefik, systemd, CI/CD pipelines, env/config wiring, and zero-downtime deploy concerns. Assumes failure, enforces idempotency and container parity. Examples: <example> Context: A new background worker needs to run in the stack. user: "Dockerise the new Celery queue." assistant: "I'll use the devops agent to add the compose service, entrypoint, and healthcheck with prod parity." <commentary> Docker/compose/entrypoint work is devops's domain. </commentary> </example> <example> Context: The project needs CI to run tests on every PR. user: "Wire up a GitHub Actions pipeline that runs the test suite." assistant: "I'll use the devops agent to author the workflow with caching and a fail-fast matrix." <commentary> CI/CD authoring routes to devops. </commentary> </example>
Use this agent for documentation-only work — READMEs, guides, CHANGELOG entries, reference docs — written show-don't-tell with runnable examples, negative examples, and zero marketing fluff. Examples: <example> Context: A shipped feature has no user-facing docs. user: "Document the new review-loop engine selector." assistant: "I'll use the documentation agent to write a concise guide with a worked config example and the common failure mode." <commentary> Pure documentation authoring routes to documentation. </commentary> </example> <example> Context: An existing guide is confusing and assumes too much. user: "This setup doc keeps tripping people up — clarify it." assistant: "I'll use the documentation agent to restructure it for an exhausted reader: prerequisites first, copy-pasteable steps, gotchas called out." <commentary> Clarifying/rewriting docs is documentation's job. </commentary> </example>
Search outside the project (in IDE plans, AI agent workspaces, or temporary storage) and retrieve standalone artefacts, research, or validation logs to bring them inside the project repository.
Route a just-learned lesson to the right destination — project-local solution doc, mind-vault skill/rule/agent/command, or auto-memory. Uses a hybrid narrative-probe + taxonomy-quiz router. Also consumes review-loop output (Cursor Bugbot or GitHub Copilot) as input. Final stage of the mind-vault sprint workflow; the lever that makes each sprint easier than the last.
Triage and batch-merge accumulated Dependabot PRs in multi-requirements-file Python repos (web + lsp + dev + per-workspace) — diff-based duplicate detection across the root vs per-workspace ecosystems, risk-tier batching for git-bisect cleanliness, worktree-isolated verification, live-staging smoke, post-merge forward-sync of remaining branches. TRIGGER when the user says "review dependabot PRs", "merge dependabot batch", "dependabot sweep", "what to do with these dep PRs", "clean up the dep updates", or asks for a roadmap merging multiple `chore(deps)` PRs.
Deploy Docker Compose web applications across any project — branch strategy, change-aware scripts, database backup + rollback safety, screen-session remote execution, Let's Encrypt SSL, health checks, and CI/CD wiring.
Apply Django frontend conventions — HTMX partial responses, Alpine.js state, Bulma components, HTMX modal/formset JS contracts, safe query-string generation, dynamic hx-* attribute handling, and Cotton component primitives — pairing with django backend patterns. Includes hard hazard rules every template edit must respect — multi-line `{# …
Uses power tools
Uses Bash, Write, or Edit tools
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.
👋 New here? Start with
docs/guides/ONBOARDING.mdThirty-minute walkthrough from blank machine to first sprint — IDE install, Claude Code CLI + plugins, mind-vault symlinks, productive defaults, your first
/idea → /plan → /work → /wrap → /review-loop → /land → /compoundcycle.Everything below is reference material for engineers already past onboarding.
v5 — demonstrated on a second stack (IDEA-014 Phase 2): skills/laravel + skills/laravel-frontend fill all 10 skills/work/references/SKILL_CONTRACT.md contract headings with ZERO edits to any agents/AGENT_*.md — the empty agents/ diff is the proof that the craft/stack split (v4.9, Phase 1: all 8 personas split into a craft core + ## Stack adapter) is genuinely stack-agnostic, not Django with indirection. A real-repo Laravel dogfood follows as a v5.x fast-follow. Recent line: the /review-loop claude engine classifies verdicts with an orchestrator-inline model-judge ({CLEAN \| BLOCKING \| NON_BLOCKING[]}) instead of a prose regex — the adapter just surfaces material; carve-out typed to prose-only verdict surface, not engine name (v5.3, IDEA-022), event-driven /review-loop Phase 4 — a bounded, read-only Monitor accelerates the ScheduleWakeup wait, re-entering the moment an engine verdict lands (v5.2, IDEA-021), installable as a native Claude Code plugin (/plugin install mv@mind-vault) alongside the symlink scripts — additive, coexist (v5.1, IDEA-017), new skills/python language-base tier beneath the framework skills (v4.8, IDEA-009), split /wrap into /wrap (docs) + /land (merge + teardown) and retire the double-review — canonical chain /work → /wrap → /review-loop → /land (v4.7), Claude Code Review as a third /review-loop engine (v4.6).
Cross-host configuration library for AI coding agents — skills, commands, subagent personas, and shared rules, authored once and symlinked into every agent-aware tool.
Single source of truth. You edit in
mind-vault/; one setup script per host drops symlinks into each tool's native config directory. No copy-paste drift between Cursor, Claude Code, OpenCode, VS Code Copilot, or Antigravity.v4 highlights. The Stage 4 review surface is now engine-agnostic — opt into Cursor Bugbot, GitHub Copilot, Claude Code Review (the
claude-code-action@v1+code-reviewplugin), any concurrent subset, or none (curator-only fallback). Canonical entry:/review-loop <PR> bugbot,/review-loop <PR> copilot,/review-loop <PR> claude, or any combination e.g./review-loop <PR> bugbot,copilot,claude.⚠️
sprint-autois currently UNSTABLE (as of v4.4). The overnight orchestrator hasn't been exercised end-to-end since the v3.2 integration-as-merge-gate redesign, multi-engine review, the eval-gate path, and the single-review/wrap+/landsplit all landed around it. Its docs were just reconciled (v4.4 sprint-auto doc-migration); the runtime path still needs a low-stakes shakedown batch before you trust it for unattended overnight runs. The single-IDEA flow (/idea → /plan → /work → /wrap → /review-loop → /land) is unaffected and stable.
Mind-vault's headline value: a five-stage development loop (plus one optional discovery stage) that makes each sprint easier than the last. The final stage, /compound, routes every learned lesson back into mind-vault itself — extending skills, rules, and reviewer personas so the next sprint starts with a higher floor.
flowchart LR
I0(["/ideate — optional discovery"]) -.-> I1
I1(["/idea — capture"]) --> P
P(["/plan · /brainstorm — what + how"]) --> W
W(["/work — execute"]) --> WR
WR(["/wrap — finalize docs\n(pre-merge)"]) --> RR
RR(["/review-loop — single pass\n+ curator · architect"]) --> L
L(["/land — merge + teardown"]) --> C
C(["/compound — router"]) -.promotes.-> V[("mind-vault\nskills · rules · agents\ncommands · memory")]
C -.next sprint.-> I1
npx claudepluginhub infohata/mind-vault --plugin mvHarness-native ECC operator layer - 67 agents, 271 skills, 92 legacy command shims, reusable hooks, rules, selective install profiles, and production-ready workflows for Claude Code, Codex, OpenCode, Cursor, and related agent harnesses
Superpowers Plus core skills library for Claude Code: planning, execution routing, TDD, debugging, and collaboration workflows
Unity Development Toolkit - Expert agents for scripting/refactoring/optimization, script templates, and Agent Skills for Unity C# development
Claude harness - A harness for solo developers (Vibecoders) to handle full-cycle contract development.
v9.44.1 — Patch release for Gemini environment/version detection and qwen auth gating. Run /octo:setup.
Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques