up-cc 0.2.3 → 0.3.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/agents/up-analista-codigo.md +446 -0
- package/agents/up-auditor-modernidade.md +378 -0
- package/agents/up-auditor-performance.md +426 -0
- package/agents/up-auditor-ux.md +396 -0
- package/agents/up-consolidador-ideias.md +493 -0
- package/agents/up-pesquisador-mercado.md +350 -0
- package/agents/up-sintetizador-melhorias.md +407 -0
- package/bin/lib/core.cjs +3 -3
- package/bin/up-tools.cjs +490 -23
- package/commands/ajuda.md +19 -0
- package/commands/ideias.md +49 -0
- package/commands/melhorias.md +45 -0
- package/package.json +1 -1
- package/references/audit-modernidade.md +1617 -0
- package/references/audit-performance.md +478 -0
- package/references/audit-ux.md +1544 -0
- package/templates/report.md +177 -0
- package/templates/suggestion.md +152 -0
- package/workflows/ideias.md +381 -0
- package/workflows/melhorias.md +409 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: up:ideias
|
|
3
|
+
description: Sugestoes de features novas com pesquisa de mercado e analise de codigo
|
|
4
|
+
argument-hint: ""
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Write
|
|
8
|
+
- Edit
|
|
9
|
+
- Glob
|
|
10
|
+
- Grep
|
|
11
|
+
- Bash
|
|
12
|
+
- Task
|
|
13
|
+
- WebSearch
|
|
14
|
+
- WebFetch
|
|
15
|
+
- AskUserQuestion
|
|
16
|
+
---
|
|
17
|
+
<objective>
|
|
18
|
+
Run feature ideation with 2 parallel specialized agents (code analysis + market research), consolidate findings with ICE scoring into a prioritized report with anti-features.
|
|
19
|
+
|
|
20
|
+
Standalone: works without /up:novo-projeto. Creates .plano/ideias/ automatically if not exists.
|
|
21
|
+
Detects project stack and domain to contextualize analysis.
|
|
22
|
+
|
|
23
|
+
Output: .plano/ideias/RELATORIO.md with suggestions ranked by ICE score (Impact x Confidence x Ease) and mandatory anti-features section.
|
|
24
|
+
|
|
25
|
+
Optionally, after reviewing results, user can select ideas to convert into executable phases in ROADMAP.md.
|
|
26
|
+
</objective>
|
|
27
|
+
|
|
28
|
+
<execution_context>
|
|
29
|
+
@~/.claude/up/workflows/ideias.md
|
|
30
|
+
@~/.claude/up/references/ui-brand.md
|
|
31
|
+
</execution_context>
|
|
32
|
+
|
|
33
|
+
<context>
|
|
34
|
+
$ARGUMENTS
|
|
35
|
+
|
|
36
|
+
**Standalone mode:** This command does NOT require /up:novo-projeto or .plano/ to exist.
|
|
37
|
+
It creates .plano/ideias/ automatically and runs the full ideation pipeline.
|
|
38
|
+
|
|
39
|
+
**If .plano/ideias/ already exists:** Asks user if they want to overwrite previous ideation or cancel.
|
|
40
|
+
|
|
41
|
+
**Pipeline:** 2 agents in parallel (analista-codigo + pesquisador-mercado) -> consolidador-ideias -> report
|
|
42
|
+
|
|
43
|
+
**Integration with roadmap:** After ideation completes, the user can optionally select ideas to convert into ROADMAP.md phases. Requires the `phase generate-from-report` CLI subcommand.
|
|
44
|
+
</context>
|
|
45
|
+
|
|
46
|
+
<process>
|
|
47
|
+
Execute the ideias workflow from @~/.claude/up/workflows/ideias.md end-to-end.
|
|
48
|
+
Preserve all workflow gates (init, stack detection, agent spawn, consolidation, report presentation).
|
|
49
|
+
</process>
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: up:melhorias
|
|
3
|
+
description: Auditoria completa do codebase com sugestoes priorizadas (UX, performance, modernidade)
|
|
4
|
+
argument-hint: ""
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Write
|
|
8
|
+
- Edit
|
|
9
|
+
- Glob
|
|
10
|
+
- Grep
|
|
11
|
+
- Bash
|
|
12
|
+
- Task
|
|
13
|
+
- AskUserQuestion
|
|
14
|
+
---
|
|
15
|
+
<objective>
|
|
16
|
+
Run a full codebase audit with 3 parallel specialized agents (UX, Performance, Modernidade), synthesize findings into a single prioritized report.
|
|
17
|
+
|
|
18
|
+
Standalone: works without /up:novo-projeto. Creates .plano/melhorias/ automatically if not exists.
|
|
19
|
+
Detects project stack (React/Vue/Next/Tailwind/etc.) and adjusts analysis heuristics.
|
|
20
|
+
|
|
21
|
+
Output: .plano/melhorias/RELATORIO.md with suggestions organized in effort x impact matrix (4 quadrants).
|
|
22
|
+
|
|
23
|
+
Optionally, after reviewing results, user can select suggestions to convert into executable phases in ROADMAP.md.
|
|
24
|
+
</objective>
|
|
25
|
+
|
|
26
|
+
<execution_context>
|
|
27
|
+
@~/.claude/up/workflows/melhorias.md
|
|
28
|
+
@~/.claude/up/references/ui-brand.md
|
|
29
|
+
</execution_context>
|
|
30
|
+
|
|
31
|
+
<context>
|
|
32
|
+
$ARGUMENTS
|
|
33
|
+
|
|
34
|
+
**Standalone mode:** This command does NOT require /up:novo-projeto or .plano/ to exist.
|
|
35
|
+
It creates .plano/melhorias/ automatically and runs the full audit pipeline.
|
|
36
|
+
|
|
37
|
+
**If .plano/melhorias/ already exists:** Asks user if they want to overwrite previous audit or cancel.
|
|
38
|
+
|
|
39
|
+
**Integration with roadmap:** After the audit completes, the user can optionally select suggestions to convert into ROADMAP.md phases. Requires the `phase generate-from-report` CLI subcommand.
|
|
40
|
+
</context>
|
|
41
|
+
|
|
42
|
+
<process>
|
|
43
|
+
Execute the melhorias workflow from @~/.claude/up/workflows/melhorias.md end-to-end.
|
|
44
|
+
Preserve all workflow gates (init, stack detection, agent spawn, synthesis, report presentation).
|
|
45
|
+
</process>
|