@polymorphism-tech/morph-spec 4.10.0 → 4.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. package/README.md +2 -2
  2. package/claude-plugin.json +1 -1
  3. package/docs/CHEATSHEET.md +1 -1
  4. package/docs/QUICKSTART.md +1 -1
  5. package/framework/CLAUDE.md +5 -69
  6. package/framework/agents/backend/api-designer.md +3 -0
  7. package/framework/agents/backend/dotnet-senior.md +3 -0
  8. package/framework/agents/backend/ef-modeler.md +2 -0
  9. package/framework/agents/backend/hangfire-orchestrator.md +2 -0
  10. package/framework/agents/backend/ms-agent-expert.md +2 -0
  11. package/framework/agents/frontend/blazor-builder.md +2 -0
  12. package/framework/agents/frontend/nextjs-expert.md +2 -0
  13. package/framework/agents/infrastructure/azure-architect.md +2 -0
  14. package/framework/agents/infrastructure/azure-deploy-specialist.md +2 -0
  15. package/framework/agents/infrastructure/bicep-architect.md +2 -0
  16. package/framework/agents/infrastructure/container-specialist.md +2 -0
  17. package/framework/agents/infrastructure/devops-engineer.md +3 -0
  18. package/framework/agents/infrastructure/infra-architect.md +3 -0
  19. package/framework/agents/integrations/asaas-financial.md +2 -0
  20. package/framework/agents/integrations/azure-identity.md +2 -0
  21. package/framework/agents/integrations/clerk-auth.md +3 -0
  22. package/framework/agents/integrations/hangfire-integration.md +2 -0
  23. package/framework/agents/integrations/resend-email.md +2 -0
  24. package/framework/commands/morph-apply.md +151 -161
  25. package/framework/commands/morph-archive.md +28 -28
  26. package/framework/commands/morph-infra.md +79 -79
  27. package/framework/commands/morph-preflight.md +92 -56
  28. package/framework/commands/morph-proposal.md +94 -70
  29. package/framework/commands/morph-status.md +31 -31
  30. package/framework/commands/morph-troubleshoot.md +63 -60
  31. package/framework/rules/csharp-standards.md +3 -0
  32. package/framework/rules/frontend-standards.md +2 -0
  33. package/framework/rules/infrastructure-standards.md +3 -0
  34. package/framework/rules/morph-workflow.md +57 -2
  35. package/framework/rules/nextjs-standards.md +2 -0
  36. package/framework/rules/testing-standards.md +3 -0
  37. package/framework/skills/level-0-meta/morph-brainstorming/SKILL.md +54 -49
  38. package/framework/skills/level-0-meta/morph-checklist/SKILL.md +42 -19
  39. package/framework/skills/level-0-meta/morph-code-review/SKILL.md +8 -5
  40. package/framework/skills/level-0-meta/morph-code-review-nextjs/SKILL.md +7 -5
  41. package/framework/skills/level-0-meta/morph-frontend-review/SKILL.md +139 -136
  42. package/framework/skills/level-0-meta/morph-init/SKILL.md +42 -13
  43. package/framework/skills/level-0-meta/morph-post-implementation/SKILL.md +130 -130
  44. package/framework/skills/level-0-meta/morph-replicate/SKILL.md +95 -87
  45. package/framework/skills/level-0-meta/morph-simulation-checklist/SKILL.md +24 -0
  46. package/framework/skills/level-0-meta/morph-tool-usage-guide/SKILL.md +42 -41
  47. package/framework/skills/level-0-meta/morph-verification-before-completion/SKILL.md +22 -11
  48. package/framework/skills/level-1-workflows/morph-phase-clarify/SKILL.md +123 -114
  49. package/framework/skills/level-1-workflows/morph-phase-codebase-analysis/SKILL.md +120 -102
  50. package/framework/skills/level-1-workflows/morph-phase-design/SKILL.md +206 -214
  51. package/framework/skills/level-1-workflows/morph-phase-implement/.morph/logs/activity.json +38 -0
  52. package/framework/skills/level-1-workflows/morph-phase-implement/SKILL.md +241 -360
  53. package/framework/skills/level-1-workflows/morph-phase-plan/SKILL.md +107 -115
  54. package/framework/skills/level-1-workflows/morph-phase-setup/SKILL.md +135 -135
  55. package/framework/skills/level-1-workflows/morph-phase-tasks/.morph/logs/activity.json +14 -0
  56. package/framework/skills/level-1-workflows/morph-phase-tasks/SKILL.md +143 -139
  57. package/framework/skills/level-1-workflows/morph-phase-uiux/SKILL.md +168 -165
  58. package/framework/skills/level-1-workflows/morph-scope-escalation/SKILL.md +57 -8
  59. package/package.json +3 -3
  60. package/src/commands/project/doctor.js +7 -2
  61. package/src/commands/project/update.js +4 -4
  62. package/src/lib/stack-filter.js +58 -0
  63. package/src/scripts/setup-infra.js +53 -18
  64. package/src/utils/agents-installer.js +19 -5
  65. package/src/utils/claude-md-injector.js +90 -0
  66. package/src/utils/hooks-installer.js +1 -4
  67. package/src/utils/skills-installer.js +67 -7
  68. package/CLAUDE.md +0 -98
  69. package/framework/memory/patterns-learned.md +0 -766
  70. package/framework/skills/level-0-meta/morph-terminal-title/SKILL.md +0 -61
  71. package/framework/skills/level-0-meta/morph-terminal-title/scripts/set_title.sh +0 -65
