@jaimevalasek/aioson 1.36.0 → 1.37.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.
- package/CHANGELOG.md +42 -0
- package/docs/en/1-understand/ecosystem-map.md +1 -1
- package/docs/en/1-understand/glossary.md +1 -1
- package/docs/en/2-start/first-project.md +1 -1
- package/docs/en/2-start/initial-decisions.md +4 -2
- package/docs/en/3-recipes/from-idea-to-prd-via-briefing.md +8 -1
- package/docs/en/3-recipes/full-feature-with-sheldon.md +3 -1
- package/docs/en/4-agents/README.md +6 -3
- package/docs/en/4-agents/briefing-refiner.md +146 -0
- package/docs/en/5-reference/README.md +1 -0
- package/docs/en/5-reference/autopilot-handoff.md +286 -0
- package/docs/en/5-reference/cli-reference.md +6 -0
- package/docs/pt/1-entender/glossario.md +1 -1
- package/docs/pt/1-entender/mapa-do-ecossistema.md +1 -1
- package/docs/pt/2-comecar/decisoes-iniciais.md +4 -2
- package/docs/pt/2-comecar/primeiro-projeto.md +1 -1
- package/docs/pt/3-receitas/da-ideia-ao-prd-via-briefing.md +8 -1
- package/docs/pt/3-receitas/feature-completa-com-sheldon.md +3 -1
- package/docs/pt/4-agentes/README.md +13 -11
- package/docs/pt/4-agentes/briefing-refiner.md +64 -40
- package/docs/pt/4-agentes/briefing.md +6 -1
- package/docs/pt/4-agentes/dev.md +19 -1
- package/docs/pt/4-agentes/deyvin.md +4 -0
- package/docs/pt/4-agentes/discover.md +4 -0
- package/docs/pt/4-agentes/neo.md +4 -0
- package/docs/pt/4-agentes/orache.md +6 -0
- package/docs/pt/4-agentes/orchestrator.md +12 -0
- package/docs/pt/4-agentes/pentester.md +6 -0
- package/docs/pt/4-agentes/product.md +19 -1
- package/docs/pt/4-agentes/qa.md +10 -2
- package/docs/pt/4-agentes/setup.md +3 -1
- package/docs/pt/4-agentes/sheldon.md +12 -0
- package/docs/pt/4-agentes/tester.md +6 -0
- package/docs/pt/4-agentes/ux-ui.md +2 -1
- package/docs/pt/5-referencia/README.md +1 -1
- package/docs/pt/5-referencia/agent-chain-continuity.md +1 -1
- package/docs/pt/5-referencia/autopilot-handoff.md +191 -74
- package/docs/pt/5-referencia/comandos-cli.md +16 -7
- package/docs/pt/5-referencia/skills.md +2 -0
- package/docs/pt/agentes.md +3 -1
- package/package.json +1 -1
- package/src/agent-execution/adapters/base.js +15 -0
- package/src/agent-execution/adapters/claude.js +3 -0
- package/src/agent-execution/adapters/codex.js +3 -0
- package/src/agent-execution/adapters/opencode.js +3 -0
- package/src/agent-execution/capabilities.js +9 -0
- package/src/agent-execution/dispatcher.js +72 -0
- package/src/agent-execution/executable-resolver.js +7 -0
- package/src/agent-execution/manifest.js +62 -0
- package/src/agent-execution/model-catalog.js +80 -0
- package/src/agent-execution/model-resolver.js +132 -0
- package/src/agent-execution/reports.js +9 -0
- package/src/agent-execution/schema.js +48 -0
- package/src/agent-execution/telemetry-bridge.js +15 -0
- package/src/agents.js +1 -1
- package/src/artifact-kinds.js +2 -1
- package/src/autopilot-signal.js +71 -0
- package/src/cli.js +31 -5
- package/src/commands/agent-execution.js +36 -0
- package/src/commands/agents.js +18 -2
- package/src/commands/briefing.js +337 -1
- package/src/commands/feature-close.js +136 -43
- package/src/commands/live.js +47 -11
- package/src/commands/op-capture.js +33 -3
- package/src/commands/op-reinforce.js +10 -22
- package/src/commands/update.js +5 -1
- package/src/commands/verification-plan.js +56 -12
- package/src/commands/verify-artifact.js +64 -1
- package/src/commands/workflow-execute.js +168 -36
- package/src/commands/workflow-next.js +60 -16
- package/src/doctor.js +4 -2
- package/src/harness/criteria-runner.js +4 -1
- package/src/i18n/messages/en.js +2 -1
- package/src/i18n/messages/es.js +2 -1
- package/src/i18n/messages/fr.js +2 -1
- package/src/i18n/messages/pt-BR.js +2 -1
- package/src/lib/briefing-refiner/apply-feedback.js +18 -4
- package/src/lib/briefing-refiner/feedback-schema.js +73 -4
- package/src/lib/briefing-refiner/refinement-report.js +11 -0
- package/src/lib/briefing-refiner/review-html.js +388 -68
- package/src/operator-memory/decision.js +41 -0
- package/src/parser.js +6 -0
- package/src/runtime-store.js +167 -8
- package/template/.aioson/agents/briefing-refiner.md +87 -47
- package/template/.aioson/agents/briefing.md +4 -0
- package/template/.aioson/agents/dev.md +9 -2
- package/template/.aioson/agents/deyvin.md +4 -0
- package/template/.aioson/agents/discover.md +4 -0
- package/template/.aioson/agents/neo.md +4 -0
- package/template/.aioson/agents/orache.md +4 -0
- package/template/.aioson/agents/orchestrator.md +16 -0
- package/template/.aioson/agents/pentester.md +4 -0
- package/template/.aioson/agents/product.md +26 -1
- package/template/.aioson/agents/qa.md +5 -1
- package/template/.aioson/agents/sheldon.md +9 -1
- package/template/.aioson/agents/tester.md +4 -0
- package/template/.aioson/agents/ux-ui.md +1 -1
- package/template/.aioson/docs/agent-help.md +126 -0
- package/template/.aioson/docs/autopilot-handoff.md +32 -16
- package/template/.aioson/docs/dev/phase-loop.md +9 -7
- package/template/.aioson/docs/play/llm-data-and-bindings.md +70 -7
- package/template/.aioson/schemas/agent-execution.schema.json +28 -0
- package/template/.aioson/skills/design/interface-design/SKILL.md +17 -0
- package/template/AGENTS.md +36 -36
- package/template/CLAUDE.md +1 -1
|
@@ -0,0 +1,286 @@
|
|
|
1
|
+
# Autopilot handoff — AIOSON (EN)
|
|
2
|
+
|
|
3
|
+
> **What this is:** the reference for AIOSON's full-feature autopilot — the opt-in protocol that removes the **mechanical** handoff confirmations across the whole feature workflow, from `@product` to the `feature:close` recommendation.
|
|
4
|
+
> **Reading time:** 8 min.
|
|
5
|
+
> **What you will learn:**
|
|
6
|
+
> - How the run mode (autopilot vs. step-by-step) is decided, and the precedence between the inline tokens, per-feature scheme, and project flag
|
|
7
|
+
> - How the chain crosses from the spec authority into `@dev`, and how the post-dev review cycle routes through `@qa`
|
|
8
|
+
> - The stop conditions that always hand back to a human, and the reliability fixes that keep the chain from stalling
|
|
9
|
+
|
|
10
|
+
Genuine human decisions (product scope, sizing/enrichment) still happen interactively inside their agents; autopilot only removes the mechanical "run the next thing" step once an agent's own work is settled. `feature:close`/publish is **always** a human gate — it is never auto-run.
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## Two segments
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
Segment 1: @product → @sheldon (SMALL) / @orchestrator (MEDIUM) → @dev
|
|
18
|
+
Segment 2: @dev → @qa (hub) → @tester / @pentester (only when their trigger fires) → @validator → STOP
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
1. **Spec → dev chain** — each spec agent, once its own decisions are resolved (no open `AskUserQuestion`, the gates it owns approved), seeds the agentic scheme and auto-invokes the next stage instead of stopping. It crosses the pre-dev boundary via the `dev-state.md` cold-start packet, not by carrying raw upstream chat forward.
|
|
22
|
+
2. **Post-dev review cycle** — the implementation and review agents chain automatically until the feature is ready to close. `@qa` is the hub: it owns the routing to the specialized agents and the corrections loop.
|
|
23
|
+
|
|
24
|
+
Historically segment 1 always stopped at the human (upstream agents ended on human decisions); autopilot now crosses it too, but only mechanically — a real product/sizing decision still pauses for the human before any auto-invoke.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Activation
|
|
29
|
+
|
|
30
|
+
Autopilot is active when the first two hold, gated by the third:
|
|
31
|
+
|
|
32
|
+
1. **Armed signal** — `auto_handoff: true` in `project.context.md` (the project default), OR `.aioson/context/workflow-execute.json` exists with `agentic_policy.enabled: true` **and `feature` matching the current slug** (the seeded scheme — a scheme left by a different/closed feature does NOT count, for any agent in the chain). **Per-feature disarm wins over the flag:** a scheme for the current slug with `agentic_policy.enabled: false` (written by `aioson workflow:execute . --feature={slug} --seed --step`) turns autopilot OFF for that feature even when `auto_handoff: true` is set project-wide.
|
|
33
|
+
2. A feature workflow is active (feature slug known).
|
|
34
|
+
3. The current agent's own gate/verdict passed AND no genuine human decision is open (see stop conditions).
|
|
35
|
+
|
|
36
|
+
### Inline run-mode tokens (highest precedence)
|
|
37
|
+
|
|
38
|
+
A standalone `--auto` or `--step` in the activation arguments of `@product` (kickoff) or `@dev` (late entry/override) **is** the run-mode decision — the agent strips it from the task text and never asks:
|
|
39
|
+
|
|
40
|
+
| Token | Where | Effect |
|
|
41
|
+
|---|---|---|
|
|
42
|
+
| `/product --auto <task>` | Feature kickoff | Skips the on-screen question; seeds the scheme and arms the whole chain from that point |
|
|
43
|
+
| `/product --step <task>` | Feature kickoff | Skips the question; writes the disarmed scheme (`agentic_policy.enabled: false`) — manual handoffs |
|
|
44
|
+
| `/dev --auto` | Entering `@dev` | Arms autopilot from here even with no prior flag/scheme — implementation + the post-dev review cycle run autonomously |
|
|
45
|
+
| `/dev --step` | Entering `@dev` | Disarms autopilot for **this feature only** — stops at the `@dev → @qa` handoff even in an always-autopilot project (a per-feature disarm always wins over the project-wide flag) |
|
|
46
|
+
|
|
47
|
+
Downstream agents (`@qa`/`@tester`/`@pentester`/`@validator`) do not parse tokens — they only read the flag/scheme that is already decided. Only `@product` asks; the rest never re-prompt.
|
|
48
|
+
|
|
49
|
+
### No token: the question happens once, at `@product`'s handoff
|
|
50
|
+
|
|
51
|
+
Absent an inline token and a standing choice, `@product` asks on screen at the PRD handoff (`AskUserQuestion`, localized, with a recommendation marker):
|
|
52
|
+
|
|
53
|
+
- **Autopilot — run everything to `feature:close`** → runs the autopilot actions for this feature only (does not persist a default).
|
|
54
|
+
- **Step by step — I'll drive each stage** → presents the manual handoff block and stops.
|
|
55
|
+
- **Always autopilot in this project** → writes `auto_handoff: true` to `project.context.md` (adds the line if absent) and runs the autopilot actions.
|
|
56
|
+
|
|
57
|
+
Full precedence, strongest to weakest:
|
|
58
|
+
|
|
59
|
+
```
|
|
60
|
+
1. Inline token (--auto / --step)
|
|
61
|
+
2. Per-feature scheme (.aioson/context/workflow-execute.json with feature={slug}) — armed or disarmed
|
|
62
|
+
3. Project-wide flag (auto_handoff: true/false in project.context.md)
|
|
63
|
+
4. @product's on-screen question (only when none of the above is set)
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## Seeding the agentic scheme
|
|
69
|
+
|
|
70
|
+
The first spec agent to finish under autopilot seeds the run's contract — the "scheme" the whole chain follows, and what makes a feature built the normal way (`@product → @sheldon`/`@orchestrator` → …) run to `feature:close` without the user launching anything:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
aioson workflow:execute . --feature={slug} --seed --tool=<tool>
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
`--seed` writes `.aioson/context/workflow-execute.json` (with `agentic_policy.enabled: true` — review-loop caps, `feature_close: human_gate`, and the stop conditions) plus `.aioson/context/workflow.state.json`. It is **seed-only**: it records the policy the interactive agents follow but does NOT drive stage transitions itself — the agents do, via `Skill(aioson:agent:<next>)` + `aioson workflow:next . --complete=<agent>`. Re-seeding the same slug is idempotent.
|
|
77
|
+
|
|
78
|
+
**Seed failure is a stop condition.** The seeding agent checks the command result: a `different_active_feature` failure means another feature is genuinely active in `workflow.state.json` — surface it to the user (close/pause it, or `aioson feature:sweep .`) and stop with the manual handoff. The chain is never treated as armed when the seed failed.
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## Routing — deterministic, never LLM-chosen
|
|
83
|
+
|
|
84
|
+
The next agent comes from the workflow state machine and on-disk evidence, not from model judgment:
|
|
85
|
+
|
|
86
|
+
- CLI available: run `aioson workflow:next .` (inspect mode) and use the stage it reports, or the `next` field of `.aioson/context/workflow.state.json`.
|
|
87
|
+
- CLI absent: follow the classification sequence in `.aioson/config.md` and the routing tables below, exactly.
|
|
88
|
+
|
|
89
|
+
Never skip a stage, reorder, or pick an agent the state machine/routing table did not name.
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
93
|
+
## Segment 1 — spec → dev chain
|
|
94
|
+
|
|
95
|
+
**SMALL (lean lane, default):** `@product` → `@sheldon` → `@dev`. Under autopilot: `@product`, once the PRD is settled, seeds the scheme and invokes `@sheldon`; `@sheldon`, once sizing/enrichment is confirmed and its lean-lane artifacts + `dev-state.md` are written, completes its own stage (`aioson workflow:next . --complete=sheldon`) and invokes `@dev`. The opt-in full-merged SMALL detour auto-chains `@analyst` → `@architect` → `@dev` when opted in (with `@scope-check`/`@discovery-design-doc` only if the sequence adds them).
|
|
96
|
+
|
|
97
|
+
**MEDIUM (maestro lane, default):** `@product` → `@orchestrator` → `@dev`. Under autopilot: `@product` seeds and invokes `@orchestrator`; `@orchestrator`, once its gated spec package (Gates A/B/C approved, readiness ready) + `dev-state.md` are written, invokes `@dev`. The maestro fans out to `@analyst`/`@architect`/`@pm` as sub-agents, not as workflow stages — those chain as stages only under an opt-in full-chain detour.
|
|
98
|
+
|
|
99
|
+
Crossing into `@dev` goes through the `dev-state.md` cold-start packet the spec agent writes — `@dev`'s session-start protocol loads only that minimal package, so it does not inherit the heavy upstream chat; transparent auto-compact trims the rest. That is why the crossing is safe without a manual `/compact`. The spec agent still stops with the normal manual `/dev` recommendation if it has an open product/scope/sizing decision, or a gate it owns is not approved. Recommend `/clear` only for a hard reset, feature switch, polluted context, or security-sensitive reset.
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
## Segment 2 — post-dev review cycle (hub = `@qa`)
|
|
104
|
+
|
|
105
|
+
Once a human starts `@dev` and it finishes, the chain resumes automatically. `@qa` is the hub; every specialized agent returns to it.
|
|
106
|
+
|
|
107
|
+
| Current | Condition | Auto-invoke |
|
|
108
|
+
|---|---|---|
|
|
109
|
+
| `@dev` (first pass) | tests green, gates clear, no open corrections cycle | `@qa` |
|
|
110
|
+
| `@dev` (corrections) | corrections applied, tests green | `@qa` (re-verify) |
|
|
111
|
+
| `@qa` | verdict **FAIL** (Critical/High) | `@dev` via the corrections auto-cycle (cap 3, security gate) |
|
|
112
|
+
| `@qa` | verdict **PASS** + `@tester` trigger fires and not yet run clean | `@tester` |
|
|
113
|
+
| `@qa` | verdict **PASS** + `@pentester` trigger fires and not yet run clean | `@pentester` |
|
|
114
|
+
| `@qa` | verdict **PASS** + harness contract present and `@validator` not yet PASS | `@validator` |
|
|
115
|
+
| `@qa` | verdict **PASS** + no pending trigger/contract | **STOP** — recommend `aioson feature:close . --feature={slug}` |
|
|
116
|
+
| `@tester` | surfaced dev-owned blocking gaps | `@dev` |
|
|
117
|
+
| `@tester` | no dev-owned blocking gaps | `@qa` (re-evaluate/sign-off) |
|
|
118
|
+
| `@pentester` | open `recommended_owner = dev` findings | `@dev` |
|
|
119
|
+
| `@pentester` | no open dev-owned findings | `@qa` (re-evaluate/sign-off) |
|
|
120
|
+
| `@validator` | PASS | **STOP** — recommend `aioson feature:close` |
|
|
121
|
+
| `@validator` | FAIL | `@dev` |
|
|
122
|
+
|
|
123
|
+
**Trigger source for `@tester`/`@pentester`:** the existing `@qa` trigger logic (coverage gaps → `@tester`; sensitive surface auth/secrets/data/upload/external-URL/supply-chain → `@pentester`). All four agents are ALWAYS wired into the chain, but `@tester`/`@pentester` only EXECUTE when their trigger fires — otherwise `@qa` skips straight to the next routing row.
|
|
124
|
+
|
|
125
|
+
**Re-entry guard (no infinite loops):** before auto-invoking a specialized agent, `@qa` checks on-disk evidence that it already ran clean this cycle (`security-findings-{slug}.json` clean → `@pentester` done; a tester coverage artifact present with no new gap → `@tester` done; validator PASS recorded → `@validator` done). An agent that already returned clean is not re-invoked.
|
|
126
|
+
|
|
127
|
+
**`@validator` runs fresh-context:** when routing to `@validator` with a harness contract present, it never runs inline in the current session — the implementation history biases the verdict. Sequence: `aioson harness:check` (deterministic checks) → `aioson harness:validate` (generates the self-contained `validator-prompt.txt`: criteria + check results + diff vs. base) → execution in an **isolated subagent** (Task tool, no conversation context) that writes its verdict to `last-validator-output.json` → `aioson harness:validate` again, to consume the verdict through the circuit breaker. Clients without subagent support fall back to `Skill(aioson:agent:validator)` in a fresh session, as before.
|
|
128
|
+
|
|
129
|
+
---
|
|
130
|
+
|
|
131
|
+
## Stop conditions — break the chain and emit the normal manual handoff
|
|
132
|
+
|
|
133
|
+
1. **`feature:close`/publish** — ALWAYS the human gate. When `@qa` (PASS, nothing pending) or `@validator` (PASS) is the last clean step, STOP and recommend `aioson feature:close . --feature={slug}`. Never auto-run `feature:close`, `feature:archive`, `npm publish`, or any publish/close action.
|
|
134
|
+
2. **Genuine human decision open** — a spec agent with an unresolved product/scope/sizing question (an open `AskUserQuestion`, or a gate it owns not yet approved) resolves that decision with the human before any auto-invoke, and stops with the normal manual handoff. Autopilot removes mechanical stops, never real decisions.
|
|
135
|
+
3. **Corrections cap reached** — review cycles are bounded by `agentic_policy.review_cycle` (default **3**); when `review-cycle:advance` returns `stop_cycle_limit`, stop and escalate to the human.
|
|
136
|
+
4. **Critical security finding** — the `@qa` corrections security gate (auth/secret/credential/session/password/token/PII/encryption keywords) blocks the auto-loop; stop and require human intervention.
|
|
137
|
+
5. **Verdict not clean / gate or readiness blocked** — the `@orchestrator` maestro spec package not gate-approved (Gates A/B/C) or its readiness `blocked`, `@validator` FAIL with no safe corrections path (and, when present as detours, `@architect` Gate B/merged-mode readiness `blocked`, `@pm` Gate C blocked, `@scope-check` not `approved`/`patched`, or `@discovery-design-doc` readiness `blocked`): stop and route to the owner manually.
|
|
138
|
+
6. **Context budget** — estimated usage ≥ `context_warning_threshold` (`.aioson/config.md`): write the compaction checkpoint to `.aioson/context/last-handoff.json`, stop, and recommend `/compact` for same-feature continuation. The workflow resumes from `.aioson/context/workflow.state.json` — the next session re-enters autopilot automatically. Recommend `/clear` only for a hard reset, feature switch, polluted context, or security-sensitive reset.
|
|
139
|
+
7. **Ambiguity** — workflow state unavailable and routing ambiguous, or any real decision requires user input: stop and ask, manually.
|
|
140
|
+
|
|
141
|
+
The user can interrupt at any time (Ctrl+C); autopilot never retries an interrupted invocation.
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## `--help` on the 13 most-used agents
|
|
146
|
+
|
|
147
|
+
A standalone `--help` in the activation arguments (`/<agent> --help`) makes the agent print a localized quick-help block — what it does / when to use / options / typical calls / artifacts produced / next agents — and stop, doing no work. This applies to the 13 most-used agents, sourced from a single file, `.aioson/docs/agent-help.md`:
|
|
148
|
+
|
|
149
|
+
```
|
|
150
|
+
@product · @briefing · @briefing-refiner · @dev · @deyvin · @discover ·
|
|
151
|
+
@neo · @orache · @orchestrator · @tester · @pentester · @qa · @sheldon
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
Each agent prints only its own section, never the whole file. Individual agent cards (PT: [`docs/pt/4-agentes/`](../../pt/4-agentes/README.md)) link here when relevant.
|
|
155
|
+
|
|
156
|
+
---
|
|
157
|
+
|
|
158
|
+
## Reliability
|
|
159
|
+
|
|
160
|
+
Three reliability fixes that directly affect anyone running autopilot:
|
|
161
|
+
|
|
162
|
+
- **A stale workflow state no longer blocks the next feature's autopilot.** A `workflow.state.json` left by a closed/abandoned feature is discarded and reseeded automatically — only a genuinely active *different* feature (still `in_progress` in `features.md`) triggers the `different_active_feature` refusal. When that happens, close/pause the active feature or run:
|
|
163
|
+
|
|
164
|
+
```bash
|
|
165
|
+
aioson feature:sweep .
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
- **`aioson update` now prints exactly which template landed**, including the exact build for an `npm link`ed (dogfooding) install:
|
|
169
|
+
|
|
170
|
+
```
|
|
171
|
+
Template version applied: 1.36.0 (a1b2c3d, 2026-07-01)
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
(the `(sha, date)` suffix only appears for a git-checkout install; a normal npm install prints just the semantic version.)
|
|
175
|
+
|
|
176
|
+
- **The lean lane's state machine no longer regresses to `@sheldon` after implementation.** Previously, nothing resolved the `sheldon` stage, so `aioson workflow:next --complete=dev` re-activated `@sheldon` (a backwards activation). The `sheldon` stage is now recognized as completed along with the rest of the chain — completing a later stage can never leave `next` pointing at an earlier, already-resolved stage.
|
|
177
|
+
|
|
178
|
+
---
|
|
179
|
+
|
|
180
|
+
## How agents chain
|
|
181
|
+
|
|
182
|
+
When autopilot is active and no stop condition applies:
|
|
183
|
+
|
|
184
|
+
1. The agent finishes its own closing duties first (artifacts on disk, gate registration, dossier/spec updates, `agent:epilogue`/`agent:done`).
|
|
185
|
+
2. If the runtime checkpoint contains `agentic_policy.enabled=true`, it lets the gateway continue from `.aioson/context/workflow-execute.json` — it does not ask the user to confirm the next deterministic stage.
|
|
186
|
+
3. If no runtime gateway is available, it emits a one-line transition notice: `Autopilot: @<current> done → invoking @<next> (Ctrl+C to interrupt)`.
|
|
187
|
+
4. It invokes `Skill(aioson:agent:<next>)` with the task `"continue feature {slug} — autopilot handoff from @<current>"`. No user prompt — Ctrl+C interrupts.
|
|
188
|
+
|
|
189
|
+
---
|
|
190
|
+
|
|
191
|
+
## CLI tracking
|
|
192
|
+
|
|
193
|
+
```bash
|
|
194
|
+
# See the current workflow state (which agent is active)
|
|
195
|
+
aioson workflow:status .
|
|
196
|
+
|
|
197
|
+
# Seed the agentic scheme without advancing (spec agents do this when they finish)
|
|
198
|
+
aioson workflow:execute . --feature=checkout --seed --tool=claude
|
|
199
|
+
|
|
200
|
+
# Seed already disarmed (equivalent to the --step token)
|
|
201
|
+
aioson workflow:execute . --feature=checkout --seed --step --tool=claude
|
|
202
|
+
|
|
203
|
+
# Advance manually (when autopilot is off)
|
|
204
|
+
aioson workflow:next .
|
|
205
|
+
|
|
206
|
+
# Discard a stale workflow.state.json left by a closed/abandoned feature
|
|
207
|
+
aioson feature:sweep .
|
|
208
|
+
|
|
209
|
+
# See the handoff prepared by the previous agent
|
|
210
|
+
cat .aioson/context/last-handoff.json
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
---
|
|
214
|
+
|
|
215
|
+
## Example: SMALL feature, autopilot armed end-to-end
|
|
216
|
+
|
|
217
|
+
```
|
|
218
|
+
You > /product --auto build email notifications
|
|
219
|
+
|
|
220
|
+
@product > PRD closed. Autopilot mode (inline token) — no question asked.
|
|
221
|
+
Seeding the scheme... invoking @sheldon.
|
|
222
|
+
|
|
223
|
+
@sheldon > Gates A/B/C approved. dev-state.md written.
|
|
224
|
+
Autopilot: @sheldon done → invoking @dev.
|
|
225
|
+
|
|
226
|
+
@dev > Phase loop: 3 phases implemented back to back, no stopping.
|
|
227
|
+
Tests green. Autopilot: @dev done → invoking @qa.
|
|
228
|
+
|
|
229
|
+
@qa > PASS. Neither @tester nor @pentester trigger fired. No pending harness contract.
|
|
230
|
+
STOP — "Recommend: aioson feature:close . --feature=email-notifications"
|
|
231
|
+
|
|
232
|
+
You > aioson feature:close . --feature=email-notifications
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
## Example: MEDIUM feature, run mode chosen on screen at `@product`'s handoff
|
|
236
|
+
|
|
237
|
+
```
|
|
238
|
+
You > /product
|
|
239
|
+
|
|
240
|
+
@product > [drives the PRD...] PRD closed. Classification: MEDIUM.
|
|
241
|
+
How do you want to run this feature?
|
|
242
|
+
1. Autopilot — run everything to feature:close (recommended)
|
|
243
|
+
2. Step by step — I'll drive each stage
|
|
244
|
+
3. Always autopilot in this project
|
|
245
|
+
|
|
246
|
+
You > 3
|
|
247
|
+
|
|
248
|
+
@product > Wrote auto_handoff: true to project.context.md.
|
|
249
|
+
Seeding the scheme... invoking @orchestrator.
|
|
250
|
+
|
|
251
|
+
@orchestrator > Fan-out @analyst + @architect + @pm (+ @ux-ui). Gates A/B/C approved.
|
|
252
|
+
Autopilot: @orchestrator done → invoking @dev.
|
|
253
|
+
|
|
254
|
+
@dev > Implemented. Autopilot: @dev done → invoking @pentester (inline in MEDIUM).
|
|
255
|
+
|
|
256
|
+
@pentester > No HIGH/CRITICAL findings. Autopilot: @pentester done → invoking @qa.
|
|
257
|
+
|
|
258
|
+
@qa > PASS. Harness contract present, @validator not yet PASS → invoking @validator.
|
|
259
|
+
|
|
260
|
+
@validator > Fresh, isolated context. harness:check + LLM judgment of criteria with no verification.
|
|
261
|
+
PASS. STOP — "Recommend: aioson feature:close . --feature=..."
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
---
|
|
265
|
+
|
|
266
|
+
## Lane B — compiled execution (opt-in alternative)
|
|
267
|
+
|
|
268
|
+
For **MEDIUM** features, there is an execution lane alternative to real-time autopilot: **Lane B**, triggered by the `@forge-run` agent (`/forge-run`). Instead of chaining live agents, `@forge-run` **compiles** the feature's artifacts into a `.aioson/plans/{slug}/forge-run.workflow.js` (via `aioson forge:compile`) and runs it through the workflow runtime.
|
|
269
|
+
|
|
270
|
+
The compiled workflow embeds the same review cycle: a `parallel()` per Wave → convergence at `harness:check` → 3-lens adversarial review for binary criteria without `verification` → the fresh-context validator closing via `harness:validate` → `apply-validation`. Like the normal lane, it **never** runs `feature:close`/publish: PASS recommends the human run `feature:close`; FAIL routes back to `@dev` through the normal lane. One feature per run.
|
|
271
|
+
|
|
272
|
+
When to prefer each:
|
|
273
|
+
- **Autopilot (normal lane)** — deterministic handoffs between live agents; default for SMALL and MEDIUM.
|
|
274
|
+
- **Lane B (`@forge-run`)** — compiled, reproducible, versionable execution of one MEDIUM feature; opt-in, with a cost warning before running.
|
|
275
|
+
|
|
276
|
+
See [Executable verification](./executable-verification.md#phase-5-v1280--lane-b-forgecompile--forge-run) for the Lane B mechanics.
|
|
277
|
+
|
|
278
|
+
---
|
|
279
|
+
|
|
280
|
+
## Next steps
|
|
281
|
+
|
|
282
|
+
- [Executable verification](./executable-verification.md) — the five-phase theme Lane B belongs to
|
|
283
|
+
- [CLI reference — workflow:next](./cli-reference.md#workflownext) and the classification-based sequences
|
|
284
|
+
- PT: [SDD Framework](../../pt/5-referencia/sdd-framework.md) — full MICRO/SMALL/MEDIUM sequence and the lean/maestro lanes
|
|
285
|
+
- PT: [`@product` card](../../pt/4-agentes/product.md) — where the run mode is decided
|
|
286
|
+
- PT: [`@dev` card](../../pt/4-agentes/dev.md) — `--auto`/`--step` at implementation entry
|
|
@@ -73,6 +73,8 @@ aioson update --lang=pt-BR
|
|
|
73
73
|
|
|
74
74
|
**What it updates:** all files in the `MANAGED_FILES` list that match your install profile (agents, config, gateway files, skills). Does not touch `project.context.md`, `discovery.md`, `architecture.md`, or other context files you created.
|
|
75
75
|
|
|
76
|
+
**Output:** on completion, prints `Template version applied: <version>` (and `(<sha>, <date>)` when the install is a git checkout — e.g. an `npm link`ed dogfood setup) so you can tell exactly which template landed.
|
|
77
|
+
|
|
76
78
|
---
|
|
77
79
|
|
|
78
80
|
## info
|
|
@@ -346,6 +348,10 @@ aioson workflow:next ./my-project --skip=dev
|
|
|
346
348
|
- `agent:next` is an alias for compatibility
|
|
347
349
|
- `workflow.config.json` and `workflow.state.json` live under `.aioson/context/`, so normal framework updates preserve them
|
|
348
350
|
|
|
351
|
+
### workflow:execute --seed (full-feature autopilot)
|
|
352
|
+
|
|
353
|
+
`aioson workflow:execute . --feature=<slug> --seed --tool=<tool>` seeds the agentic scheme (`.aioson/context/workflow-execute.json` with `agentic_policy.enabled: true`) without advancing a stage — this is what a spec agent (`@product`/`@sheldon`/`@orchestrator`) runs on its own once it finishes, to arm the full-feature autopilot chain described in [Autopilot handoff](./autopilot-handoff.md). Add `--step` to seed it already disarmed (equivalent to the inline `--step` token). A stale `workflow.state.json` left by a closed/abandoned feature is discarded and reseeded automatically; a genuinely different active feature returns `different_active_feature` — close/pause it, or run `aioson feature:sweep .` to discard stale state explicitly.
|
|
354
|
+
|
|
349
355
|
---
|
|
350
356
|
|
|
351
357
|
## feature:close
|
|
@@ -129,7 +129,7 @@ Termos em ordem alfabética. Cada um tem **definição curta** + **exemplo concr
|
|
|
129
129
|
|
|
130
130
|
**Exemplos prontos:** Clean SaaS UI, Aurora Command UI, Cognitive Core UI, Bold Editorial UI, Warm Craft UI, Glassmorphism UI, Neo Brutalist UI.
|
|
131
131
|
|
|
132
|
-
**Onde escolher:** durante o `aioson init`, no wizard.
|
|
132
|
+
**Onde escolher:** durante o `aioson init`, no wizard, ou depois com `@setup`/`@ux-ui`. A rota recomendada é o motor `interface-design` guiado pelas suas **imagens de referência**, extraídas uma única vez num `identity.md` que o motor aplica; os presets ficam como alternativa explícita.
|
|
133
133
|
|
|
134
134
|
---
|
|
135
135
|
|
|
@@ -88,7 +88,7 @@ A ordem padrão depende da classificação (v1.35.0):
|
|
|
88
88
|
| **`@pm`** | Backlog, user stories, plano de implementação. **MEDIUM:** sub-agente do `@orchestrator`. **Qualquer tamanho:** detour opt-in. | `tasks.md`, `implementation-plan-{slug}.md` |
|
|
89
89
|
| **`@orchestrator`** | **MEDIUM:** maestro de spec (faz fan-out para @analyst/@architect/@pm/@ux-ui, consolida e verifica, entrega pacote de spec com Gates A/B/C). Também coordena lanes paralelas de implementação pós-spec. | `parallel/`, `implementation-plan-{slug}.md`, `harness-contract.json` |
|
|
90
90
|
| **`@dev`** | Implementa a feature | Código + `dev-state.md` |
|
|
91
|
-
| **`@qa`** | Escreve testes, valida ACs, ciclo autônomo de correção (cap
|
|
91
|
+
| **`@qa`** | Escreve testes, valida ACs, ciclo autônomo de correção (cap 3), hub do autopilot pós-dev (roteia para `@tester`/`@pentester`/`@validator`) | `test-plan.md`, `qa-report-*.md` |
|
|
92
92
|
| **`@validator`** | Valida tecnicamente contra `harness-contract.json` em sandbox de contexto | `.aioson/plans/{slug}/last-validator-output.json` (consumido por `harness:apply-validation`, atualiza `progress.json`) |
|
|
93
93
|
| **`@tester`** | Engenharia sistemática de testes (legacy/brownfield) | `test-inventory.md`, coverage tier |
|
|
94
94
|
| **`@pentester`** | Revisão adversarial de segurança (OWASP, LLM Top 10) | `security-findings-*.json` |
|
|
@@ -133,7 +133,9 @@ npx @jaimevalasek/aioson squad:scaffold compliance
|
|
|
133
133
|
|
|
134
134
|
## Escolhendo o Design System
|
|
135
135
|
|
|
136
|
-
|
|
136
|
+
> **Rota recomendada: `interface-design` + suas imagens de referência.** Em vez de herdar o visual idêntico de um preset fixo, você fornece imagens de referência (identidade/marca e, opcionalmente, estrutura de componentes); a skill `reference-identity-extract` as converte **uma única vez** num `identity.md` de texto que o motor `interface-design` aplica em tudo que vier depois (protótipo e build). O `@setup` oferece essa rota primeiro — sempre com confirmação explícita, nunca auto-seleção. Os presets abaixo continuam disponíveis como alternativa.
|
|
137
|
+
|
|
138
|
+
Presets disponíveis no wizard:
|
|
137
139
|
|
|
138
140
|
| Skill | Estilo | Casos |
|
|
139
141
|
|---|---|---|
|
|
@@ -146,7 +148,7 @@ Disponíveis no wizard:
|
|
|
146
148
|
| **Neo Brutalist UI** | Contornos pretos, cores fortes, sem sombra | Marcas marcantes |
|
|
147
149
|
|
|
148
150
|
**Pular** é uma opção legítima. Você pode:
|
|
149
|
-
- Escolher depois com `@ux-ui`
|
|
151
|
+
- Escolher depois com `@ux-ui` — ele oferece as mesmas duas rotas (imagens de referência ou preset)
|
|
150
152
|
- Clonar o design de um site real com `@site-forge`
|
|
151
153
|
- Criar um híbrido com `@design-hybrid-forge` (ex: clean-saas + neo-brutalist)
|
|
152
154
|
|
|
@@ -229,7 +229,7 @@ Você > @qa
|
|
|
229
229
|
@qa > test-plan.md e qa-report.md gravados. Feature pronta.
|
|
230
230
|
```
|
|
231
231
|
|
|
232
|
-
> **A novidade:** o ciclo *autônomo QA→Dev* (cap
|
|
232
|
+
> **A novidade:** o ciclo *autônomo QA→Dev* (cap 3, `agentic_policy.review_cycle`) deixa o @qa pedir correções pequenas sem você ter que reativar manualmente. Sob autopilot, esse mesmo ciclo pode encadear até `@tester`/`@pentester`/`@validator` e a recomendação de `feature:close` sem parar — veja [Autopilot Handoff](../5-referencia/autopilot-handoff.md).
|
|
233
233
|
|
|
234
234
|
---
|
|
235
235
|
|
|
@@ -23,6 +23,8 @@ ideia vaga / anotações
|
|
|
23
23
|
↓
|
|
24
24
|
@briefing → .aioson/briefings/{slug}/briefings.md
|
|
25
25
|
↓
|
|
26
|
+
(opcional) @briefing-refiner → loop de refino: auditoria + review.html + apply-feedback
|
|
27
|
+
↓
|
|
26
28
|
aioson briefing:approve
|
|
27
29
|
↓
|
|
28
30
|
@product → prd.md (ou prd-{slug}.md)
|
|
@@ -87,7 +89,11 @@ Você > Todos.
|
|
|
87
89
|
|
|
88
90
|
### Passo 3 — Revise e aprove
|
|
89
91
|
|
|
90
|
-
Leia `.aioson/briefings/notificacoes-push/briefings.md`.
|
|
92
|
+
Leia `.aioson/briefings/notificacoes-push/briefings.md`.
|
|
93
|
+
|
|
94
|
+
> **Quer uma revisão estruturada antes de aprovar?** Ative o [`@briefing-refiner`](../4-agentes/briefing-refiner.md): ele audita o briefing em achados estruturados (categoria, severidade, bloqueio), o CLI renderiza a superfície `review.html` (`aioson briefing:review . --slug=notificacoes-push`) para você decidir cada achado e editar cada seção **num navegador de verdade**, e o feedback confirmado é aplicado com `aioson briefing:apply-feedback . --slug=notificacoes-push --confirm` — em rodadas, até nada bloquear o PRD.
|
|
95
|
+
|
|
96
|
+
Se estiver bom:
|
|
91
97
|
|
|
92
98
|
```bash
|
|
93
99
|
aioson briefing:approve
|
|
@@ -231,4 +237,5 @@ plans/ ← seus rascunhos (intocados)
|
|
|
231
237
|
- [Plans externos para @product](./plans-externos-para-product.md) — como usar ChatGPT/Claude.ai como fonte para `plans/`
|
|
232
238
|
- [Feature completa com @sheldon](./feature-completa-com-sheldon.md) — quando o PRD está pronto e a trilha é SMALL/MEDIUM
|
|
233
239
|
- [@briefing — ficha](../4-agentes/briefing.md) — referência técnica do agente
|
|
240
|
+
- [@briefing-refiner — ficha](../4-agentes/briefing-refiner.md) — loop de revisão/refino do briefing antes do PRD
|
|
234
241
|
- [@product — ficha](../4-agentes/product.md) — referência técnica do agente
|
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
|
|
25
25
|
`@orchestrator` é o maestro de spec: faz fan-out para `@analyst` + `@architect` + `@pm` (+ `@ux-ui` quando UI-heavy) como sub-agentes, consolida os artefatos, e entrega o pacote de spec aprovado para `@dev`. `@pentester` é inline (entre `@dev` e `@qa`).
|
|
26
26
|
|
|
27
|
+
> **Passo a passo ou autopilot?** Esta receita mostra o fluxo **manual** — você invoca cada agente. Mas construir a feature do jeito normal (`@product` → `@sheldon`/`@orchestrator` → `@dev` → `@qa`) também pode rodar **sozinho** até a recomendação de `feature:close`: `@product` pergunta o modo de execução uma vez no handoff do PRD (ou você já decide na hora com `/product --auto`/`/product --step`), e cada agente invoca o próximo automaticamente. Veja [Autopilot Handoff](../5-referencia/autopilot-handoff.md) para a cadeia completa, os tokens inline e as condições de parada. Os passos abaixo continuam valendo — é o que cada agente faz por trás, autopilot ligado ou não.
|
|
28
|
+
|
|
27
29
|
---
|
|
28
30
|
|
|
29
31
|
## SMALL lean — passo a passo
|
|
@@ -267,7 +269,7 @@ Você > @pentester
|
|
|
267
269
|
| **MEDIUM, você quer gerenciar a spec manualmente** | `@product → @analyst → @architect → @ux-ui → @pm → @orchestrator (lanes only) → @dev → @pentester → @qa` — o "escape hatch" full-merged. |
|
|
268
270
|
| **Sessão caiu no meio do `@dev`** | `@deyvin` retoma. Ver [Continuidade entre sessões](./continuidade-entre-sessoes.md). |
|
|
269
271
|
| **`@sheldon` reclama que PRD está vago** | Volte ao `@product` e refine. `@sheldon` não inventa o que não está claro. |
|
|
270
|
-
| **Ciclo `@qa ↔ @dev` estourou cap
|
|
272
|
+
| **Ciclo `@qa ↔ @dev` estourou cap 3** | Há defeito de design. Volte ao `@sheldon` (SMALL) ou `@orchestrator` (MEDIUM) antes de mais código. |
|
|
271
273
|
| **`@pentester` HIGH não baixa** | Não force. Documente como risco aceito ou adie a feature. |
|
|
272
274
|
|
|
273
275
|
---
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# Guia de Agentes AIOSON
|
|
2
2
|
|
|
3
|
-
> Índice com
|
|
3
|
+
> Índice com 31 agentes e 1 alias, com situação de uso e saída esperada.
|
|
4
4
|
> Cada agente tem sua ficha — clique no nome para detalhes.
|
|
5
5
|
> `@pair` é alias de `@deyvin` e não possui ficha separada.
|
|
6
6
|
|
|
7
|
+
> **As colunas "Quando invocar" abaixo descrevem a capacidade de cada agente, não a ordem obrigatória do fluxo padrão.** Desde a lane lean/maestro (v1.35.0), o fluxo padrão é `@product → @sheldon → @dev → @qa` (SMALL) ou `@product → @orchestrator → @dev → @pentester → @qa` (MEDIUM) — `@analyst`, `@architect`, `@ux-ui` e `@pm` são detours opt-in ou sub-agentes do fan-out do `@orchestrator`, não hops obrigatórios. Construir a feature assim também pode rodar sozinho até a recomendação de `feature:close` — veja [Autopilot Handoff](../5-referencia/autopilot-handoff.md).
|
|
8
|
+
|
|
7
9
|
---
|
|
8
10
|
|
|
9
11
|
## Núcleo de desenvolvimento (neste diretório)
|
|
@@ -11,14 +13,15 @@
|
|
|
11
13
|
| Agente | Para que serve | Quando invocar | Saída principal |
|
|
12
14
|
|---|---|---|---|
|
|
13
15
|
| [@product](./product.md) | Define visão, PRD e escopo da feature | Início de projeto ou nova feature | `prd.md`, `spec.md` |
|
|
14
|
-
| [@analyst](./analyst.md) | Descobre domínio, entidades, fluxos |
|
|
15
|
-
| [@scope-check](./scope-check.md) | Confronta intenção, plano e artefatos antes do código |
|
|
16
|
-
| [@architect](./architect.md) | Decide stack, estrutura, integração técnica |
|
|
17
|
-
| [@ux-ui](./ux-ui.md) | Design system e specs de componentes |
|
|
18
|
-
| [@pm](./pm.md) | Backlog, user stories, ACs detalhados |
|
|
19
|
-
| [@
|
|
20
|
-
| [@
|
|
21
|
-
| [@
|
|
16
|
+
| [@analyst](./analyst.md) | Descobre domínio, entidades, fluxos | Detour opt-in / sub-agente do `@orchestrator` (MEDIUM) | `architecture.md` (domínio) |
|
|
17
|
+
| [@scope-check](./scope-check.md) | Confronta intenção, plano e artefatos antes do código | `spec:analyze` roda automático no gate `@dev`/`@qa`; detour explícito também disponível | `scope-check.md` |
|
|
18
|
+
| [@architect](./architect.md) | Decide stack, estrutura, integração técnica | Detour opt-in / sub-agente do `@orchestrator` (MEDIUM) | `architecture.md` (técnico) |
|
|
19
|
+
| [@ux-ui](./ux-ui.md) | Design system e specs de componentes | Detour opt-in para specs UI-heavy | `design-doc.md`, `discovery.md` |
|
|
20
|
+
| [@pm](./pm.md) | Backlog, user stories, ACs detalhados | Sub-agente do `@orchestrator` (MEDIUM) ou detour opt-in | `tasks.md` |
|
|
21
|
+
| [@sheldon](./sheldon.md) | **Autoridade única de spec (SMALL)** — requirements + decisões técnicas + plano faseado + harness-contract numa passada | Após `@product`, padrão do SMALL | `requirements-*.md`, `implementation-plan-*.md`, `harness-contract.json` |
|
|
22
|
+
| [@orchestrator](./orchestrator.md) | **Maestro de spec (MEDIUM)** — fan-out para `@analyst`/`@architect`/`@pm` (+`@ux-ui`), consolida o pacote de spec com Gates A/B/C; secundário: coordena lanes paralelas pós-spec | Após `@product`, padrão do MEDIUM | `.aioson/context/parallel/`, pacote de spec consolidado |
|
|
23
|
+
| [@dev](./dev.md) | Implementa a feature | Após o pacote de spec (`@sheldon`/`@orchestrator`) ou direto após `@product` (MICRO) | código + `dev-state.md` |
|
|
24
|
+
| [@qa](./qa.md) | Testa, valida ACs, ciclo autônomo com `@dev` (cap 3), hub do autopilot pós-dev | Após `@dev` | `test-plan.md`, `qa-report-*.md` |
|
|
22
25
|
| [@validator](./validator.md) | Gate final: valida contrato binário de sucesso | Após `@qa`, antes de fechar feature | veredicto em `last-handoff.json` |
|
|
23
26
|
| [@forge-run](./forge-run.md) | Lane B opt-in: compila e roda o workflow de verificação executável de uma feature MEDIUM | MEDIUM com contrato `verification` + plano com Wave | `forge-run.workflow.js` |
|
|
24
27
|
| [@tester](./tester.md) | Engenharia de testes para apps já existentes | Legacy/brownfield ou lacunas graves | `test-inventory.md` |
|
|
@@ -33,10 +36,9 @@
|
|
|
33
36
|
| [@setup](./setup.md) | Onboarding: detecta stack, classifica projeto | Sempre primeiro num projeto novo | `project.context.md` |
|
|
34
37
|
| [@neo](./neo.md) | Roteador: diz qual agente é o próximo | Quando você está perdido | Orientação verbal |
|
|
35
38
|
| [@briefing](./briefing.md) | Transforma anotações soltas em briefing pré-PRD | Antes de `@product`, quando ideia ainda vaga | `briefing.md` |
|
|
36
|
-
| [@briefing-refiner](./briefing-refiner.md) |
|
|
39
|
+
| [@briefing-refiner](./briefing-refiner.md) | Loop de refino de briefing: audita em achados estruturados, o CLI renderiza a revisão (`briefing:review`) e aplica o feedback confirmado (`briefing:apply-feedback`) | Após `@briefing`, antes de `@product` | `refinement-findings.json`, `review.html` (CLI), `refinement-feedback.json`, `refinement-report.md` |
|
|
37
40
|
| [@deyvin](./deyvin.md) | Pair-programming e continuidade de sessão | Retomar feature interrompida | continuação do trabalho |
|
|
38
41
|
| [@pair](./deyvin.md) | Alias de `@deyvin` | — | — |
|
|
39
|
-
| [@sheldon](./sheldon.md) | Análise técnica profunda, revisão de arquitetura | Decisões grandes, código legado | relatório de revisão |
|
|
40
42
|
| [@committer](./committer.md) | Gera mensagem de commit profissional | Após implementar, antes de commitar | mensagem de commit |
|
|
41
43
|
| [@discover](./discover.md) | Constrói cache semântico do projeto | Onboarding em codebase grande | `.aioson/context/bootstrap/` |
|
|
42
44
|
|