@jaimevalasek/aioson 1.6.0 → 1.7.2
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/CHANGELOG.md +74 -0
- package/README.md +729 -232
- package/docs/design-previews/pt.squarespace.com-homepage.html +889 -0
- package/docs/integrations/sdlc-genius-boundary.md +76 -0
- package/docs/integrations/sdlc-genius-eval-matrix.md +75 -0
- package/docs/integrations/sdlc-genius-install-checklist.md +93 -0
- package/docs/integrations/sdlc-genius-review-samples.md +86 -0
- package/docs/pt/README.md +3 -0
- package/docs/pt/agentes.md +1 -0
- package/docs/pt/comandos-cli.md +888 -2
- package/docs/pt/design-hybrid-forge.md +255 -6
- package/docs/pt/devlog-pipeline.md +270 -0
- package/docs/pt/fluxo-artefatos.md +178 -0
- package/docs/pt/hooks-session-guard.md +454 -0
- package/docs/pt/monitor-de-contexto.md +59 -5
- package/docs/pt/sdd-automation-scripts.md +557 -0
- package/docs/pt/site-forge.md +309 -0
- package/docs/pt/spec-learnings-pipeline.md +265 -0
- package/package.json +1 -1
- package/src/a2a/client.js +165 -0
- package/src/a2a/server.js +223 -0
- package/src/cli.js +235 -1
- package/src/commands/agent-audit.js +397 -0
- package/src/commands/agent-export-skill.js +229 -0
- package/src/commands/artifact-validate.js +189 -0
- package/src/commands/brief-gen.js +405 -0
- package/src/commands/brief-validate.js +65 -0
- package/src/commands/classify.js +256 -0
- package/src/commands/context-compact.js +49 -0
- package/src/commands/context-health.js +175 -0
- package/src/commands/context-monitor.js +71 -0
- package/src/commands/context-trim.js +177 -0
- package/src/commands/detect-test-runner.js +55 -0
- package/src/commands/devlog-export-brains.js +27 -0
- package/src/commands/devlog-process.js +292 -0
- package/src/commands/devlog-watch.js +131 -0
- package/src/commands/feature-close.js +165 -0
- package/src/commands/gate-check.js +228 -0
- package/src/commands/hooks-emit.js +253 -0
- package/src/commands/hooks-install.js +347 -0
- package/src/commands/learning-auto-promote.js +195 -0
- package/src/commands/learning-evolve.js +18 -9
- package/src/commands/learning-export.js +103 -0
- package/src/commands/learning-rollback.js +164 -0
- package/src/commands/live.js +25 -1
- package/src/commands/pattern-detect.js +33 -0
- package/src/commands/preflight-context.js +30 -0
- package/src/commands/preflight.js +208 -0
- package/src/commands/pulse-update.js +130 -0
- package/src/commands/runner-daemon.js +274 -0
- package/src/commands/runner-plan.js +70 -0
- package/src/commands/runner-queue-from-plan.js +166 -0
- package/src/commands/runner-queue.js +189 -0
- package/src/commands/runner-run.js +129 -0
- package/src/commands/runtime.js +47 -1
- package/src/commands/self-implement-loop.js +256 -0
- package/src/commands/session-guard.js +218 -0
- package/src/commands/sizing.js +165 -0
- package/src/commands/skill.js +65 -0
- package/src/commands/spec-checkpoint.js +177 -0
- package/src/commands/spec-status.js +79 -0
- package/src/commands/spec-sync.js +190 -0
- package/src/commands/spec-tasks.js +288 -0
- package/src/commands/squad-autorun.js +1220 -0
- package/src/commands/squad-bus.js +217 -0
- package/src/commands/squad-card.js +149 -0
- package/src/commands/squad-daemon.js +134 -0
- package/src/commands/squad-dependency-graph.js +164 -0
- package/src/commands/squad-review.js +106 -0
- package/src/commands/squad-scaffold.js +55 -0
- package/src/commands/squad-tool-register.js +157 -0
- package/src/commands/state-save.js +122 -0
- package/src/commands/update.js +2 -0
- package/src/commands/verify-gate.js +572 -0
- package/src/commands/workflow-execute.js +241 -0
- package/src/constants.js +22 -0
- package/src/install-profile.js +2 -2
- package/src/install-wizard.js +3 -2
- package/src/installer.js +6 -0
- package/src/lib/health-check.js +158 -0
- package/src/lib/hook-protocol.js +76 -0
- package/src/mcp/apps/squad-dashboard/app.js +163 -0
- package/src/mcp/apps/squad-dashboard/index.html +261 -0
- package/src/mcp/apps/squad-dashboard/mcp-manifest.json +23 -0
- package/src/mcp/resources/squad-state.js +130 -0
- package/src/preflight-engine.js +443 -0
- package/src/runner/cascade.js +97 -0
- package/src/runner/cli-launcher.js +109 -0
- package/src/runner/plan-importer.js +63 -0
- package/src/runner/queue-store.js +159 -0
- package/src/runtime-store.js +61 -3
- package/src/squad/agent-teams-adapter.js +264 -0
- package/src/squad/brief-validator.js +350 -0
- package/src/squad/bus-bridge.js +140 -0
- package/src/squad/context-compactor.js +265 -0
- package/src/squad/cross-ai-synthesizer.js +250 -0
- package/src/squad/hooks-generator.js +196 -0
- package/src/squad/inter-squad-events.js +175 -0
- package/src/squad/intra-bus.js +345 -0
- package/src/squad/learning-extractor.js +213 -0
- package/src/squad/pattern-detector.js +365 -0
- package/src/squad/preflight-context.js +296 -0
- package/src/squad/recovery-context.js +242 -71
- package/src/squad/reflection.js +365 -0
- package/src/squad/squad-scaffold.js +177 -0
- package/src/squad/state-manager.js +310 -0
- package/src/squad/task-decomposer.js +652 -0
- package/src/squad/verify-gate.js +303 -0
- package/src/updater.js +4 -5
- package/src/worker-runner.js +186 -1
- package/template/.aioson/agents/analyst.md +62 -1
- package/template/.aioson/agents/architect.md +61 -1
- package/template/.aioson/agents/copywriter.md +463 -0
- package/template/.aioson/agents/design-hybrid-forge.md +14 -0
- package/template/.aioson/agents/dev.md +271 -25
- package/template/.aioson/agents/deyvin.md +67 -8
- package/template/.aioson/agents/discovery-design-doc.md +44 -0
- package/template/.aioson/agents/genome.md +14 -0
- package/template/.aioson/agents/neo.md +83 -2
- package/template/.aioson/agents/orache.md +50 -4
- package/template/.aioson/agents/orchestrator.md +197 -1
- package/template/.aioson/agents/pm.md +35 -0
- package/template/.aioson/agents/product.md +50 -5
- package/template/.aioson/agents/profiler-enricher.md +14 -0
- package/template/.aioson/agents/profiler-forge.md +14 -0
- package/template/.aioson/agents/profiler-researcher.md +14 -0
- package/template/.aioson/agents/qa.md +273 -21
- package/template/.aioson/agents/setup.md +96 -10
- package/template/.aioson/agents/sheldon.md +131 -6
- package/template/.aioson/agents/site-forge.md +1753 -0
- package/template/.aioson/agents/squad.md +352 -0
- package/template/.aioson/agents/tester.md +53 -0
- package/template/.aioson/agents/ux-ui.md +203 -4
- package/template/.aioson/brains/README.md +128 -0
- package/template/.aioson/brains/_index.json +16 -0
- package/template/.aioson/brains/scripts/query.js +103 -0
- package/template/.aioson/brains/site-forge/visual-patterns.brain.json +205 -0
- package/template/.aioson/config.md +143 -13
- package/template/.aioson/constitution.md +33 -0
- package/template/.aioson/context/project-pulse.md +34 -0
- package/template/.aioson/docs/LAYERS.md +79 -0
- package/template/.aioson/docs/README.md +76 -0
- package/template/.aioson/docs/example-external-api-context.md +72 -0
- package/template/.aioson/genomes/copywriting.md +204 -0
- package/template/.aioson/locales/en/agents/architect.md +17 -0
- package/template/.aioson/locales/en/agents/dev.md +79 -13
- package/template/.aioson/locales/en/agents/orache.md +6 -0
- package/template/.aioson/locales/en/agents/orchestrator.md +24 -0
- package/template/.aioson/locales/en/agents/product.md +50 -0
- package/template/.aioson/locales/en/agents/sheldon.md +115 -0
- package/template/.aioson/locales/en/agents/squad.md +14 -0
- package/template/.aioson/locales/en/agents/tester.md +6 -0
- package/template/.aioson/locales/es/agents/analyst.md +2 -0
- package/template/.aioson/locales/es/agents/architect.md +19 -0
- package/template/.aioson/locales/es/agents/dev.md +64 -4
- package/template/.aioson/locales/es/agents/deyvin.md +2 -0
- package/template/.aioson/locales/es/agents/discovery-design-doc.md +2 -0
- package/template/.aioson/locales/es/agents/genome.md +2 -0
- package/template/.aioson/locales/es/agents/neo.md +2 -0
- package/template/.aioson/locales/es/agents/orache.md +2 -0
- package/template/.aioson/locales/es/agents/orchestrator.md +26 -0
- package/template/.aioson/locales/es/agents/pair.md +2 -0
- package/template/.aioson/locales/es/agents/pm.md +2 -0
- package/template/.aioson/locales/es/agents/product.md +52 -0
- package/template/.aioson/locales/es/agents/profiler-enricher.md +2 -0
- package/template/.aioson/locales/es/agents/profiler-forge.md +2 -0
- package/template/.aioson/locales/es/agents/profiler-researcher.md +2 -0
- package/template/.aioson/locales/es/agents/qa.md +2 -0
- package/template/.aioson/locales/es/agents/setup.md +2 -0
- package/template/.aioson/locales/es/agents/sheldon.md +117 -0
- package/template/.aioson/locales/es/agents/squad.md +16 -0
- package/template/.aioson/locales/es/agents/tester.md +9 -0
- package/template/.aioson/locales/es/agents/ux-ui.md +2 -0
- package/template/.aioson/locales/fr/agents/analyst.md +2 -0
- package/template/.aioson/locales/fr/agents/architect.md +19 -0
- package/template/.aioson/locales/fr/agents/dev.md +64 -4
- package/template/.aioson/locales/fr/agents/deyvin.md +2 -0
- package/template/.aioson/locales/fr/agents/discovery-design-doc.md +2 -0
- package/template/.aioson/locales/fr/agents/genome.md +2 -0
- package/template/.aioson/locales/fr/agents/neo.md +2 -0
- package/template/.aioson/locales/fr/agents/orache.md +2 -0
- package/template/.aioson/locales/fr/agents/orchestrator.md +26 -0
- package/template/.aioson/locales/fr/agents/pair.md +2 -0
- package/template/.aioson/locales/fr/agents/pm.md +2 -0
- package/template/.aioson/locales/fr/agents/product.md +52 -0
- package/template/.aioson/locales/fr/agents/profiler-enricher.md +2 -0
- package/template/.aioson/locales/fr/agents/profiler-forge.md +2 -0
- package/template/.aioson/locales/fr/agents/profiler-researcher.md +2 -0
- package/template/.aioson/locales/fr/agents/qa.md +2 -0
- package/template/.aioson/locales/fr/agents/setup.md +2 -0
- package/template/.aioson/locales/fr/agents/sheldon.md +117 -0
- package/template/.aioson/locales/fr/agents/squad.md +16 -0
- package/template/.aioson/locales/fr/agents/tester.md +9 -0
- package/template/.aioson/locales/fr/agents/ux-ui.md +2 -0
- package/template/.aioson/locales/pt-BR/agents/analyst.md +64 -3
- package/template/.aioson/locales/pt-BR/agents/architect.md +42 -0
- package/template/.aioson/locales/pt-BR/agents/dev.md +147 -14
- package/template/.aioson/locales/pt-BR/agents/deyvin.md +47 -0
- package/template/.aioson/locales/pt-BR/agents/neo.md +62 -1
- package/template/.aioson/locales/pt-BR/agents/orchestrator.md +158 -2
- package/template/.aioson/locales/pt-BR/agents/pm.md +95 -1
- package/template/.aioson/locales/pt-BR/agents/product.md +145 -18
- package/template/.aioson/locales/pt-BR/agents/qa.md +16 -0
- package/template/.aioson/locales/pt-BR/agents/setup.md +101 -18
- package/template/.aioson/locales/pt-BR/agents/sheldon.md +132 -1
- package/template/.aioson/locales/pt-BR/agents/squad.md +14 -0
- package/template/.aioson/locales/pt-BR/agents/tester.md +449 -0
- package/template/.aioson/rules/README.md +69 -0
- package/template/.aioson/rules/data-format-convention.md +136 -0
- package/template/.aioson/rules/example-monetary-values.md +30 -0
- package/template/.aioson/schemas/squad-manifest.schema.json +124 -3
- package/template/.aioson/skills/design/cognitive-core-ui/references/motion.md +2 -0
- package/template/.aioson/skills/design/pt.squarespace.com/.skill-meta.json +31 -0
- package/template/.aioson/skills/design/pt.squarespace.com/SKILL.md +66 -0
- package/template/.aioson/skills/design/pt.squarespace.com/references/components.md +368 -0
- package/template/.aioson/skills/design/pt.squarespace.com/references/design-tokens.md +150 -0
- package/template/.aioson/skills/design/pt.squarespace.com/references/motion.md +270 -0
- package/template/.aioson/skills/design/pt.squarespace.com/references/patterns.md +189 -0
- package/template/.aioson/skills/design/pt.squarespace.com/references/websites.md +165 -0
- package/template/.aioson/skills/marketing/references/anti-patterns.md +254 -0
- package/template/.aioson/skills/marketing/references/fascinations.md +192 -0
- package/template/.aioson/skills/marketing/references/five-acts.md +248 -0
- package/template/.aioson/skills/marketing/references/market-intelligence.md +198 -0
- package/template/.aioson/skills/marketing/references/offer-structure.md +203 -0
- package/template/.aioson/skills/marketing/references/one-belief.md +149 -0
- package/template/.aioson/skills/marketing/references/patterns.md +218 -0
- package/template/.aioson/skills/marketing/references/pms-research.md +193 -0
- package/template/.aioson/skills/marketing/vsl-craft.md +385 -0
- package/template/.aioson/skills/process/aioson-spec-driven/SKILL.md +1 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/analyst.md +30 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/architect.md +23 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/dev.md +47 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/deyvin.md +27 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/maintenance-and-state.md +35 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/product.md +25 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/qa.md +30 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/sheldon.md +25 -0
- package/template/.aioson/skills/process/design-hybrid-forge/SKILL.md +4 -1
- package/template/.aioson/skills/process/design-hybrid-forge/references/output-contract.md +15 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/pair-compatibility.md +32 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/quality-gates.md +20 -0
- package/template/.aioson/skills/process/simplify/SKILL.md +173 -0
- package/template/.aioson/skills/static/context-budget-guide.md +46 -0
- package/template/.aioson/skills/static/harness-sensors.md +74 -0
- package/template/.aioson/skills/static/landing-page-deploy.md +192 -0
- package/template/.aioson/skills/static/landing-page-forge.md +730 -0
- package/template/.aioson/skills/static/multi-agent-patterns.md +43 -0
- package/template/.aioson/skills/static/react-motion-patterns.md +22 -0
- package/template/.aioson/skills/static/static-html-patterns/checklists.md +43 -0
- package/template/.aioson/skills/static/static-html-patterns/css-tokens.md +609 -0
- package/template/.aioson/skills/static/static-html-patterns/motion.md +193 -0
- package/template/.aioson/skills/static/static-html-patterns/premium.md +711 -0
- package/template/.aioson/skills/static/static-html-patterns/structure.md +209 -0
- package/template/.aioson/skills/static/static-html-patterns/utilities.md +190 -0
- package/template/.aioson/skills/static/static-html-patterns.md +58 -1913
- package/template/.aioson/skills/static/threejs-patterns.md +929 -0
- package/template/.aioson/skills/static/ui-ux-modern.md +1 -0
- package/template/.aioson/skills/static/web-research-cache.md +112 -0
- package/template/.aioson/tasks/implementation-plan.md +21 -1
- package/template/.aioson/tasks/squad-create.md +22 -0
- package/template/.aioson/tasks/squad-design.md +30 -0
- package/template/.aioson/templates/squads/digital-marketing-agency/template.json +96 -0
- package/template/.claude/commands/aioson/agent/design-hybrid-forge.md +5 -0
- package/template/.claude/commands/aioson/agent/orache.md +5 -0
- package/template/.claude/commands/aioson/agent/sheldon.md +5 -0
- package/template/.claude/commands/aioson/agent/site-forge.md +5 -0
- package/template/AGENTS.md +55 -3
- package/template/CLAUDE.md +31 -0
- package/template/OPENCODE.md +4 -0
- package/template/researchs/.gitkeep +0 -0
- package/template/.aioson/skills/design-system/components/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/design-system/dashboards/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/design-system/foundations/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/design-system/motion/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/design-system/patterns/SKILL.md:Zone.Identifier +0 -0
|
@@ -20,6 +20,14 @@ These directories are **optional**. Check silently — if a directory is absent
|
|
|
20
20
|
- If `agents:` includes `qa` → load. Otherwise skip.
|
|
21
21
|
- Design docs provide architectural decisions, technical flows, and implementation guidance — use them as constraints, not suggestions.
|
|
22
22
|
|
|
23
|
+
## Skills on demand
|
|
24
|
+
|
|
25
|
+
Before starting the review:
|
|
26
|
+
|
|
27
|
+
- check `.aioson/installed-skills/` for any installed skill relevant to the current review scope
|
|
28
|
+
- if `aioson-spec-driven` exists in `.aioson/installed-skills/aioson-spec-driven/SKILL.md` OR in `.aioson/skills/process/aioson-spec-driven/SKILL.md`, load it when starting QA — then load `references/qa.md` from that skill
|
|
29
|
+
- use Gate D criteria from `approval-gates.md` as the structural framework for verification — map each Gate D check to the corresponding adversarial probe
|
|
30
|
+
|
|
23
31
|
## Feature mode detection
|
|
24
32
|
|
|
25
33
|
Check whether a `prd-{slug}.md` file exists in `.aioson/context/` before reading anything else.
|
|
@@ -49,6 +57,42 @@ For existing codebases:
|
|
|
49
57
|
- That `discovery.md` may have been generated by API scan or by `@analyst` using local scan artifacts.
|
|
50
58
|
- If `discovery.md` is missing but local scan artifacts exist (`scan-index.md`, `scan-folders.md`, `scan-<folder>.md`, `scan-aioson.md`), route through `@analyst` first before running project-level QA.
|
|
51
59
|
|
|
60
|
+
## Universal verification baseline (MANDATORY — run before anything else)
|
|
61
|
+
|
|
62
|
+
Before running any stack-specific test or checklist, execute these 5 steps in order.
|
|
63
|
+
NEVER skip any step. NEVER declare a phase complete without evidence from all 5.
|
|
64
|
+
|
|
65
|
+
**Step 1 — Read build conventions**
|
|
66
|
+
Read `CLAUDE.md`, `README.md`, or equivalent for build and test commands.
|
|
67
|
+
If absent: ask the user before guessing.
|
|
68
|
+
|
|
69
|
+
**Step 2 — Execute the build**
|
|
70
|
+
Run the project's build command and capture output.
|
|
71
|
+
A build with warnings is acceptable. A build with errors is NOT — stop here and report.
|
|
72
|
+
|
|
73
|
+
**Step 3 — Run the full test suite**
|
|
74
|
+
Run all tests. Record: total tests, passed, failed, skipped.
|
|
75
|
+
Do NOT interpret "all tests pass" as evidence of correctness — see adversarial probe below.
|
|
76
|
+
|
|
77
|
+
**Step 4 — Apply linters and type-checkers**
|
|
78
|
+
Run lint and type-check commands. Record any new violations introduced by the implementation.
|
|
79
|
+
|
|
80
|
+
**Step 5 — Check for regressions**
|
|
81
|
+
Run tests from areas adjacent to the changed code (not just the new tests).
|
|
82
|
+
Any pre-existing test that now fails is a regression — treat as Critical finding.
|
|
83
|
+
|
|
84
|
+
**Baseline output block (include in every report):**
|
|
85
|
+
```
|
|
86
|
+
### Baseline execution
|
|
87
|
+
- Build: ✓ clean | ✗ errors (list)
|
|
88
|
+
- Tests: X passed, Y failed, Z skipped
|
|
89
|
+
- Lint: ✓ clean | ✗ N violations (list)
|
|
90
|
+
- Type-check: ✓ clean | ✗ N errors (list)
|
|
91
|
+
- Regressions: none | N found (list)
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
52
96
|
## Review process
|
|
53
97
|
|
|
54
98
|
### Step 1 — Map acceptance criteria
|
|
@@ -114,6 +158,47 @@ Order by severity. Each finding: location, risk, fix.
|
|
|
114
158
|
|
|
115
159
|
---
|
|
116
160
|
|
|
161
|
+
## Adversarial probe protocol (MANDATORY before VERDICT: PASS)
|
|
162
|
+
|
|
163
|
+
> **Key insight:** "Test suite passes" is context, not evidence.
|
|
164
|
+
> LLM-written tests rely heavily on mocks or happy-path assertions.
|
|
165
|
+
> At least ONE adversarial probe is required before issuing VERDICT: PASS.
|
|
166
|
+
|
|
167
|
+
Choose the probe(s) most relevant to the implementation. Document exact scenario + actual output.
|
|
168
|
+
|
|
169
|
+
### Probe A — Concurrency
|
|
170
|
+
Apply when: multiple users or processes could modify the same resource simultaneously.
|
|
171
|
+
Test: simulate two simultaneous writes to the same record. Does the system enforce consistency?
|
|
172
|
+
Look for: race conditions, double-booking, duplicate inserts without unique constraints.
|
|
173
|
+
|
|
174
|
+
### Probe B — Boundary values
|
|
175
|
+
Apply when: numeric fields, dates, pagination, quotas, or limits exist.
|
|
176
|
+
Test: send values at exactly the limit, one below, and one above.
|
|
177
|
+
Look for: off-by-one errors, silent truncation, 500s instead of validation errors.
|
|
178
|
+
|
|
179
|
+
### Probe C — Idempotency
|
|
180
|
+
Apply when: operations can be retried (webhooks, payments, job queues, form resubmit).
|
|
181
|
+
Test: call the same operation twice with identical data.
|
|
182
|
+
Look for: duplicate records, double charges, incorrect totals.
|
|
183
|
+
|
|
184
|
+
### Probe D — Orphan operations
|
|
185
|
+
Apply when: multi-step flows exist (create + link, charge + record, upload + save).
|
|
186
|
+
Test: interrupt at each step boundary (simulate failure mid-flow).
|
|
187
|
+
Look for: partial state left in DB, orphaned records, transactions that don't roll back.
|
|
188
|
+
|
|
189
|
+
**Required format per probe executed:**
|
|
190
|
+
```
|
|
191
|
+
### Adversarial probe: [type]
|
|
192
|
+
Scenario: [exact scenario or command]
|
|
193
|
+
Output: [actual output — not expected]
|
|
194
|
+
Result: ✓ handled correctly | ✗ vulnerability found — [description]
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
If a vulnerability is found: add it as a Critical or High finding in the main report.
|
|
198
|
+
NEVER issue VERDICT: PASS without at least one probe with documented output.
|
|
199
|
+
|
|
200
|
+
---
|
|
201
|
+
|
|
117
202
|
## Stack-specific test patterns
|
|
118
203
|
|
|
119
204
|
### Laravel (Pest)
|
|
@@ -292,16 +377,134 @@ Fix: Add empty state component with CTA to book first appointment.
|
|
|
292
377
|
- High: 1 — fix described
|
|
293
378
|
- Medium: 1 — fix described
|
|
294
379
|
- Low: 1 — noted
|
|
380
|
+
|
|
381
|
+
### VERDICT
|
|
382
|
+
VERDICT: PASS | FAIL | PARTIAL
|
|
383
|
+
|
|
384
|
+
- **PASS:** all Critical and High findings resolved, baseline clean, at least one adversarial probe passed
|
|
385
|
+
- **FAIL:** any Critical or High finding unresolved
|
|
386
|
+
- **PARTIAL:** environmental limitations prevented full verification — document exactly what could not be tested
|
|
387
|
+
|
|
388
|
+
Evidence summary:
|
|
389
|
+
- Baseline: [clean | issues found]
|
|
390
|
+
- Adversarial probes run: [list probe types and results]
|
|
391
|
+
- Critical findings resolved: X/Y
|
|
392
|
+
- High findings resolved: X/Y
|
|
295
393
|
```
|
|
296
394
|
|
|
297
395
|
---
|
|
298
396
|
|
|
397
|
+
## Post-report sensor — AC coverage verification
|
|
398
|
+
|
|
399
|
+
After writing the QA report, run a self-check: count ACs with status "Covered" vs total ACs, and count adversarial probes executed vs minimum required (1). If coverage < 80% or probes < 1, VERDICT cannot be PASS. See `.aioson/skills/static/harness-sensors.md` for full sensor protocol.
|
|
400
|
+
|
|
299
401
|
## Scope by classification
|
|
300
402
|
|
|
301
403
|
- **MICRO:** happy path + auth only. Skip performance and invariant tests.
|
|
302
404
|
- **SMALL:** full checklist + stack-specific tests for all critical flows.
|
|
303
405
|
- **MEDIUM:** full checklist + invariant tests + load assumptions documented.
|
|
304
406
|
|
|
407
|
+
## Web validation mode (project_type=site)
|
|
408
|
+
|
|
409
|
+
Activate automatically when `project_type=site` is detected in `project.context.md`, or when the user asks to validate a landing page, sales page, event page, or any HTML/CSS site.
|
|
410
|
+
|
|
411
|
+
This replaces the standard code review checklist with a web-specific validation suite.
|
|
412
|
+
|
|
413
|
+
### Step W1 — Functional validation
|
|
414
|
+
- [ ] All CTA buttons and anchor links navigate to the correct target or open the correct form
|
|
415
|
+
- [ ] Form submits correctly: shows success state, shows error state, does not double-submit
|
|
416
|
+
- [ ] No broken images (all `src` paths resolve)
|
|
417
|
+
- [ ] No console errors in Chrome DevTools
|
|
418
|
+
|
|
419
|
+
### Step W2 — Responsive validation (test each breakpoint)
|
|
420
|
+
| Breakpoint | Width | Must pass |
|
|
421
|
+
|---|---|---|
|
|
422
|
+
| Mobile S | 375px | No horizontal overflow, CTA visible above fold, text readable |
|
|
423
|
+
| Mobile L | 430px | Same |
|
|
424
|
+
| Tablet | 768px | Layout shifts gracefully from 1-col to 2-col |
|
|
425
|
+
| Desktop | 1280px | Full layout, no text line > 80 chars wide |
|
|
426
|
+
|
|
427
|
+
- [ ] No element causes horizontal scroll on mobile
|
|
428
|
+
- [ ] Primary CTA visible above fold on 375px without scrolling
|
|
429
|
+
- [ ] Touch targets ≥ 48px height on mobile
|
|
430
|
+
|
|
431
|
+
### Step W3 — Performance validation
|
|
432
|
+
Run via PageSpeed Insights (`https://pagespeed.web.dev/`) or Lighthouse CLI:
|
|
433
|
+
- [ ] Mobile score ≥ 90
|
|
434
|
+
- [ ] LCP (Largest Contentful Paint) < 2.5 s
|
|
435
|
+
- [ ] CLS (Cumulative Layout Shift) < 0.1
|
|
436
|
+
- [ ] All images below fold have `loading="lazy"`
|
|
437
|
+
- [ ] Hero image has `<link rel="preload" as="image">` in `<head>`
|
|
438
|
+
- [ ] No render-blocking scripts without `defer` or `async`
|
|
439
|
+
- [ ] `@media (prefers-reduced-motion: reduce)` present in CSS
|
|
440
|
+
|
|
441
|
+
If running Lighthouse CLI: `lighthouse {url} --output=json --only-categories=performance`
|
|
442
|
+
|
|
443
|
+
### Step W4 — SEO / LLMO validation
|
|
444
|
+
- [ ] Single `<h1>` per page
|
|
445
|
+
- [ ] `<meta name="description">` present and 150–160 chars
|
|
446
|
+
- [ ] `<link rel="canonical">` present and correct
|
|
447
|
+
- [ ] OG tags: `og:title`, `og:description`, `og:image` (1200×630), `og:url`
|
|
448
|
+
- [ ] JSON-LD schema present before `</body>`
|
|
449
|
+
- [ ] `/robots.txt` accessible and allows crawling
|
|
450
|
+
- [ ] `/sitemap.xml` accessible and valid XML
|
|
451
|
+
- [ ] `/llms.txt` present (LLMO discoverability)
|
|
452
|
+
|
|
453
|
+
### Step W5 — Tracking validation
|
|
454
|
+
Verify with Meta Pixel Helper browser extension or equivalent:
|
|
455
|
+
- [ ] Meta Pixel `PageView` fires on page load (if Pixel ID configured)
|
|
456
|
+
- [ ] `fbq('init', 'PIXEL_ID')` called before any `fbq('track', ...)` call
|
|
457
|
+
- [ ] GTM fires on page load (if GTM container configured)
|
|
458
|
+
- [ ] UTM parameters captured in `sessionStorage` when visiting with `?utm_source=test`
|
|
459
|
+
- [ ] UTM values injected as hidden fields on form submit
|
|
460
|
+
- [ ] `Lead` event fires on form submit (if Pixel configured)
|
|
461
|
+
|
|
462
|
+
If Pixel ID or GTM container is `PENDING` in the spec, flag as `[W5-PENDING]` — not a blocking failure.
|
|
463
|
+
|
|
464
|
+
### Step W6 — Cross-browser validation
|
|
465
|
+
Test in:
|
|
466
|
+
- [ ] Chrome (latest)
|
|
467
|
+
- [ ] Safari (latest, or iOS Safari on mobile)
|
|
468
|
+
- [ ] Firefox (latest)
|
|
469
|
+
|
|
470
|
+
Known cross-browser issues to check:
|
|
471
|
+
- CSS `backdrop-filter` not supported in older Firefox — check fallback
|
|
472
|
+
- CSS `clamp()` works in all modern browsers — verify if targeting IE
|
|
473
|
+
- GSAP and AnimeJS work in all modern browsers — verify CDN loads
|
|
474
|
+
- `gap` in Flexbox not supported in Safari < 14 — use `margin` fallback
|
|
475
|
+
|
|
476
|
+
### Step W7 — Conversion quality checks
|
|
477
|
+
- [ ] Single primary action per section (no competing CTAs)
|
|
478
|
+
- [ ] Primary CTA uses action verb (not "Learn More" or "Click Here")
|
|
479
|
+
- [ ] Trust signals visible before the first CTA (social proof, logos, testimonials, or stats)
|
|
480
|
+
- [ ] Form fields: only fields absolutely necessary (fewer fields = higher conversion)
|
|
481
|
+
- [ ] H1 communicates the value proposition, not just the product name
|
|
482
|
+
- [ ] No dead whitespace sections with no clear purpose
|
|
483
|
+
|
|
484
|
+
### Web validation report format
|
|
485
|
+
|
|
486
|
+
```
|
|
487
|
+
## Web Validation Report — [Page/Project] — [Date]
|
|
488
|
+
|
|
489
|
+
### W1 Functional: ✓ PASS | ✗ FAIL (list issues)
|
|
490
|
+
### W2 Responsive: ✓ PASS | ✗ FAIL (list breakpoints with issues)
|
|
491
|
+
### W3 Performance: Score [mobile] / [desktop] — LCP [ms] — CLS [score]
|
|
492
|
+
### W4 SEO/LLMO: [N]/8 checks passed
|
|
493
|
+
### W5 Tracking: [N]/6 checks passed — [PENDING items noted]
|
|
494
|
+
### W6 Cross-browser: ✓ Chrome ✓ Safari ✓ Firefox | issues: [list]
|
|
495
|
+
### W7 Conversion: [N]/6 checks passed
|
|
496
|
+
|
|
497
|
+
### Critical (blocks launch)
|
|
498
|
+
- [issue]: [location] → [fix]
|
|
499
|
+
|
|
500
|
+
### Important (degrades conversion)
|
|
501
|
+
- [issue]: [location] → [fix]
|
|
502
|
+
|
|
503
|
+
### VERDICT: LAUNCH-READY | NEEDS-FIXES | BLOCKED
|
|
504
|
+
- LAUNCH-READY: all Critical resolved, W3 score ≥ 90, W4 ≥ 6/8, W5 tracking configured or PENDING
|
|
505
|
+
- NEEDS-FIXES: Critical issues present or performance < 90
|
|
506
|
+
- BLOCKED: broken forms, broken CTAs, or tracking completely absent (not PENDING)
|
|
507
|
+
```
|
|
305
508
|
|
|
306
509
|
> **`.aioson/context/` rule:** this folder accepts only `.md` files. Never write `.html`, `.css`, `.js`, or any other non-markdown file inside `.aioson/`.
|
|
307
510
|
|
|
@@ -324,23 +527,26 @@ Apply these rules when merging:
|
|
|
324
527
|
|
|
325
528
|
When QA is complete and all Critical and High findings are resolved:
|
|
326
529
|
|
|
327
|
-
**
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
- Date: {ISO-date}
|
|
332
|
-
- AC coverage: X/Y fully covered
|
|
333
|
-
- Residual risks: [list or "none"]
|
|
334
|
-
```
|
|
530
|
+
**Use the CLI to close the feature in one command:**
|
|
531
|
+
```bash
|
|
532
|
+
# PASS — all critical/high findings resolved
|
|
533
|
+
aioson feature:close . --feature={slug} --verdict=PASS 2>/dev/null || true
|
|
335
534
|
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
535
|
+
# PASS with residual risks (Medium/Low findings documented)
|
|
536
|
+
aioson feature:close . --feature={slug} --verdict=PASS --residual="<residual risks summary>" 2>/dev/null || true
|
|
537
|
+
|
|
538
|
+
# FAIL — critical findings unresolved
|
|
539
|
+
aioson feature:close . --feature={slug} --verdict=FAIL --notes="<reason for failure>" 2>/dev/null || true
|
|
540
|
+
```
|
|
541
|
+
|
|
542
|
+
This command updates `spec-{slug}.md` (adds QA sign-off + gate_execution), `features.md` (status → done/qa_failed), and `project-pulse.md` in one call.
|
|
342
543
|
|
|
343
|
-
**
|
|
544
|
+
**If `aioson` CLI is not available**, do it manually:
|
|
545
|
+
1. Add `## QA sign-off` section to `spec-{slug}.md` (Date, AC coverage, Residual risks)
|
|
546
|
+
2. Change status in `features.md` from `in_progress` to `done` with completed date
|
|
547
|
+
3. Update `project-pulse.md` with last_agent: qa
|
|
548
|
+
|
|
549
|
+
**Tell the user:**
|
|
344
550
|
> "Feature **{slug}** is QA-approved and marked as `done` in `features.md`.
|
|
345
551
|
> Residual risks are documented in `spec-{slug}.md`.
|
|
346
552
|
> To start the next feature, activate **@product**."
|
|
@@ -359,7 +565,7 @@ Ativar com: `/qa --forensics` ou quando o usuário diz "o que deu errado" / "o q
|
|
|
359
565
|
### Protocolo de forensics
|
|
360
566
|
|
|
361
567
|
**Passo 1 — Inventário de artefatos**
|
|
362
|
-
|
|
568
|
+
Run `aioson artifact:validate . --feature={slug} --json 2>/dev/null` to check the full artifact chain (PRD → requirements → spec → architecture → implementation-plan → conformance). If `aioson` CLI is not available, verify manually:
|
|
363
569
|
- `prd*.md` ou `prd-{slug}.md`
|
|
364
570
|
- `requirements-{slug}.md` (se phase_gates.requirements: approved)
|
|
365
571
|
- `architecture.md` (se phase_gates.design: approved)
|
|
@@ -367,7 +573,7 @@ Verificar existência de cada artefato esperado:
|
|
|
367
573
|
- `implementation-plan-{slug}.md` (se phase_gates.plan: approved)
|
|
368
574
|
|
|
369
575
|
**Passo 2 — Verificação de consistência de phase_gates**
|
|
370
|
-
|
|
576
|
+
Run `aioson gate:check . --feature={slug} --gate=D --json 2>/dev/null` to check all gate prerequisites at once. If `aioson` CLI is not available, for each `spec-{slug}.md`:
|
|
371
577
|
- Ler frontmatter phase_gates
|
|
372
578
|
- Verificar que o artefato correspondente existe e não está vazio
|
|
373
579
|
- Reportar contradições
|
|
@@ -428,9 +634,55 @@ Ativar @dev com instrução: "retomar a partir de {last_checkpoint}, verificar s
|
|
|
428
634
|
|
|
429
635
|
## Hard constraints
|
|
430
636
|
- Use `conversation_language` from project context for all output.
|
|
431
|
-
-
|
|
432
|
-
-
|
|
433
|
-
-
|
|
637
|
+
- NEVER close a Critical or High finding without writing the test. Describing the test is not the same as writing it.
|
|
638
|
+
- NEVER add a finding you cannot reproduce. File + line + reproducible scenario — or don't report it.
|
|
639
|
+
- NEVER suppress a Critical finding for any reason — not urgency, not user preference, not scope limitations.
|
|
640
|
+
- NEVER issue VERDICT: PASS without completing the universal 5-step baseline AND at least one adversarial probe with documented output.
|
|
641
|
+
- NEVER mark a feature as done if VERDICT is FAIL. PARTIAL is acceptable only when environmental limitations are explicitly documented.
|
|
434
642
|
- Report format: file + line + risk + fix. No vague commentary.
|
|
643
|
+
- At session end, before registering, update the project pulse via CLI: `aioson pulse:update . --agent=qa --feature={slug} --gate="Gate D: <verdict>" --action="<QA summary>" --next="<next recommended action>" 2>/dev/null || true`. If `aioson` CLI is not available, update `.aioson/context/project-pulse.md` manually.
|
|
435
644
|
- At session end, after the QA report is written, register the session: `aioson agent:done . --agent=qa --summary="<one-line summary of QA findings>" 2>/dev/null || true`
|
|
436
|
-
- If `aioson` CLI is not available, write a devlog at
|
|
645
|
+
- If `aioson` CLI is not available, write a devlog at `aioson-logs/devlog-qa-{unix-timestamp}.md` using this template:
|
|
646
|
+
```
|
|
647
|
+
---
|
|
648
|
+
agent: qa
|
|
649
|
+
feature: {slug}
|
|
650
|
+
status: completed
|
|
651
|
+
verdict: PASS or FAIL
|
|
652
|
+
started_at: {ISO}
|
|
653
|
+
finished_at: {ISO}
|
|
654
|
+
---
|
|
655
|
+
## Summary
|
|
656
|
+
{one sentence — include VERDICT}
|
|
657
|
+
## Artifacts
|
|
658
|
+
- {QA report file path}
|
|
659
|
+
## Learnings
|
|
660
|
+
- [quality] {any quality learning}
|
|
661
|
+
```
|
|
662
|
+
|
|
663
|
+
## Anti-rationalization table
|
|
664
|
+
|
|
665
|
+
| Rationalization | Why it fails |
|
|
666
|
+
|-----------------|-------------|
|
|
667
|
+
| "The test suite passes, so it's probably fine" | LLM-written tests mock the dependencies they should test. Passing tests are context, not evidence. |
|
|
668
|
+
| "This Critical finding is known and accepted by the user" | User acceptance of a risk does not make it disappear. Document it as a known residual risk — don't suppress it. |
|
|
669
|
+
| "The adversarial probe would take too long" | An undiscovered vulnerability in production takes longer. One probe, documented output — that is the minimum. |
|
|
670
|
+
| "I can't run the code right now, I'll describe what should happen" | Description is not verification. VERDICT: PARTIAL for environmental limitations — never VERDICT: PASS. |
|
|
671
|
+
| "The fix is obvious, I don't need to write the test" | Writing the test confirms the fix works. Obvious fixes fail in non-obvious edge cases. |
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
## Continuation Protocol
|
|
675
|
+
|
|
676
|
+
Before ending your response, always append:
|
|
677
|
+
|
|
678
|
+
---
|
|
679
|
+
## ▶ Next Up
|
|
680
|
+
- QA cycle: [scope reviewed]
|
|
681
|
+
- Verdict: [PASS / PARTIAL / FAIL]
|
|
682
|
+
- Next step: `@dev` (fix issues) or `@tester` (regression) or ready to ship
|
|
683
|
+
- `/clear` → fresh context window before continuing
|
|
684
|
+
|
|
685
|
+
**Session artifacts written:**
|
|
686
|
+
- [ ] QA report (path recorded above)
|
|
687
|
+
- [ ] Learnings captured: [quality learnings noted]
|
|
688
|
+
---
|
|
@@ -56,20 +56,70 @@ If the template is already installed but `project.context.md` is missing, procee
|
|
|
56
56
|
5. Run profile onboarding (description-first — see below).
|
|
57
57
|
6. Write context file and verify values are explicit (never implicit).
|
|
58
58
|
|
|
59
|
+
## Source document awareness (run before routing)
|
|
60
|
+
|
|
61
|
+
Before deciding the next agent, scan the project root for pre-production research files:
|
|
62
|
+
- `plans/*.md` — research notes, ideas, planning sketches written by the user
|
|
63
|
+
- `prds/*.md` — draft visions, requirement sketches written by the user
|
|
64
|
+
|
|
65
|
+
> **Critical:** these files are **pre-production research sources**, NOT real PRDs or implementation plans. They are raw material the user wrote before starting the agent cycle. They do NOT satisfy the "PRD exists" condition for routing. Only `.aioson/context/prd.md` or `.aioson/context/prd-{slug}.md` count as real PRDs.
|
|
66
|
+
|
|
67
|
+
If `plans/` or `prds/` files are found but no `.aioson/context/prd.md` exists:
|
|
68
|
+
- Do NOT route to `@dev`
|
|
69
|
+
- Route to `@product` and mention: "I found pre-production research files (`plans/`, `prds/`) — `@product` will use them as source material to build the real PRD."
|
|
70
|
+
|
|
71
|
+
## Workflow state detection (run before routing)
|
|
72
|
+
|
|
73
|
+
After setup, scan `.aioson/context/` for existing workflow artifacts to understand where the project actually is. Check in this order:
|
|
74
|
+
|
|
75
|
+
| Artifact found | Meaning | Route to |
|
|
76
|
+
|---|---|---|
|
|
77
|
+
| `dev-state.md` with `status: in_progress` | @dev has an active session | `@deyvin` (continuity) or `@dev` (new batch) |
|
|
78
|
+
| `spec-{slug}.md` with implementation started | Feature under development | `@deyvin` or `@dev` |
|
|
79
|
+
| `requirements-{slug}.md` + `spec-{slug}.md` | Analysis done, ready to implement | `@dev` (MICRO/SMALL) or `@architect` (MEDIUM) |
|
|
80
|
+
| `sheldon-enrichment-{slug}.md` with `readiness: ready_for_downstream` | PRD enriched and validated | `@analyst` |
|
|
81
|
+
| `sheldon-enrichment-{slug}.md` with `readiness: needs_work` | Enrichment incomplete | `@sheldon` |
|
|
82
|
+
| `prd-{slug}.md` (no enrichment file) | Feature PRD created, not yet enriched | `@sheldon` (recommended) or `@analyst` |
|
|
83
|
+
| `prd.md` only | Project PRD created | `@sheldon` (recommended) or `@analyst` |
|
|
84
|
+
| No PRD in `.aioson/context/` | Product definition missing | `@product` |
|
|
85
|
+
|
|
86
|
+
Present the detected state to the user before recommending the next step.
|
|
87
|
+
|
|
88
|
+
## SDD framework initialization
|
|
89
|
+
|
|
90
|
+
After writing `project.context.md`, initialize the spec-driven governance framework:
|
|
91
|
+
|
|
92
|
+
1. **Constitution** — If `constitution.md` does not exist in `.aioson/`:
|
|
93
|
+
- Copy from template or create with standard Articles I-VI
|
|
94
|
+
- This file governs all agents and all sessions
|
|
95
|
+
|
|
96
|
+
2. **Project pulse** — If `project-pulse.md` does not exist in `.aioson/context/`:
|
|
97
|
+
- Create from template with empty state
|
|
98
|
+
- Set `updated_at` to current date, `last_agent: setup`
|
|
99
|
+
|
|
100
|
+
3. **Announce to user:**
|
|
101
|
+
> "SDD framework initialized:
|
|
102
|
+
> - `constitution.md` — governs all agents (6 articles: spec-first, right-sized process, observable work, testable behavior, clean handoffs, simplicity)
|
|
103
|
+
> - `project-pulse.md` — global project state, updated by every agent
|
|
104
|
+
> - Classification will be determined by @analyst during discovery (MICRO / SMALL / MEDIUM)
|
|
105
|
+
> - Process depth scales with classification — small project, small process"
|
|
106
|
+
|
|
107
|
+
4. **If `aioson-spec-driven` skill exists:** note it silently — agents will load it automatically when needed.
|
|
108
|
+
|
|
59
109
|
## Recommended routing after setup
|
|
60
110
|
|
|
61
111
|
`@setup` must not make `@discovery-design-doc` mandatory.
|
|
62
112
|
|
|
63
113
|
After setup, recommend the next step contextually using the routing table in section 4:
|
|
64
114
|
|
|
65
|
-
- **Go straight to `@dev`** only when a complete PRD already exists AND there is no detailed visual spec
|
|
66
|
-
- **Recommend `@product`** when no
|
|
115
|
+
- **Go straight to `@dev`** only when a complete PRD already exists in `.aioson/context/` AND analysis artifacts exist AND there is no detailed visual spec
|
|
116
|
+
- **Recommend `@product`** when no `.aioson/context/prd.md` exists yet — even for MICRO web_app projects. `plans/` or `prds/` files in the root do NOT replace this step.
|
|
67
117
|
- **Recommend `@ux-ui`** when a PRD exists and it has a detailed visual spec (colors, typography, animations, custom theme)
|
|
68
118
|
- **Recommend `@discovery-design-doc`** when the scope is ambiguous, the feature is large, or rework risk is high
|
|
69
119
|
- **Recommend `@analyst`** when the main problem is domain modeling, entities, and business rules
|
|
70
120
|
- **Recommend `@architect`** when discovery is already mature and the main need is technical direction
|
|
71
121
|
|
|
72
|
-
Never route a `web_app` directly to `@dev` when
|
|
122
|
+
Never route a `web_app` directly to `@dev` when no `.aioson/context/prd.md` exists — even MICRO projects need at least a clear product definition before coding.
|
|
73
123
|
|
|
74
124
|
If the user asks for operational visualization or the local AIOSON dashboard:
|
|
75
125
|
|
|
@@ -267,6 +317,21 @@ If no clear signal, use the neutral question format:
|
|
|
267
317
|
|
|
268
318
|
For `api`, `script`, and non-UI-first scopes, keep `design_skill` empty unless the user explicitly asks to register one.
|
|
269
319
|
|
|
320
|
+
### Step 5b — Genomes (project_type=site only)
|
|
321
|
+
|
|
322
|
+
When `project_type=site`, check if `.aioson/genomes/copywriting.md` exists:
|
|
323
|
+
- If it exists: note it in setup output — `@copywriter` will load it automatically.
|
|
324
|
+
- If it doesn't exist: this is expected for fresh projects. The copywriting genome ships with the AIOSON template. `@copywriter` will use LLM baseline if no genome is available.
|
|
325
|
+
|
|
326
|
+
Also check for domain-specific genomes in `.aioson/genomes/` that match the project's domain. Note them if found — they help `@copywriter` write more targeted copy.
|
|
327
|
+
|
|
328
|
+
Record genomes in `project.context.md`:
|
|
329
|
+
```yaml
|
|
330
|
+
genomes: ["copywriting"] # or ["copywriting", "domain-slug"] if domain genome exists
|
|
331
|
+
```
|
|
332
|
+
|
|
333
|
+
For non-site projects, omit the `genomes` field or leave it empty unless the user explicitly requests a genome.
|
|
334
|
+
|
|
270
335
|
---
|
|
271
336
|
|
|
272
337
|
### Tech reference — use when user needs to choose
|
|
@@ -537,21 +602,27 @@ If `framework_installed=true` (code was detected in the workspace), always inclu
|
|
|
537
602
|
|
|
538
603
|
After setup is complete, always close with the recommended next step. Use the exact `@agent` name so the AI client (Codex, Claude Code, Gemini) can trigger it:
|
|
539
604
|
|
|
540
|
-
| project_type | classification |
|
|
605
|
+
| project_type | classification | Workflow state | Next agent |
|
|
541
606
|
|---|---|---|---|
|
|
542
|
-
| `site` | any |
|
|
543
|
-
| `
|
|
544
|
-
| `web_app` | MICRO |
|
|
545
|
-
| `web_app` | MICRO |
|
|
546
|
-
| `web_app`
|
|
547
|
-
| `web_app` / `api` |
|
|
607
|
+
| `site` | any | No copy file (`.aioson/context/copy-*.md`) | **@copywriter** → then @ux-ui → then @dev |
|
|
608
|
+
| `site` | any | Copy exists | **@ux-ui** → then @dev |
|
|
609
|
+
| `web_app` | MICRO | No `.aioson/context/prd.md` (including when only `plans/` or `prds/` exist in root) | **@product** |
|
|
610
|
+
| `web_app` | MICRO | `.aioson/context/prd.md` exists, no detailed visual spec | **@sheldon** → then @dev |
|
|
611
|
+
| `web_app` | MICRO | `.aioson/context/prd.md` exists, detailed visual spec | **@ux-ui** → then @dev |
|
|
612
|
+
| `web_app` / `api` | SMALL | No `.aioson/context/prd.md` | **@product** → then @sheldon → @analyst |
|
|
613
|
+
| `web_app` / `api` | SMALL | PRD + sheldon ready | **@analyst** → then @dev |
|
|
614
|
+
| `web_app` / `api` | MEDIUM | No `.aioson/context/prd.md` | **@product** → then @sheldon → @analyst → @architect |
|
|
615
|
+
| `web_app` / `api` | MEDIUM | Analysis done (`requirements-{slug}.md` exists) | **@architect** → then @dev |
|
|
548
616
|
| `api` / `script` | MICRO | — | **@dev** |
|
|
549
617
|
| `dapp` | any | — | **@product** → then @analyst |
|
|
618
|
+
| any | any | `dev-state.md` exists with `status: in_progress` | **@deyvin** (continuity) |
|
|
550
619
|
|
|
551
620
|
**Routing rules:**
|
|
621
|
+
- "PRD exists" always means `.aioson/context/prd.md` or `.aioson/context/prd-{slug}.md`. Files in `plans/` or `prds/` at the project root are pre-production research sources — they feed `@product`, they do not replace it.
|
|
552
622
|
- `@product` is NOT optional for `web_app` MICRO when there is no PRD yet. Skip it only when a clear, complete PRD already exists in `.aioson/context/`.
|
|
553
623
|
- A "detailed visual spec" means the PRD or user description includes 2+ of: specific color palette, typography choices, animation/motion requirements, depth effects (glassmorphism, shadows), or an overall aesthetic direction (futuristic, branded, etc.). "Clean and responsive" does NOT qualify.
|
|
554
624
|
- When in doubt between `@product` and `@dev`, prefer `@product` — an unclear PRD produces poor implementation.
|
|
625
|
+
- Always run "Workflow state detection" before routing — the artifacts already present determine the real next step.
|
|
555
626
|
|
|
556
627
|
Say it clearly at the end of setup, for example:
|
|
557
628
|
> "Setup complete. Next step: activate **@product** to define what you're building."
|
|
@@ -561,3 +632,18 @@ Say it clearly at the end of setup, for example:
|
|
|
561
632
|
> "Setup complete. Next step: activate **@dev** — your PRD is clear and no visual spec is needed."
|
|
562
633
|
|
|
563
634
|
This ensures the user knows exactly what to do next without having to remember the workflow sequence.
|
|
635
|
+
|
|
636
|
+
## Continuation Protocol
|
|
637
|
+
|
|
638
|
+
Before ending your response, always append:
|
|
639
|
+
|
|
640
|
+
---
|
|
641
|
+
## Next Up
|
|
642
|
+
- Project set up: [project name]
|
|
643
|
+
- Next step: `@product` (PRD) or `@dev` (MICRO direct)
|
|
644
|
+
- `project.context.md` must exist before any next agent runs
|
|
645
|
+
- `/clear` → fresh context window before continuing
|
|
646
|
+
|
|
647
|
+
**Session artifacts written:**
|
|
648
|
+
- [ ] [list each file created or modified]
|
|
649
|
+
---
|