@llm-dev-ops/agentics-cli 2.7.37 → 2.7.39
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/dist/adapters/base-adapter.d.ts.map +1 -1
- package/dist/adapters/base-adapter.js.map +1 -1
- package/dist/agents/repo-agent-runner.d.ts.map +1 -1
- package/dist/agents/repo-agent-runner.js +0 -2
- package/dist/agents/repo-agent-runner.js.map +1 -1
- package/dist/agents/system-prompts.d.ts.map +1 -1
- package/dist/agents/system-prompts.js +0 -19
- package/dist/agents/system-prompts.js.map +1 -1
- package/dist/commands/agents.d.ts +4 -24
- package/dist/commands/agents.d.ts.map +1 -1
- package/dist/commands/agents.js +6 -36
- package/dist/commands/agents.js.map +1 -1
- package/dist/pipeline/auto-chain.d.ts.map +1 -1
- package/dist/pipeline/auto-chain.js +82 -6
- package/dist/pipeline/auto-chain.js.map +1 -1
- package/dist/pipeline/exemplars.d.ts +34 -0
- package/dist/pipeline/exemplars.d.ts.map +1 -0
- package/dist/pipeline/exemplars.js +101 -0
- package/dist/pipeline/exemplars.js.map +1 -0
- package/dist/pipeline/output-validator.d.ts +38 -0
- package/dist/pipeline/output-validator.d.ts.map +1 -0
- package/dist/pipeline/output-validator.js +152 -0
- package/dist/pipeline/output-validator.js.map +1 -0
- package/dist/pipeline/phase2/phases/adr-generator.d.ts.map +1 -1
- package/dist/pipeline/phase2/phases/adr-generator.js +21 -3
- package/dist/pipeline/phase2/phases/adr-generator.js.map +1 -1
- package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.d.ts.map +1 -1
- package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.js +17 -5
- package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.js.map +1 -1
- package/dist/pipeline/phase7/deliverables-registry.js +1 -1
- package/dist/pipeline/phase7/deliverables-registry.js.map +1 -1
- package/dist/pipeline/ruflo-phase-executor.d.ts +2 -5
- package/dist/pipeline/ruflo-phase-executor.d.ts.map +1 -1
- package/dist/pipeline/ruflo-phase-executor.js +55 -66
- package/dist/pipeline/ruflo-phase-executor.js.map +1 -1
- package/dist/routing/domain-boundary.d.ts +4 -20
- package/dist/routing/domain-boundary.d.ts.map +1 -1
- package/dist/routing/domain-boundary.js +6 -81
- package/dist/routing/domain-boundary.js.map +1 -1
- package/dist/routing/graph-router.d.ts.map +1 -1
- package/dist/routing/graph-router.js +0 -22
- package/dist/routing/graph-router.js.map +1 -1
- package/docs/ecosystem.graph.json +15 -65
- package/docs/templates/ADR-Good-Example.md +787 -0
- package/docs/templates/Implementation-Prompts-Good-Example.md +1158 -0
- package/docs/templates/promotion-changelog.md +94 -0
- package/docs/templates/regression-changelog.md +86 -0
- package/docs/templates/sparc-specification-good-example.md +600 -0
- package/package.json +2 -1
- package/dist/config/qe-gating.d.ts +0 -81
- package/dist/config/qe-gating.d.ts.map +0 -1
- package/dist/config/qe-gating.js +0 -138
- package/dist/config/qe-gating.js.map +0 -1
- package/dist/pipeline/phase5-build/qe-gating-executor.d.ts +0 -73
- package/dist/pipeline/phase5-build/qe-gating-executor.d.ts.map +0 -1
- package/dist/pipeline/phase5-build/qe-gating-executor.js +0 -134
- package/dist/pipeline/phase5-build/qe-gating-executor.js.map +0 -1
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# Promotion CHANGELOG Entry — Template
|
|
2
|
+
|
|
3
|
+
Copy this block into `CHANGELOG.md` under the current release header when
|
|
4
|
+
promoting a domain binding per ADR-PIPELINE-084.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
### Domain Promotion: `<domain-name>` — <from-stage> → <to-stage>
|
|
9
|
+
|
|
10
|
+
- **Date:** YYYY-MM-DD
|
|
11
|
+
- **Adapter owner:** @github-handle
|
|
12
|
+
- **Binding:** `<phase-name>` (phase <N>) / `<mandatory_agents|optional_agents>`
|
|
13
|
+
- **Agents affected:** `<Agent A>`, `<Agent B>`, ...
|
|
14
|
+
- **From stage:** observational | advisory
|
|
15
|
+
- **To stage:** advisory | gating
|
|
16
|
+
|
|
17
|
+
**Measurement window:**
|
|
18
|
+
- Duration in prior stage: <days>
|
|
19
|
+
- Total invocations: <n>
|
|
20
|
+
- Successful invocations: <n> (<rate>%)
|
|
21
|
+
- Adapter crashes: <n>
|
|
22
|
+
- 502 responses: <n> (<rate>%)
|
|
23
|
+
|
|
24
|
+
**False-positive rate (for → gating only):**
|
|
25
|
+
- Windows sampled: <count>
|
|
26
|
+
- Total findings in sample: <n>
|
|
27
|
+
- False positives: <n>
|
|
28
|
+
- FP rate: <rate>% (< 5% required)
|
|
29
|
+
- Sample CSV: `<path or attachment link>`
|
|
30
|
+
|
|
31
|
+
**Latency (for → gating only):**
|
|
32
|
+
- P50: <ms>
|
|
33
|
+
- P95: <ms> (< tier cap: 300_000 ms)
|
|
34
|
+
- P99: <ms>
|
|
35
|
+
|
|
36
|
+
**Kill-switch (for → gating only):**
|
|
37
|
+
- Env var: `AGENTICS_<DOMAIN>_GATING={on,advisory,off}`
|
|
38
|
+
- Runbook: `docs/runbooks/<domain>-gating-recovery.md`
|
|
39
|
+
|
|
40
|
+
**Related ADR updates:**
|
|
41
|
+
- `<ADR-PIPELINE-NNN>` — <brief description of edit>
|
|
42
|
+
|
|
43
|
+
**Related incident tickets:** <none | link>
|
|
44
|
+
|
|
45
|
+
**Reviewer approvals:**
|
|
46
|
+
- [ ] Domain owner: @
|
|
47
|
+
- [ ] Platform owner: @
|
|
48
|
+
- [ ] On-call lead (for → gating only): @
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## Example
|
|
53
|
+
|
|
54
|
+
### Domain Promotion: `quality_engineering` — advisory → gating
|
|
55
|
+
|
|
56
|
+
- **Date:** 2026-05-15
|
|
57
|
+
- **Adapter owner:** @alice
|
|
58
|
+
- **Binding:** `validation` (phase 8) / `mandatory_agents`
|
|
59
|
+
- **Agents affected:** all 14 QE agents per ADR-PIPELINE-080
|
|
60
|
+
- **From stage:** advisory
|
|
61
|
+
- **To stage:** gating (accelerated per ADR-084 §7.1)
|
|
62
|
+
|
|
63
|
+
**Measurement window:**
|
|
64
|
+
- Duration in prior stage: 14 days (accelerated exception)
|
|
65
|
+
- Total invocations: 1847
|
|
66
|
+
- Successful invocations: 1823 (98.7%)
|
|
67
|
+
- Adapter crashes: 0
|
|
68
|
+
- 502 responses: 24 (1.3%)
|
|
69
|
+
|
|
70
|
+
**False-positive rate:**
|
|
71
|
+
- Windows sampled: 2
|
|
72
|
+
- Total findings in sample: 312
|
|
73
|
+
- False positives: 11
|
|
74
|
+
- FP rate: 3.5% (< 5% required)
|
|
75
|
+
- Sample CSV: `observatory-exports/qe-advisory-2026-w18-w19.csv`
|
|
76
|
+
|
|
77
|
+
**Latency:**
|
|
78
|
+
- P50: 42_000 ms
|
|
79
|
+
- P95: 187_000 ms (< 300_000 ms tier cap)
|
|
80
|
+
- P99: 241_000 ms
|
|
81
|
+
|
|
82
|
+
**Kill-switch:**
|
|
83
|
+
- Env var: `AGENTICS_QE_GATING={on,advisory,off}`
|
|
84
|
+
- Runbook: `docs/runbooks/qe-gating-recovery-086.md`
|
|
85
|
+
|
|
86
|
+
**Related ADR updates:**
|
|
87
|
+
- ADR-PIPELINE-083 — flip phase 8 bindings from optional (advisory) to mandatory (gating)
|
|
88
|
+
|
|
89
|
+
**Related incident tickets:** none
|
|
90
|
+
|
|
91
|
+
**Reviewer approvals:**
|
|
92
|
+
- [x] Domain owner: @alice
|
|
93
|
+
- [x] Platform owner: @bob
|
|
94
|
+
- [x] On-call lead: @carol
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
# Regression CHANGELOG Entry — Template
|
|
2
|
+
|
|
3
|
+
Copy this block into `CHANGELOG.md` under the current release header when
|
|
4
|
+
regressing a domain binding per ADR-PIPELINE-084 §4.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
### Domain Regression: `<domain-name>` — <from-stage> → <to-stage>
|
|
9
|
+
|
|
10
|
+
- **Date:** YYYY-MM-DD
|
|
11
|
+
- **On-call / initiating engineer:** @github-handle
|
|
12
|
+
- **Binding:** `<phase-name>` (phase <N>) / `<mandatory_agents|optional_agents>`
|
|
13
|
+
- **Agents affected:** `<Agent A>`, `<Agent B>`, ...
|
|
14
|
+
- **From stage:** gating
|
|
15
|
+
- **To stage:** advisory | off (kill-switch applied)
|
|
16
|
+
- **Regression label on PR:** `emergency-change`
|
|
17
|
+
|
|
18
|
+
**Trigger:**
|
|
19
|
+
- Rule: <fp-rate-exceeded | adapter-crash-rate | 502-rate | upstream-outage | manual>
|
|
20
|
+
- Window: <7d | 24h | 1h | 15m>
|
|
21
|
+
- Observed value: <e.g., FP rate 7.2%, crash rate 1.4%, 502 rate 14%>
|
|
22
|
+
- Threshold breached: <threshold>
|
|
23
|
+
|
|
24
|
+
**Kill-switch state at time of regression:**
|
|
25
|
+
- Env var: `AGENTICS_<DOMAIN>_GATING=<value>`
|
|
26
|
+
- Applied by: <auto | @on-call-handle>
|
|
27
|
+
- Applied at: YYYY-MM-DDTHH:MM:SSZ
|
|
28
|
+
- Applied reason: "<free-text reason required by CLI>"
|
|
29
|
+
|
|
30
|
+
**Incident reference:**
|
|
31
|
+
- Incident-manager ticket: <link>
|
|
32
|
+
- Severity: <P0 | P1 | P2>
|
|
33
|
+
- Pages dispatched: <n>
|
|
34
|
+
|
|
35
|
+
**Recovery plan:**
|
|
36
|
+
- RCA due by: YYYY-MM-DD (7 days from regression)
|
|
37
|
+
- Re-promotion target window: <e.g., 2026-05-28 earliest>
|
|
38
|
+
- Owner: @domain-owner-handle
|
|
39
|
+
|
|
40
|
+
**Related ADR updates:**
|
|
41
|
+
- `<ADR-PIPELINE-NNN>` — <brief description of edit, typically flipping binding status>
|
|
42
|
+
|
|
43
|
+
**Reviewer approval:**
|
|
44
|
+
- [ ] On-call lead: @
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## Example
|
|
49
|
+
|
|
50
|
+
### Domain Regression: `quality_engineering` — gating → advisory
|
|
51
|
+
|
|
52
|
+
- **Date:** 2026-05-22
|
|
53
|
+
- **On-call / initiating engineer:** @dave
|
|
54
|
+
- **Binding:** `validation` (phase 8) / `mandatory_agents`
|
|
55
|
+
- **Agents affected:** Flaky Test Detection Agent, Defect Prediction Agent
|
|
56
|
+
- **From stage:** gating
|
|
57
|
+
- **To stage:** advisory (full binding moved back to optional_agents[])
|
|
58
|
+
- **Regression label on PR:** `emergency-change`
|
|
59
|
+
|
|
60
|
+
**Trigger:**
|
|
61
|
+
- Rule: fp-rate-exceeded
|
|
62
|
+
- Window: 7d
|
|
63
|
+
- Observed value: FP rate 6.1% (Flaky Test Detection contributing 4.8%; Defect Prediction contributing 1.3%)
|
|
64
|
+
- Threshold breached: 5.0%
|
|
65
|
+
|
|
66
|
+
**Kill-switch state at time of regression:**
|
|
67
|
+
- Env var: `AGENTICS_QE_GATING=advisory`
|
|
68
|
+
- Applied by: auto (observatory trigger at 2026-05-22T14:03:12Z)
|
|
69
|
+
- Applied at: 2026-05-22T14:03:12Z
|
|
70
|
+
- Applied reason: "auto: FP rate 6.1% exceeds 5% threshold over 7d window"
|
|
71
|
+
|
|
72
|
+
**Incident reference:**
|
|
73
|
+
- Incident-manager ticket: INC-2026-0518
|
|
74
|
+
- Severity: P2
|
|
75
|
+
- Pages dispatched: 1 (on-call@agentics.dev)
|
|
76
|
+
|
|
77
|
+
**Recovery plan:**
|
|
78
|
+
- RCA due by: 2026-05-29
|
|
79
|
+
- Re-promotion target window: 2026-06-22 earliest (30-day advisory restart)
|
|
80
|
+
- Owner: @alice
|
|
81
|
+
|
|
82
|
+
**Related ADR updates:**
|
|
83
|
+
- ADR-PIPELINE-083 — flip phase 8 QE bindings from mandatory back to optional pending RCA
|
|
84
|
+
|
|
85
|
+
**Reviewer approval:**
|
|
86
|
+
- [x] On-call lead: @dave
|