Analyze PRD for innovation opportunities, present each with HITL selection loop (Implement/Skip/More Details), update PRD with selections. Use when /architect workflow reaches innovation phase after vibe-check. Always runs for /architect (unlike /build where innovation is optional).
/plugin marketplace add metasaver/claude-marketplace/plugin install core-claude-plugin@metasaver-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
templates/innovation-details.mdtemplates/innovation-summary.mdROOT AGENT ONLY - Called by /architect command exclusively.
Purpose: Analyze PRD for enhancements, walk through each innovation with HITL, update PRD with selections Trigger: After vibe-check passes (/architect workflow only) Input: PRD path, complexity, scope Output: PRD updated with user-selected innovations
| Aspect | /architect (this skill) | /build |
|---|---|---|
| Innovation | ALWAYS runs | OPTIONAL (user asked first) |
| PRD State | Already exists (from req) | Written during innovate |
| HITL Stop | Always proceeds (no ask) | Asks user before starting |
| Purpose | Planning & exploration | Execution optimization |
| Depth | Deep analysis required | Standard analysis |
For EACH innovation (one at a time):
Display 1-page summary (see templates/innovation-summary.md):
Use AskUserQuestion for HITL selection:
If recommended: true:
If recommended: false:
Handle response:
Repeat for all innovations
Update PRD with selected innovations (if any):
Summary to user:
Return control to /architect command → Continue to design-phase
{
"status": "complete",
"prdPath": "docs/epics/in-progress/msm-feature/prd.md",
"totalInnovations": 4,
"innovationsImplemented": [
{ "id": 1, "title": "Add OpenAPI Documentation" },
{ "id": 3, "title": "Implement Rate Limiting" }
],
"innovationsSkipped": [
{ "id": 2, "title": "Add MFA" },
{ "id": 4, "title": "Audit Logging" }
]
}
[Vibe check passes → Innovate phase starts]
[innovation-advisor returns 4 innovations]
Innovation 1 of 4: Add OpenAPI Documentation [RECOMMENDED]
Impact: High | Effort: Low
[User: Implement]
Innovation 2 of 4: Rate Limiting [RECOMMENDED]
[User: Implement]
Innovation 3 of 4: MFA [OPTIONAL]
[User: Skip]
Innovation 4 of 4: Audit Logging [OPTIONAL]
[User: More Details → detailed view → Skip]
Innovation Phase Complete
✅ Implemented: OpenAPI, Rate Limiting
⏭️ Skipped: MFA, Audit Logging
Called by: /architect command exclusively Calls: innovation-advisor agent, AskUserQuestion Separate from: /build (different logic), /audit (different focus) Previous phase: vibe-check Next phase: design-phase (architect-phase)