@@ -3,236 +3,236 @@ name: morph:phase-setup
3
3
  description: MORPH-SPEC Phase 1 (Setup). Reads project context, detects tech stack, activates relevant agents by reading agents.json, and confirms the feature environment. Use at the start of every MORPH-SPEC feature workflow after proposal approval to load standards and initialize the context.
4
4
  argument-hint: "[feature-name]"
5
5
  user-invocable: false
6
- allowed-tools: Read, Write, Edit, Bash, Glob, Grep
7
- cliVersion: "4.10.0"
6
+ allowed-tools: Read, Write, Edit, Bash, Glob, Grep, AskUserQuestion
7
+ cliVersion: "4.10.1"
8
8
  ---
9
9
 
10
- # MORPH Setup - FASE 1
10
+ # MORPH Setup Phase 1
11
11
 
12
12
  > INTERNAL: Workflow skill used by /morph-proposal during automated phase orchestration. Not a user command.
13
13
 
14
- Inicialize o contexto e prepare o ambiente para uma feature aprovada.
14
+ Initialize the context and prepare the environment for an approved feature.
15
15
 
16
- ## Pré-requisitos
16
+ ## Prerequisites
17
17
 
18
- - [ ] Feature tem `proposal.md` criado (FASE 0 concluída)
19
- - [ ] Proposal foi aprovado pelo usuário
20
- - [ ] Agentes foram detectados e registrados no state
18
+ - [ ] Feature has `proposal.md` created (Phase 0 complete)
19
+ - [ ] Proposal was approved by the user
20
+ - [ ] Agents were detected and registered in state
21
21
 
22
- ## Ferramentas Recomendadas
22
+ ## Recommended Tools
23
23
 
24
- > **Ref:** `framework/skills/level-0-meta/morph-tool-usage-guide/SKILL.md` para guia completo.
25
- > **Ref:** `framework/standards/integration/mcp/mcp-tools.md` para referência MCP.
24
+ > **Ref:** `framework/skills/level-0-meta/morph-tool-usage-guide/SKILL.md` for full guide.
25
+ > **Ref:** `framework/standards/integration/mcp/mcp-tools.md` for MCP reference.
26
26
 
27
- | Ação | Ferramenta | Alternativa |
28
- |------|------------|-------------|
29
- | Verificar state | **Bash** `npx morph-spec state get` | — |
30
- | Detectar agentes + standards | **Read** `.morph/framework/agents.json` → match keywords → **Bash** `npx morph-spec state add-agent` | — |
31
- | Ler contexto do projeto | **Read** `.morph/context/README.md` | — |
32
- | Ler config | **Read** `.morph/config/config.json` | — |
33
- | Detectar arquitetura VSA | **Read** `.morph/config/config.json` → verificar `config.architecture.style` | — |
34
- | Escanear estrutura do projeto | **Glob** `src/**/*.{ts,tsx,cs}` | — |
35
- | Metadata do repositório | **GitHub MCP** `get_repo()` | **Bash** `gh repo view --json` |
36
- | Atualizar state | **Bash** `npx morph-spec state set` | — |
27
+ | Action | Tool | Alternative |
28
+ |--------|------|-------------|
29
+ | Verify state | **Bash** `npx morph-spec state get` | — |
30
+ | Detect agents + standards | **Read** `.morph/framework/agents.json` → match keywords → **Bash** `npx morph-spec state add-agent` | — |
31
+ | Read project context | **Read** `.morph/context/README.md` | — |
32
+ | Read config | **Read** `.morph/config/config.json` | — |
33
+ | Detect VSA architecture | **Read** `.morph/config/config.json` → check `config.architecture.style` | — |
34
+ | Scan project structure | **Glob** `src/**/*.{ts,tsx,cs}` | — |
35
+ | Repository metadata | **GitHub MCP** `get_repo()` | **Bash** `gh repo view --json` |
36
+ | Update state | **Bash** `npx morph-spec state set` | — |
37
37
 
