Quick fixes and small tasks using MetaSaver agents without full workflow overhead
Executes small tasks using MetaSaver agents with HITL approval and verification.
/plugin marketplace add metasaver/claude-marketplace/plugin install core-claude-plugin@metasaver-marketplaceSimple mini-workflow for quick fixes and small tasks. Uses MetaSaver agents, requires HITL approval before execution, verifies work after.
Use /ms for: Quick fixes, small features, mini tasks that don't need formal requirements docs.
Use /build for: Large features, multi-epic work, anything needing PRDs and execution plans.
When /ms is invoked, ALWAYS proceed to Phase 1 regardless of prompt content.
Goal: Make sure we understand what the user wants before doing anything.
Goal: Get user sign-off before executing anything.
Present to user:
Use AskUserQuestion tool with options:
Goal: Do the work using MetaSaver agents.
Follow: /skill agent-selection
Agent selection:
| Task Type | Agent |
|---|---|
| Explore/understand code | core-claude-plugin:generic:code-explorer |
| Write/modify code | core-claude-plugin:generic:coder |
| Write tests | core-claude-plugin:generic:tester |
| Review code | core-claude-plugin:generic:reviewer |
| Config files | core-claude-plugin:config:* (appropriate one) |
Goal: Make sure the changes don't break anything.
Run in sequence:
pnpm build - Compilation checkpnpm lint - Code quality checkpnpm test - Test suite checkReport any failures to user.
Goal: Audit your own work before presenting to user.
Before confirming with user, check:
If issues found:
This catches:
Goal: Verify we solved what the user asked for.
Present:
Use AskUserQuestion tool: "Did this solve what you asked for?"
| Feature | /ms | /build |
|---|---|---|
| PRD files | No | Yes |
| Execution plans | No | Yes |
| User story files | No | Yes |
| workflow-state.json | No | Yes |
| Multiple waves | No | Yes |
| Routing to commands | No | Yes |
| Formal requirements | No | Yes |
# Quick fix
/ms "fix the typo in the login button"
→ Phase 1: Understand (clear request)
→ Phase 2: "I'll fix the typo in the login button. Proceed?"
→ Phase 3: Spawn coder agent
→ Phase 4: Build/lint/test pass
→ Phase 5: Self-Audit (scope ok, complete, no extras)
→ Phase 6: "Fixed. Did this solve it?"
# Small feature
/ms "add a loading spinner to the submit button"
→ Phase 1: Understand, clarify which button
→ Phase 2: "I'll add a spinner to the form submit button. Proceed?"
→ Phase 3: Spawn coder + tester agents in parallel
→ Phase 4: Build/lint/test pass
→ Phase 5: Self-Audit (scope ok, tests added as approved)
→ Phase 6: "Added spinner with tests. Did this solve it?"
# Exploration + fix
/ms "find where the auth token is stored and add expiry check"
→ Phase 1: Understand (clear enough)
→ Phase 2: "I'll explore auth code, then add expiry check. Proceed?"
→ Phase 3: Spawn code-explorer, then coder based on findings
→ Phase 4: Build/lint/test pass
→ Phase 5: Self-Audit (only auth.ts modified, matches request)
→ Phase 6: "Added expiry check in auth.ts. Did this solve it?"
core-claude-plugin:*Use /build when:
Use /ms when: