up-cc 0.6.0 → 0.8.0
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.
- package/README.md +6 -2
- package/agents/up-architecture-supervisor.md +9 -5
- package/agents/up-arquiteto.md +45 -0
- package/agents/up-audit-supervisor.md +13 -3
- package/agents/up-backend-specialist.md +12 -5
- package/agents/up-code-reviewer.md +6 -2
- package/agents/up-database-specialist.md +12 -5
- package/agents/up-execution-supervisor.md +19 -7
- package/agents/up-executor.md +12 -5
- package/agents/up-frontend-specialist.md +12 -5
- package/agents/up-operations-supervisor.md +7 -3
- package/agents/up-planning-supervisor.md +12 -7
- package/agents/up-product-supervisor.md +9 -4
- package/agents/up-quality-supervisor.md +11 -6
- package/agents/up-verification-supervisor.md +11 -6
- package/bin/install.js +254 -8
- package/bin/up-instrument.cjs +333 -0
- package/commands/custos.md +67 -0
- package/package.json +2 -2
- package/references/engineering-principles-compressed.md +26 -0
- package/references/governance-rules-compressed.md +31 -0
- package/references/production-requirements-compressed.md +23 -0
- package/references/rework-limits-compressed.md +22 -0
- package/workflows/build.md +63 -5
- package/workflows/governance.md +26 -4
- package/workflows/plan.md +17 -5
- package/workflows/planejar-fase.md +27 -9
|
@@ -94,17 +94,35 @@ Task(
|
|
|
94
94
|
**Pesquisa inline:** {RESEARCH_INLINE}
|
|
95
95
|
|
|
96
96
|
<files_to_read>
|
|
97
|
-
|
|
98
|
-
- {
|
|
99
|
-
- {
|
|
100
|
-
- {
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
-
|
|
104
|
-
-
|
|
105
|
-
-
|
|
97
|
+
TIER 1 — Sempre obrigatorio:
|
|
98
|
+
- {state_path} (Estado do Projeto, ~2k tokens)
|
|
99
|
+
- .plano/fases/{phase_number}/PHASE.md (slice do ROADMAP da fase atual, ~500 tokens — v0.7.0+)
|
|
100
|
+
- .plano/fases/{phase_number}/REQUIREMENTS-SLICE.md (REQs APENAS desta fase, ~1.5k tokens — v0.7.0+)
|
|
101
|
+
|
|
102
|
+
TIER 2 — Condicional:
|
|
103
|
+
- {context_path} (DECISOES DO USUARIO de /up:discutir-fase, se existir)
|
|
104
|
+
- {research_path} (Pesquisa Tecnica, se existir)
|
|
105
|
+
- {verification_path} (Lacunas de Verificacao, se --gaps)
|
|
106
|
+
- .plano/codebase/CONVENTIONS.md (BROWNFIELD apenas)
|
|
107
|
+
- .plano/codebase/CONCERNS.md (BROWNFIELD apenas)
|
|
108
|
+
- .plano/codebase/ARCHITECTURE.md (BROWNFIELD apenas)
|
|
109
|
+
|
|
110
|
+
TIER 3 — Sob demanda (NAO carregue por padrao):
|
|
111
|
+
- {roadmap_path} (ROADMAP completo) — so se precisar entender fases adjacentes
|
|
112
|
+
- {requirements_path} (REQUIREMENTS completo) — so se a slice nao tiver info suficiente
|
|
113
|
+
- {project_path} (PROJECT.md) — so se precisar visao geral
|
|
114
|
+
|
|
115
|
+
**FALLBACK:** Se as slices `.plano/fases/{phase_number}/` nao existem (projeto pre-v0.7.0), carregue {roadmap_path} e {requirements_path} completos como antes.
|
|
106
116
|
</files_to_read>
|
|
107
117
|
|
|
118
|
+
**Engineering Principles (compressed) — sempre injetado:**
|
|
119
|
+
1. Implementacao real, nao simulacao (zero placeholder)
|
|
120
|
+
2. Correto, nao rapido (sem `any`, validacao com lib)
|
|
121
|
+
3. Conectado ponta a ponta (componente → API → DB funcionando)
|
|
122
|
+
4. Consistencia sobre criatividade (grep antes de inventar)
|
|
123
|
+
5. Dados reais desde o primeiro momento (sem hardcode)
|
|
124
|
+
6. Cada decisao tem custo futuro (escolher solucao escalavel)
|
|
125
|
+
|
|
108
126
|
**IDs de requisitos da fase (cada ID DEVE aparecer no campo `requirements` de um plano):** {phase_req_ids}
|
|
109
127
|
|
|
110
128
|
**Instrucoes do projeto:** Ler ./CLAUDE.md se existir
|