maestro-flow 0.3.3 → 0.3.5
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/.claude/commands/quality-business-test.md +110 -0
- package/.codex/skills/maestro-init/SKILL.md +167 -167
- package/.codex/skills/maestro-phase-add/SKILL.md +154 -154
- package/.codex/skills/maestro-phase-transition/SKILL.md +173 -173
- package/.codex/skills/maestro-verify/SKILL.md +566 -566
- package/.codex/skills/manage-codebase-rebuild/SKILL.md +5 -5
- package/.codex/skills/manage-codebase-refresh/SKILL.md +5 -5
- package/.codex/skills/manage-issue/SKILL.md +7 -7
- package/.codex/skills/manage-issue-analyze/SKILL.md +7 -7
- package/.codex/skills/manage-issue-discover/SKILL.md +503 -503
- package/.codex/skills/manage-issue-execute/SKILL.md +9 -9
- package/.codex/skills/manage-issue-plan/SKILL.md +8 -8
- package/.codex/skills/manage-learn/SKILL.md +7 -7
- package/.codex/skills/manage-memory/SKILL.md +72 -72
- package/.codex/skills/manage-memory-capture/SKILL.md +86 -86
- package/.codex/skills/manage-status/SKILL.md +2 -2
- package/.codex/skills/quality-business-test/SKILL.md +223 -0
- package/.codex/skills/quality-debug/SKILL.md +5 -5
- package/.codex/skills/quality-integration-test/SKILL.md +544 -544
- package/.codex/skills/quality-refactor/SKILL.md +6 -6
- package/.codex/skills/quality-retrospective/SKILL.md +10 -10
- package/.codex/skills/quality-review/SKILL.md +408 -408
- package/.codex/skills/quality-sync/SKILL.md +6 -6
- package/.codex/skills/quality-test/SKILL.md +5 -5
- package/.codex/skills/quality-test-gen/SKILL.md +447 -447
- package/.codex/skills/spec-add/SKILL.md +5 -5
- package/.codex/skills/spec-load/SKILL.md +5 -5
- package/.codex/skills/spec-map/SKILL.md +5 -5
- package/.codex/skills/spec-setup/SKILL.md +2 -2
- package/chains/_intent-map.json +6 -0
- package/chains/_router.json +14 -0
- package/chains/full-lifecycle.json +15 -0
- package/chains/quality-loop.json +16 -1
- package/chains/singles/business-test.json +26 -0
- package/dashboard/dist-server/dashboard/src/server/agents/codex-app-server-adapter.d.ts +4 -0
- package/dashboard/dist-server/dashboard/src/server/agents/codex-app-server-adapter.js +47 -1
- package/dashboard/dist-server/dashboard/src/server/agents/codex-app-server-adapter.js.map +1 -1
- package/dashboard/dist-server/dashboard/src/server/agents/codex-cli-adapter.js +16 -2
- package/dashboard/dist-server/dashboard/src/server/agents/codex-cli-adapter.js.map +1 -1
- package/dashboard/dist-server/dashboard/src/server/agents/stream-json-adapter.d.ts +1 -1
- package/dashboard/dist-server/dashboard/src/server/agents/stream-json-adapter.js +25 -9
- package/dashboard/dist-server/dashboard/src/server/agents/stream-json-adapter.js.map +1 -1
- package/dashboard/dist-server/src/agents/cli-agent-runner.d.ts +3 -0
- package/dashboard/dist-server/src/agents/cli-agent-runner.js +78 -61
- package/dashboard/dist-server/src/agents/cli-agent-runner.js.map +1 -1
- package/dashboard/dist-server/src/agents/cli-history-store.d.ts +14 -1
- package/dashboard/dist-server/src/agents/cli-history-store.js +24 -2
- package/dashboard/dist-server/src/agents/cli-history-store.js.map +1 -1
- package/dashboard/dist-server/src/commands/delegate.js +142 -6
- package/dashboard/dist-server/src/commands/delegate.js.map +1 -1
- package/dist/src/agents/cli-agent-runner.d.ts +3 -0
- package/dist/src/agents/cli-agent-runner.d.ts.map +1 -1
- package/dist/src/agents/cli-agent-runner.js +72 -46
- package/dist/src/agents/cli-agent-runner.js.map +1 -1
- package/dist/src/agents/cli-history-store.d.ts +14 -1
- package/dist/src/agents/cli-history-store.d.ts.map +1 -1
- package/dist/src/agents/cli-history-store.js +24 -2
- package/dist/src/agents/cli-history-store.js.map +1 -1
- package/dist/src/commands/delegate.d.ts.map +1 -1
- package/dist/src/commands/delegate.js +65 -5
- package/dist/src/commands/delegate.js.map +1 -1
- package/dist/src/commands/install-backend.d.ts.map +1 -1
- package/dist/src/commands/install-backend.js +5 -2
- package/dist/src/commands/install-backend.js.map +1 -1
- package/dist/src/mcp/delegate-channel-relay.d.ts.map +1 -1
- package/dist/src/mcp/delegate-channel-relay.js +7 -2
- package/dist/src/mcp/delegate-channel-relay.js.map +1 -1
- package/dist/src/mcp/server.js +1 -1
- package/dist/src/mcp/server.js.map +1 -1
- package/dist/src/tools/index.d.ts +1 -6
- package/dist/src/tools/index.d.ts.map +1 -1
- package/dist/src/tools/index.js +1 -451
- package/dist/src/tools/index.js.map +1 -1
- package/package.json +3 -2
- package/templates/business-test-report.json +68 -0
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_template_note": "Template for business-test-report.json. Fields marked with {placeholder} are filled at runtime.",
|
|
3
|
+
"phase": "{phase}",
|
|
4
|
+
"spec_ref": "{spec_ref}",
|
|
5
|
+
"spec_mode": "full|degraded",
|
|
6
|
+
"completed_at": "{ISO timestamp}",
|
|
7
|
+
"execution_mode": "gen-code|agent",
|
|
8
|
+
"iterations": {
|
|
9
|
+
"L1": { "count": 0, "converged": false },
|
|
10
|
+
"L2": { "count": 0, "converged": false },
|
|
11
|
+
"L3": { "count": 0, "converged": false }
|
|
12
|
+
},
|
|
13
|
+
"layers": {
|
|
14
|
+
"L1": { "total": 0, "passed": 0, "failed": 0, "blocked": 0, "pass_rate": 0.0 },
|
|
15
|
+
"L2": { "total": 0, "passed": 0, "failed": 0, "blocked": 0, "pass_rate": 0.0 },
|
|
16
|
+
"L3": { "total": 0, "passed": 0, "failed": 0, "blocked": 0, "pass_rate": 0.0 }
|
|
17
|
+
},
|
|
18
|
+
"requirement_coverage": [
|
|
19
|
+
{
|
|
20
|
+
"_example": true,
|
|
21
|
+
"req_id": "REQ-001",
|
|
22
|
+
"title": "Requirement title",
|
|
23
|
+
"total_criteria": 0,
|
|
24
|
+
"criteria_results": [
|
|
25
|
+
{
|
|
26
|
+
"ac_id": "AC-1",
|
|
27
|
+
"description": "Acceptance criterion text",
|
|
28
|
+
"priority": "critical|high|medium",
|
|
29
|
+
"status": "passed|failed|blocked|untested",
|
|
30
|
+
"tests": ["BT-001"],
|
|
31
|
+
"failure": null
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"coverage_pct": 0.0,
|
|
35
|
+
"verdict": "verified|partial|unverified"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"failures": [
|
|
39
|
+
{
|
|
40
|
+
"_example": true,
|
|
41
|
+
"id": "BF-001",
|
|
42
|
+
"test_id": "BT-001",
|
|
43
|
+
"req_ref": "REQ-001:AC-1",
|
|
44
|
+
"layer": "L1|L2|L3",
|
|
45
|
+
"severity": "critical|high|medium",
|
|
46
|
+
"classification": "code_defect|test_defect|env_issue",
|
|
47
|
+
"description": "Failure description",
|
|
48
|
+
"expected": "Expected behavior",
|
|
49
|
+
"actual": "Actual behavior",
|
|
50
|
+
"fix_suggestion": {
|
|
51
|
+
"file": "src/...",
|
|
52
|
+
"line": 0,
|
|
53
|
+
"direction": "Fix direction"
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
],
|
|
57
|
+
"summary": {
|
|
58
|
+
"total_requirements": 0,
|
|
59
|
+
"fully_verified": 0,
|
|
60
|
+
"partially_verified": 0,
|
|
61
|
+
"unverified": 0,
|
|
62
|
+
"coverage_pct": 0.0,
|
|
63
|
+
"total_scenarios": 0,
|
|
64
|
+
"total_passed": 0,
|
|
65
|
+
"total_failed": 0,
|
|
66
|
+
"total_blocked": 0
|
|
67
|
+
}
|
|
68
|
+
}
|