38
- **MCPs desta fase:** GitHub (opcional — metadata do repo).
38
+ **MCPs for this phase:** GitHub (optionalrepo metadata).
39
39
 
40
- **Anti-padrões:**
41
- - Chamar `detect-agents` CLI (não existeleia `.morph/framework/agents.json` diretamente)
42
- - Task agent para o keyword matching inline de stack detection (rápido o suficiente direto)
43
- - WebSearch para info local do projeto (use Read/Glob)
40
+ **Anti-patterns:**
41
+ - Do not call a `detect-agents` CLI command (it doesn't exist read `.morph/framework/agents.json` directly)
42
+ - Do not use a Task agent for inline keyword matching (fast enough to do directly)
43
+ - Do not use WebSearch for local project info (use Read/Glob)
44
44
 
45
45
  ---
46
46
 
47
47
  ## Workflow
48
48
 
49
- ### CHECKPOINT DE ENTRADA: Verificar Pré-requisitos
49
+ ### ENTRY CHECKPOINT: Verify Prerequisites
50
50
 
51
- **⏸️ Antes de prosseguir com setup:**
51
+ Before proceeding with setup:
52
52
 
53
- - [ ] `proposal.md` existe em `.morph/features/$ARGUMENTS/`?
54
- - [ ] Proposal foi apresentado e aprovado pelo usuário?
55
- - [ ] Feature foi registrada no state?
53
+ - [ ] Does `proposal.md` exist in `.morph/features/$ARGUMENTS/0-proposal/`?
54
+ - [ ] Was the proposal presented and approved by the user?
55
+ - [ ] Is the feature registered in state?
56
56
 
57
- **❌ Se alguma checkbox NÃO estiver marcada:**
58
- → Voltar para FASE 0 (Proposal)
57
+ If any checkbox is NOT checked → go back to Phase 0 (Proposal).
59
58
 
60
59
  ---
61
60
 
62
- ### Passo 1: Verificar State
61
+ ### Step 1: Load Project Context
63
62
 
64
- Confirme que a feature existe no state:
63
+ Read these files first they inform all subsequent decisions:
65
64
 
66
65
  ```bash
67
66
  npx morph-spec state get $ARGUMENTS
68
67
  ```
69
68
 
70
- Se não existir, volte para FASE 0 (proposal).
69
+ If the feature doesn't exist in state, go back to Phase 0.
71
70
 
72
- ### Passo 2: Detectar Agentes e Carregar Standards
71
+ Then read:
72
+ - `.morph/context/README.md` — project overview, tech stack, architecture
73
+ - `.morph/config/config.json` — project configuration
73
74
 
74
- #### Passo 2.0: Detectar Estilo de Arquitetura e Ativar Arquiteto
75
+ ### Step 2: Detect Agents and Load Standards
75
76
 
76
- **Leia `.morph/config/config.json` e verifique `config.architecture.style`:**
77
+ #### Step 2.0: Detect Architecture Style and Activate Architect
77
78
 
78
- | Valor | Ação |
79
- |-------|------|
79
+ Read `.morph/config/config.json` and check `config.architecture.style`:
80
+
81
+ | Value | Action |
82
+ |-------|--------|
80
83
  | `"vertical-slice"` | `npx morph-spec state add-agent $ARGUMENTS vsa-architect` |
81
- | ausente / qualquer outro | `npx morph-spec state add-agent $ARGUMENTS domain-architect` |
84
+ | absent / any other value | `npx morph-spec state add-agent $ARGUMENTS domain-architect` |
82
85
 
83
- **Prossiga com keyword detection normal para os demais agentes** (ef-modeler, api-designer, etc.).
84
- O arquiteto já foi adicionado acima — **ignore-o no keyword matching** para evitar duplicação.
86
+ Proceed with normal keyword detection for all other agents. The architect was already added above — skip it during keyword matching to avoid duplication.
85
87
 
86
- #### Passo 2.1: Keyword Detection
88
+ #### Step 2.1: Keyword Detection
87
89
 
88
- **Leia agents.json diretamente e faça o match de keywords** (exceto `domain-architect` e `vsa-architect` que foram tratados no Passo 2.0):
90
+ Read agents.json and match keywords (except `domain-architect` and `vsa-architect` which were handled in Step 2.0):
89
91
 
90
- 1. Leia `.morph/framework/agents.json`
91
- 2. Extraia título e descrição da feature de `0-proposal/proposal.md`
92
- 3. Para cada agente no JSON (exceto arquitetos), verifique se alguma keyword do campo `keywords[]` aparece no texto da proposta
93
- 4. Adicione os agentes correspondentes ao state:
92
+ 1. Read `.morph/framework/agents.json` (or `framework/agents.json` in the framework project itself)
93
+ 2. Extract the feature title and description from `0-proposal/proposal.md`
94
+ 3. For each agent in the JSON (except architects), check if any keyword from the `keywords[]` field appears in the proposal text
95
+ 4. Include all agents with `always_active: true` automatically
96
+ 5. Add matched agents to state:
94
97
 
95
98
  ```bash
96
99
  npx morph-spec state add-agent $ARGUMENTS {agent-id}
97
- # Exemplo:
98
- npx morph-spec state add-agent $ARGUMENTS dotnet-senior
99
- npx morph-spec state add-agent $ARGUMENTS ef-modeler
100
100
  ```
101
101
 
102
- **Para carregar standards dos agentes detectados:**
103
- - Para cada agente ativo, leia os standards referenciados pelo campo `standards[]` em `agents.json`
104
- - Os arquivos de standard ficam em `.morph/framework/standards/{path}`
105
-
106
- **Standards resolution order** (manual):
107
- 1. `.morph/context/*.md` — project overrides (maior prioridade)
108
- 2. `.morph/framework/standards/` — standards instalados pelo morph-spec
109
- 3. `framework/standards/` — standards do pacote npm (fallback)
102
+ **To load standards for detected agents:**
103
+ - For each active agent, read the standards referenced by the `standards[]` field in `agents.json`
104
+ - Standard files are located at `.morph/framework/standards/{path}`
110
105
 
111
- **Contexto geral** (leia sempre):
112
- - `.morph/context/README.md` — Overview do projeto
113
- - `.morph/config/config.json`Configurações
106
+ **Standards resolution order:**
107
+ 1. `.morph/context/*.md` — project overrides (highest priority)
108
+ 2. `.morph/framework/standards/`standards installed by morph-spec
109
+ 3. `framework/standards/` — npm package standards (fallback)
114
110
 
115
- ### Passo 2.5: Validar Conexoes MCP
111
+ ### Step 2.5: Validate MCP Connections
116
112
 
117
- Verifique se os MCPs configurados estao funcionando antes de prosseguir.
113
+ Check that configured MCPs are working before proceeding.
118
114
 
119
- **1. Coletar MCPs recomendados:**
120
- - Leia `framework/phases.json` → para cada fase no workflow da feature, colete os `recommendedMCPs[]`
121
- - Leia `framework/skills/level-0-meta/mcp-registry.json` → obtenha os `healthCheck` de cada MCP
115
+ **1. Collect recommended MCPs:**
116
+ - Read `framework/phases.json` → for each phase in the feature's workflow, collect `recommendedMCPs[]`
117
+ - Read `framework/skills/level-0-meta/mcp-registry.json` → get `healthCheck` for each MCP
122
118
 
123
- **2. Identificar MCPs configurados:**
124
- - Leia `.claude/settings.local.json` → identifique quais MCPs estao em `mcpServers`
119
+ **2. Identify configured MCPs:**
120
+ - Read `.claude/settings.local.json` → identify which MCPs are in `mcpServers`
125
121
 
126
- **3. Para cada MCP que esta CONFIGURADO E RECOMENDADO:**
127
- 1. Procure nas suas ferramentas disponiveis por uma que contenha `healthCheck.toolPattern` no nome
128
- 2. Se a ferramenta existir → execute o `healthCheck.testCall` com `healthCheck.testParams`
129
- 3. Avalie o resultado:
122
+ **3. For each MCP that is CONFIGURED AND RECOMMENDED:**
123
+ 1. Search your available tools for one containing `healthCheck.toolPattern` in the name
124
+ 2. If the tool exists → execute the `healthCheck.testCall` with `healthCheck.testParams`
125
+ 3. Evaluate the result:
130
126
 
131
- | Resultado | Acao |
132
- |-----------|------|
133
- | **Sucesso** | `✓ {MCP} — conexao verificada` |
134
- | **Ferramenta nao encontrada** | `○ {MCP} — precisa restart para ativar` |
135
- | **Erro** | → **AskUserQuestion** com 3 opcoes (abaixo) |
127
+ | Result | Action |
128
+ |--------|--------|
129
+ | **Success** | `✓ {MCP} — connection verified` |
130
+ | **Tool not found** | `○ {MCP} — needs restart to activate` |
131
+ | **Error** | → Use `AskUserQuestion` with 3 options (below) |
136
132
 
137
- **Em caso de erro pergunte ao usuario:**
133
+ **On errorask the user:**
138
134
 
139
- Use `AskUserQuestion` com header `"{MCP}"` e opcoes:
140
- - **Continuar sem {MCP}** — Mostre o campo `fallback` do registry e prossiga
141
- - **Reconfigurar credenciais** — Colete novas credenciais e atualize `.claude/settings.local.json`
142
- - **Parar setup** — Aborte e reporte o que precisa ser corrigido
135
+ Use `AskUserQuestion` with header `"{MCP}"` and options:
136
+ - **Continue without {MCP}** — show the `fallback` field from the registry and proceed
137
+ - **Reconfigure credentials** — collect new credentials and update `.claude/settings.local.json`
138
+ - **Stop setup** — abort and report what needs to be fixed
143
139
 
144
- **4. Para MCPs RECOMENDADOS mas NAO CONFIGURADOS:**
145
- - Print `△ {MCP} — nao configurado (fallback: {registry.fallback})`
146
- - Sugestao: `Tip: configure com /morph:init refresh ou npx morph-spec mcp setup`
140
+ **4. For MCPs RECOMMENDED but NOT CONFIGURED:**
141
+ - Print `△ {MCP} — not configured (fallback: {registry.fallback})`
142
+ - Suggestion: `Tip: configure with /morph:init refresh or npx morph-spec mcp setup`
147
143
 
148
- **Resumo:** Mostre uma tabela com status de cada MCP antes de prosseguir:
144
+ **Summary:** Show a status table for each MCP before proceeding:
149
145
  ```
150
146
  MCP Readiness:
151
- ✓ context7 — conexao verificada
152
- ○ playwright — precisa restart
153
- △ supabase — nao configurado (fallback: Grep + Read para schema)
147
+ ✓ context7 — connection verified
148
+ ○ playwright — needs restart
149
+ △ supabase — not configured (fallback: Grep + Read for schema)
154
150
  ```
155
151
 
156
152
  ---
157
153
 
158
- ### Passo 3: Confirmar Stack
154
+ ### Step 3: Confirm Stack
159
155
 
160
- Baseado no proposal e contexto, confirme:
161
- - Stack tecnológica (Blazor Server, Next.js, etc.)
162
- - Padrões arquiteturais aplicáveis
163
- - Componentes reutilizáveis existentes
156
+ Based on the proposal and context, confirm:
157
+ - Tech stack (Blazor Server, Next.js, .NET API, Node.js CLI, etc.)
158
+ - Applicable architectural patterns
159
+ - Existing reusable components
164
160
 
165
- ### Passo 4: Listar Agentes Ativos e Preview de Dispatch
161
+ ### Step 4: List Active Agents and Dispatch Preview
166
162
 
167
- Mostre os agentes detectados no proposal:
163
+ Show the agents detected from the proposal:
168
164
 
169
165
  ```bash
170
166
  npx morph-spec state get $ARGUMENTS
171
167
  ```
172
168
 
173
- Parse o JSON e liste os `activeAgents` com seus emojis e responsabilidades (consulte `.morph/framework/agents.json`).
169
+ Parse the JSON and list `activeAgents` with their emojis/icons and responsibilities (look up each agent in `.morph/framework/agents.json` for the `icon` field).
174
170
 
175
- **Se houver 2+ agentes especialistas ativos**, mostre o plano de dispatch para as próximas fases:
171
+ **If there are 2+ specialist agents active**, show the dispatch plan for the next phase:
176
172
 
177
173
  ```bash
178
174
  npx morph-spec dispatch-agents $ARGUMENTS design
179
175
  ```
180
176
 
181
- Isso informa quais agentes serão disparados em paralelo na fase de design e quais tasks eles executarão.
177
+ This shows which agents will be dispatched in parallel during the design phase and which tasks they'll execute.
182
178
 
183
- > **Mapeamento importante:** `agents[].id` do dispatch config = `subagent_type` no `Agent` tool.
184
- > Exemplo: `id: "nextjs-expert"` → `Agent(subagent_type=nextjs-expert, prompt=agent.taskPrompt)`.
185
- > Cada `id` corresponde ao campo `name:` no frontmatter do arquivo em `.claude/agents/`.
179
+ > **Important mapping:** `agents[].id` from the dispatch config = `subagent_type` in the `Agent` tool.
180
+ > Example: `id: "nextjs-expert"` → `Agent(subagent_type=nextjs-expert, prompt=agent.taskPrompt)`.
181
+ > Each `id` corresponds to the `name:` field in the frontmatter of the file in `.claude/agents/`.
186
182
 
187
- ### Passo 5: Atualizar State
183
+ ### Step 5: Update State and Determine Next Phase
188
184
 
189
- Marque a feature como na fase SETUP:
185
+ Update the feature state:
190
186
 
191
187
  ```bash
192
188
  npx morph-spec state set $ARGUMENTS status in_progress
193
189
  ```
194
190
 
195
- ## Outputs
191
+ **Determine the next phase** based on active agents:
196
192
 
197
- **Apresente ao usuário:**
193
+ | Condition | Next Phase |
194
+ |-----------|------------|
195
+ | `ui-designer` is in activeAgents | **uiux** (UI/UX phase) |
196
+ | `ui-designer` is NOT in activeAgents | **design** (skip uiux) |
198
197
 
199
- 1. **Contexto carregado**:
200
- - Nome do projeto
201
- - Stack confirmado
202
- - Standards aplicáveis
198
+ Announce the next phase clearly to the user.
203
199
 
204
- 2. **Agentes ativos**:
205
- - Lista de agentes com emojis
206
- - Responsabilidades de cada um
200
+ ## Outputs
207
201
 
208
- ## Critérios de Avanço
202
+ Present to the user:
209
203
 
210
- - [x] Contexto do projeto carregado
211
- - [x] Standards identificados (framework + project)
212
- - [x] Stack confirmado
213
- - [x] Agentes listados
214
- - [x] State atualizado para phase: setup
204
+ 1. **Context loaded**:
205
+ - Project name
206
+ - Confirmed stack
207
+ - Applicable standards
215
208
 
216
- ---
209
+ 2. **Active agents**:
210
+ - Agent list with emojis/icons and tier
211
+ - Responsibilities of each agent
217
212
 
218
- ## Integração com Superpowers
213
+ 3. **Next phase**:
214
+ - Which phase comes next (uiux or design)
215
+ - Why (ui-designer presence or absence)
219
216
 
220
- > Disponível quando o plugin `superpowers` está instalado.
217
+ ## Advancement Criteria
221
218
 
222
- | Skill | Quando Usar | Invocação |
223
- |-------|-------------|-----------|
224
- | `using-git-worktrees` | Se feature requer isolamento do workspace | `Skill(superpowers:using-git-worktrees)` |
219
+ - [x] Project context loaded
220
+ - [x] Standards identified (framework + project)
221
+ - [x] Stack confirmed
222
+ - [x] Agents listed with icons
223
+ - [x] State updated to in_progress
224
+ - [x] Next phase determined
225
225
 
226
226
  ---
227
227
 
228
- ## Outputs desta Fase
228
+ ## Superpowers Integration
229
229
 
230
- <!-- morph:outputs:proposal -->
231
- | Output | Caminho |
232
- |--------|---------|
233
- | `proposal` | `.morph/features/{feature}/0-proposal/proposal.md` |
234
- <!-- /morph:outputs -->
230
+ > Available when the `superpowers` plugin is installed.
231
+
232
+ | Skill | When to Use | Invocation |
233
+ |-------|-------------|-----------|
234
+ | `using-git-worktrees` | If the feature requires workspace isolation | `Skill(superpowers:using-git-worktrees)` |
235
235
 
236
236
  ---
237
237
 
238
- Continuar automaticamente para próxima fase (UI/UX se detectado, ou Design).
238
+ Continue automatically to the next phase (UI/UX if ui-designer detected, otherwise Design).
@@ -0,0 +1,14 @@
1
+ {
2
+ "sessionId": "",
3
+ "feature": "",
4
+ "phase": "",
5
+ "hooks": [
6
+ {
7
+ "name": "set-terminal-title",
8
+ "event": "UserPromptSubmit",
9
+ "result": "failed",
10
+ "ts": "16:38:44"
11
+ }
12
+ ],
13
+ "skills": []
14
+ }