opencastle 0.32.5 → 0.32.7

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.
Files changed (109) hide show
  1. package/README.md +13 -3
  2. package/bin/cli.mjs +2 -0
  3. package/dist/cli/convoy/engine.d.ts.map +1 -1
  4. package/dist/cli/convoy/engine.js +79 -4
  5. package/dist/cli/convoy/engine.js.map +1 -1
  6. package/dist/cli/convoy/engine.test.js +11 -9
  7. package/dist/cli/convoy/engine.test.js.map +1 -1
  8. package/dist/dashboard/scripts/etl.js +17 -2
  9. package/dist/dashboard/scripts/etl.js.map +1 -1
  10. package/package.json +1 -1
  11. package/src/cli/convoy/engine.test.ts +11 -9
  12. package/src/cli/convoy/engine.ts +78 -4
  13. package/src/dashboard/dist/_astro/index.6xXNs4L2.css +1 -0
  14. package/src/dashboard/dist/data/convoy-list.json +27 -13
  15. package/src/dashboard/dist/data/convoys/demo-api-v2.json +16 -10
  16. package/src/dashboard/dist/data/convoys/demo-auth-revamp.json +25 -15
  17. package/src/dashboard/dist/data/convoys/demo-dashboard-ui.json +35 -21
  18. package/src/dashboard/dist/data/convoys/demo-data-pipeline.json +17 -11
  19. package/src/dashboard/dist/data/convoys/demo-deploy-ci.json +8 -4
  20. package/src/dashboard/dist/data/convoys/demo-docs-update.json +13 -9
  21. package/src/dashboard/dist/data/convoys/demo-perf-opt.json +22 -14
  22. package/src/dashboard/dist/data/overall-stats.json +36 -2
  23. package/src/dashboard/dist/index.html +149 -93
  24. package/src/dashboard/node_modules/.vite/deps/_metadata.json +6 -6
  25. package/src/dashboard/public/data/convoy-list.json +27 -13
  26. package/src/dashboard/public/data/convoys/demo-api-v2.json +16 -10
  27. package/src/dashboard/public/data/convoys/demo-auth-revamp.json +25 -15
  28. package/src/dashboard/public/data/convoys/demo-dashboard-ui.json +35 -21
  29. package/src/dashboard/public/data/convoys/demo-data-pipeline.json +17 -11
  30. package/src/dashboard/public/data/convoys/demo-deploy-ci.json +8 -4
  31. package/src/dashboard/public/data/convoys/demo-docs-update.json +13 -9
  32. package/src/dashboard/public/data/convoys/demo-perf-opt.json +22 -14
  33. package/src/dashboard/public/data/overall-stats.json +36 -2
  34. package/src/dashboard/scripts/etl.ts +15 -3
  35. package/src/dashboard/scripts/generate-demo-db.ts +42 -34
  36. package/src/dashboard/src/pages/index.astro +159 -112
  37. package/src/dashboard/src/styles/dashboard.css +58 -3
  38. package/src/orchestrator/agents/api-designer.agent.md +25 -34
  39. package/src/orchestrator/agents/architect.agent.md +40 -84
  40. package/src/orchestrator/agents/content-engineer.agent.md +29 -31
  41. package/src/orchestrator/agents/copywriter.agent.md +35 -60
  42. package/src/orchestrator/agents/data-expert.agent.md +24 -30
  43. package/src/orchestrator/agents/database-engineer.agent.md +26 -31
  44. package/src/orchestrator/agents/developer.agent.md +32 -34
  45. package/src/orchestrator/agents/devops-expert.agent.md +31 -26
  46. package/src/orchestrator/agents/documentation-writer.agent.md +29 -29
  47. package/src/orchestrator/agents/performance-expert.agent.md +36 -33
  48. package/src/orchestrator/agents/release-manager.agent.md +25 -34
  49. package/src/orchestrator/agents/researcher.agent.md +41 -95
  50. package/src/orchestrator/agents/reviewer.agent.md +24 -34
  51. package/src/orchestrator/agents/security-expert.agent.md +35 -39
  52. package/src/orchestrator/agents/seo-specialist.agent.md +25 -32
  53. package/src/orchestrator/agents/session-guard.agent.md +20 -79
  54. package/src/orchestrator/agents/team-lead.agent.md +50 -254
  55. package/src/orchestrator/agents/testing-expert.agent.md +37 -49
  56. package/src/orchestrator/agents/ui-ux-expert.agent.md +33 -39
  57. package/src/orchestrator/customizations/KNOWN-ISSUES.md +0 -1
  58. package/src/orchestrator/customizations/agents/skill-matrix.json +12 -0
  59. package/src/orchestrator/instructions/general.instructions.md +24 -84
  60. package/src/orchestrator/plugins/astro/SKILL.md +23 -179
  61. package/src/orchestrator/plugins/convex/SKILL.md +38 -12
  62. package/src/orchestrator/plugins/netlify/SKILL.md +17 -13
  63. package/src/orchestrator/plugins/nextjs/SKILL.md +55 -261
  64. package/src/orchestrator/plugins/nx/SKILL.md +20 -72
  65. package/src/orchestrator/plugins/playwright/SKILL.md +5 -17
  66. package/src/orchestrator/plugins/slack/SKILL.md +28 -190
  67. package/src/orchestrator/plugins/teams/SKILL.md +10 -140
  68. package/src/orchestrator/plugins/vitest/SKILL.md +2 -2
  69. package/src/orchestrator/prompts/bug-fix.prompt.md +25 -63
  70. package/src/orchestrator/prompts/implement-feature.prompt.md +29 -66
  71. package/src/orchestrator/prompts/quick-refinement.prompt.md +31 -66
  72. package/src/orchestrator/skills/accessibility-standards/SKILL.md +50 -105
  73. package/src/orchestrator/skills/agent-hooks/SKILL.md +60 -110
  74. package/src/orchestrator/skills/agent-memory/SKILL.md +44 -93
  75. package/src/orchestrator/skills/api-patterns/SKILL.md +20 -68
  76. package/src/orchestrator/skills/code-commenting/SKILL.md +49 -101
  77. package/src/orchestrator/skills/context-map/SKILL.md +47 -88
  78. package/src/orchestrator/skills/data-engineering/SKILL.md +27 -74
  79. package/src/orchestrator/skills/decomposition/SKILL.md +50 -98
  80. package/src/orchestrator/skills/deployment-infrastructure/SKILL.md +44 -107
  81. package/src/orchestrator/skills/documentation-standards/SKILL.md +28 -89
  82. package/src/orchestrator/skills/fast-review/SKILL.md +51 -276
  83. package/src/orchestrator/skills/frontend-design/SKILL.md +53 -163
  84. package/src/orchestrator/skills/git-workflow/SKILL.md +18 -54
  85. package/src/orchestrator/skills/memory-merger/SKILL.md +51 -88
  86. package/src/orchestrator/skills/observability-logging/SKILL.md +29 -75
  87. package/src/orchestrator/skills/orchestration-protocols/SKILL.md +58 -117
  88. package/src/orchestrator/skills/panel-majority-vote/SKILL.md +65 -140
  89. package/src/orchestrator/skills/performance-optimization/SKILL.md +21 -85
  90. package/src/orchestrator/skills/project-consistency/SKILL.md +62 -281
  91. package/src/orchestrator/skills/react-development/SKILL.md +38 -86
  92. package/src/orchestrator/skills/security-hardening/SKILL.md +40 -84
  93. package/src/orchestrator/skills/self-improvement/SKILL.md +26 -60
  94. package/src/orchestrator/skills/seo-patterns/SKILL.md +40 -105
  95. package/src/orchestrator/skills/session-checkpoints/SKILL.md +26 -68
  96. package/src/orchestrator/skills/team-lead-reference/SKILL.md +66 -206
  97. package/src/orchestrator/skills/testing-workflow/SKILL.md +42 -112
  98. package/src/orchestrator/skills/validation-gates/SKILL.md +39 -170
  99. package/src/orchestrator/snippets/base-output-contract.md +14 -0
  100. package/src/orchestrator/snippets/discovered-issues-policy.md +15 -0
  101. package/src/orchestrator/snippets/logging-mandatory.md +11 -0
  102. package/src/orchestrator/snippets/never-expose-secrets.md +22 -0
  103. package/src/dashboard/dist/_astro/index.wyN9vmjZ.css +0 -1
  104. package/src/dashboard/dist/data/convoys/demo-convoy-1.json +0 -111
  105. package/src/dashboard/dist/data/convoys/demo-convoy-2.json +0 -72
  106. package/src/dashboard/dist/data/pipelines.ndjson +0 -5285
  107. package/src/dashboard/public/data/convoys/demo-convoy-1.json +0 -111
  108. package/src/dashboard/public/data/convoys/demo-convoy-2.json +0 -72
  109. package/src/dashboard/public/data/pipelines.ndjson +0 -5285
@@ -1,25 +1,25 @@
1
1
  {
2
- "hash": "eff3f6a1",
2
+ "hash": "709ba74f",
3
3
  "configHash": "30f8ea04",
4
- "lockfileHash": "ccaf53c6",
5
- "browserHash": "9471cdae",
4
+ "lockfileHash": "5b9726e2",
5
+ "browserHash": "656db524",
6
6
  "optimized": {
7
7
  "astro > cssesc": {
8
8
  "src": "../../../../../node_modules/cssesc/cssesc.js",
9
9
  "file": "astro___cssesc.js",
10
- "fileHash": "572bec31",
10
+ "fileHash": "9677a5ff",
11
11
  "needsInterop": true
12
12
  },
13
13
  "astro > aria-query": {
14
14
  "src": "../../../../../node_modules/aria-query/lib/index.js",
15
15
  "file": "astro___aria-query.js",
16
- "fileHash": "1dab2aff",
16
+ "fileHash": "2840de59",
17
17
  "needsInterop": true
18
18
  },
19
19
  "astro > axobject-query": {
20
20
  "src": "../../../../../node_modules/axobject-query/lib/index.js",
21
21
  "file": "astro___axobject-query.js",
22
- "fileHash": "628f9668",
22
+ "fileHash": "677d1f61",
23
23
  "needsInterop": true
24
24
  }
25
25
  },
@@ -4,76 +4,90 @@
4
4
  "name": "CI/CD Pipeline Setup",
5
5
  "status": "running",
6
6
  "created_at": "2026-03-11T08:00:00.000Z",
7
+ "started_at": "2026-03-11T08:00:00.000Z",
7
8
  "finished_at": null,
8
9
  "total_tokens": null,
9
10
  "total_cost_usd": null,
10
11
  "task_count": 3,
11
- "pipeline_id": null
12
+ "pipeline_id": null,
13
+ "pipeline_name": null
12
14
  },
13
15
  {
14
16
  "id": "demo-docs-update",
15
17
  "name": "Documentation Refresh",
16
18
  "status": "done",
17
19
  "created_at": "2026-02-28T15:00:00.000Z",
20
+ "started_at": "2026-02-28T15:00:00.000Z",
18
21
  "finished_at": "2026-02-28T15:22:00.000Z",
19
22
  "total_tokens": 14800,
20
- "total_cost_usd": 1.48,
23
+ "total_cost_usd": 0.0296,
21
24
  "task_count": 3,
22
- "pipeline_id": null
25
+ "pipeline_id": null,
26
+ "pipeline_name": null
23
27
  },
24
28
  {
25
29
  "id": "demo-data-pipeline",
26
30
  "name": "Analytics ETL Pipeline",
27
31
  "status": "done",
28
32
  "created_at": "2026-02-22T13:00:00.000Z",
33
+ "started_at": "2026-02-22T13:00:00.000Z",
29
34
  "finished_at": "2026-02-22T13:38:00.000Z",
30
35
  "total_tokens": 28900,
31
- "total_cost_usd": 2.89,
36
+ "total_cost_usd": 0.2312,
32
37
  "task_count": 4,
33
- "pipeline_id": null
38
+ "pipeline_id": null,
39
+ "pipeline_name": null
34
40
  },
35
41
  {
36
42
  "id": "demo-perf-opt",
37
43
  "name": "Frontend Performance Boost",
38
44
  "status": "done",
39
45
  "created_at": "2026-02-17T10:00:00.000Z",
46
+ "started_at": "2026-02-17T10:00:00.000Z",
40
47
  "finished_at": "2026-02-17T11:02:00.000Z",
41
48
  "total_tokens": 37200,
42
- "total_cost_usd": 3.72,
49
+ "total_cost_usd": 0.2976,
43
50
  "task_count": 5,
44
- "pipeline_id": null
51
+ "pipeline_id": null,
52
+ "pipeline_name": null
45
53
  },
46
54
  {
47
55
  "id": "demo-api-v2",
48
56
  "name": "REST API v2 Migration",
49
57
  "status": "gate_failed",
50
58
  "created_at": "2026-02-12T16:00:00.000Z",
59
+ "started_at": "2026-02-12T16:00:00.000Z",
51
60
  "finished_at": "2026-02-12T16:28:00.000Z",
52
61
  "total_tokens": 24600,
53
- "total_cost_usd": 2.46,
62
+ "total_cost_usd": 0.1968,
54
63
  "task_count": 3,
55
- "pipeline_id": null
64
+ "pipeline_id": null,
65
+ "pipeline_name": null
56
66
  },
57
67
  {
58
68
  "id": "demo-dashboard-ui",
59
69
  "name": "Observability Dashboard UI",
60
70
  "status": "done",
61
71
  "created_at": "2026-02-07T14:00:00.000Z",
72
+ "started_at": "2026-02-07T14:00:00.000Z",
62
73
  "finished_at": "2026-02-07T15:38:00.000Z",
63
74
  "total_tokens": 78400,
64
- "total_cost_usd": 7.84,
75
+ "total_cost_usd": 1.4993,
65
76
  "task_count": 7,
66
- "pipeline_id": "demo-pipeline-1"
77
+ "pipeline_id": "demo-pipeline-1",
78
+ "pipeline_name": "Auth & Dashboard Sprint"
67
79
  },
68
80
  {
69
81
  "id": "demo-auth-revamp",
70
82
  "name": "Auth System Revamp",
71
83
  "status": "done",
72
84
  "created_at": "2026-02-03T09:00:00.000Z",
85
+ "started_at": "2026-02-03T09:00:00.000Z",
73
86
  "finished_at": "2026-02-03T09:47:00.000Z",
74
87
  "total_tokens": 42850,
75
- "total_cost_usd": 4.28,
88
+ "total_cost_usd": 0.5696,
76
89
  "task_count": 5,
77
- "pipeline_id": "demo-pipeline-1"
90
+ "pipeline_id": "demo-pipeline-1",
91
+ "pipeline_name": "Auth & Dashboard Sprint"
78
92
  }
79
93
  ]
@@ -7,7 +7,7 @@
7
7
  "finished_at": "2026-02-12T16:28:00.000Z",
8
8
  "branch": "feat/api-v2",
9
9
  "total_tokens": 24600,
10
- "total_cost_usd": 2.46
10
+ "total_cost_usd": 0.1968
11
11
  },
12
12
  "taskSummary": {
13
13
  "total": 3,
@@ -51,21 +51,21 @@
51
51
  "name": "docs/api-v2-contract.json",
52
52
  "type": "json",
53
53
  "task_id": "api-t1",
54
- "created_at": "2026-03-12T22:26:01.388Z"
54
+ "created_at": "2026-03-18T01:18:30.528Z"
55
55
  },
56
56
  {
57
57
  "id": "artifact-demo-api-v2-reports-security-gate-failure-md",
58
58
  "name": "reports/security-gate-failure.md",
59
59
  "type": "summary",
60
60
  "task_id": "api-t3",
61
- "created_at": "2026-03-12T22:26:01.388Z"
61
+ "created_at": "2026-03-18T01:18:30.528Z"
62
62
  },
63
63
  {
64
64
  "id": "artifact-demo-api-v2-src-api-rate-limiter-ts",
65
65
  "name": "src/api/rate-limiter.ts",
66
66
  "type": "file",
67
67
  "task_id": "api-t2",
68
- "created_at": "2026-03-12T22:26:01.388Z"
68
+ "created_at": "2026-03-18T01:18:30.528Z"
69
69
  }
70
70
  ],
71
71
  "has_more_events": false,
@@ -81,7 +81,9 @@
81
81
  {
82
82
  "type": "task_started",
83
83
  "task_id": "api-t3",
84
- "data": {"mechanism": "sub-agent"},
84
+ "data": {
85
+ "mechanism": "sub-agent"
86
+ },
85
87
  "created_at": "2026-02-12T16:24:00.000Z"
86
88
  },
87
89
  {
@@ -93,7 +95,9 @@
93
95
  {
94
96
  "type": "task_started",
95
97
  "task_id": "api-t2",
96
- "data": {"mechanism": "background"},
98
+ "data": {
99
+ "mechanism": "background"
100
+ },
97
101
  "created_at": "2026-02-12T16:12:00.000Z"
98
102
  },
99
103
  {
@@ -105,7 +109,9 @@
105
109
  {
106
110
  "type": "task_started",
107
111
  "task_id": "api-t1",
108
- "data": {"mechanism": "sub-agent"},
112
+ "data": {
113
+ "mechanism": "sub-agent"
114
+ },
109
115
  "created_at": "2026-02-12T16:00:05.000Z"
110
116
  }
111
117
  ],
@@ -120,7 +126,7 @@
120
126
  "started_at": "2026-02-12T16:00:05.000Z",
121
127
  "finished_at": "2026-02-12T16:11:00.000Z",
122
128
  "total_tokens": 7200,
123
- "cost_usd": 0.72,
129
+ "cost_usd": 0.03888,
124
130
  "review_level": null,
125
131
  "review_verdict": null,
126
132
  "review_tokens": null,
@@ -141,7 +147,7 @@
141
147
  "started_at": "2026-02-12T16:12:00.000Z",
142
148
  "finished_at": "2026-02-12T16:23:00.000Z",
143
149
  "total_tokens": 11400,
144
- "cost_usd": 1.14,
150
+ "cost_usd": 0.061560000000000004,
145
151
  "review_level": null,
146
152
  "review_verdict": null,
147
153
  "review_tokens": null,
@@ -162,7 +168,7 @@
162
168
  "started_at": "2026-02-12T16:24:00.000Z",
163
169
  "finished_at": "2026-02-12T16:27:00.000Z",
164
170
  "total_tokens": 6000,
165
- "cost_usd": 0.6,
171
+ "cost_usd": 0.0324,
166
172
  "review_level": "deep",
167
173
  "review_verdict": "block",
168
174
  "review_tokens": 2100,
@@ -7,7 +7,7 @@
7
7
  "finished_at": "2026-02-03T09:47:00.000Z",
8
8
  "branch": "feat/auth-v2",
9
9
  "total_tokens": 42850,
10
- "total_cost_usd": 4.28
10
+ "total_cost_usd": 0.5696
11
11
  },
12
12
  "taskSummary": {
13
13
  "total": 5,
@@ -42,28 +42,28 @@
42
42
  "name": "libs/auth/src/jwt-middleware.ts",
43
43
  "type": "file",
44
44
  "task_id": "auth-t2",
45
- "created_at": "2026-03-12T22:26:01.388Z"
45
+ "created_at": "2026-03-18T01:18:30.527Z"
46
46
  },
47
47
  {
48
48
  "id": "artifact-demo-auth-revamp-libs-auth-src-rls-policies-sql",
49
49
  "name": "libs/auth/src/rls-policies.sql",
50
50
  "type": "file",
51
51
  "task_id": "auth-t3",
52
- "created_at": "2026-03-12T22:26:01.388Z"
52
+ "created_at": "2026-03-18T01:18:30.527Z"
53
53
  },
54
54
  {
55
55
  "id": "artifact-demo-auth-revamp-reports-auth-review-summary-md",
56
56
  "name": "reports/auth-review-summary.md",
57
57
  "type": "summary",
58
58
  "task_id": "auth-t5",
59
- "created_at": "2026-03-12T22:26:01.388Z"
59
+ "created_at": "2026-03-18T01:18:30.528Z"
60
60
  },
61
61
  {
62
62
  "id": "artifact-demo-auth-revamp-tests-auth-integration-test-ts",
63
63
  "name": "tests/auth/integration.test.ts",
64
64
  "type": "file",
65
65
  "task_id": "auth-t4",
66
- "created_at": "2026-03-12T22:26:01.388Z"
66
+ "created_at": "2026-03-18T01:18:30.528Z"
67
67
  }
68
68
  ],
69
69
  "has_more_events": false,
@@ -77,7 +77,9 @@
77
77
  {
78
78
  "type": "task_started",
79
79
  "task_id": "auth-t5",
80
- "data": {"mechanism": "sub-agent"},
80
+ "data": {
81
+ "mechanism": "sub-agent"
82
+ },
81
83
  "created_at": "2026-02-03T09:38:00.000Z"
82
84
  },
83
85
  {
@@ -89,7 +91,9 @@
89
91
  {
90
92
  "type": "task_started",
91
93
  "task_id": "auth-t4",
92
- "data": {"mechanism": "sub-agent"},
94
+ "data": {
95
+ "mechanism": "sub-agent"
96
+ },
93
97
  "created_at": "2026-02-03T09:25:00.000Z"
94
98
  },
95
99
  {
@@ -101,7 +105,9 @@
101
105
  {
102
106
  "type": "task_started",
103
107
  "task_id": "auth-t3",
104
- "data": {"mechanism": "sub-agent"},
108
+ "data": {
109
+ "mechanism": "sub-agent"
110
+ },
105
111
  "created_at": "2026-02-03T09:10:00.000Z"
106
112
  },
107
113
  {
@@ -113,7 +119,9 @@
113
119
  {
114
120
  "type": "task_started",
115
121
  "task_id": "auth-t2",
116
- "data": {"mechanism": "background"},
122
+ "data": {
123
+ "mechanism": "background"
124
+ },
117
125
  "created_at": "2026-02-03T09:10:00.000Z"
118
126
  },
119
127
  {
@@ -125,7 +133,9 @@
125
133
  {
126
134
  "type": "task_started",
127
135
  "task_id": "auth-t1",
128
- "data": {"mechanism": "sub-agent"},
136
+ "data": {
137
+ "mechanism": "sub-agent"
138
+ },
129
139
  "created_at": "2026-02-03T09:00:05.000Z"
130
140
  }
131
141
  ],
@@ -140,7 +150,7 @@
140
150
  "started_at": "2026-02-03T09:00:05.000Z",
141
151
  "finished_at": "2026-02-03T09:09:00.000Z",
142
152
  "total_tokens": 8400,
143
- "cost_usd": 0.84,
153
+ "cost_usd": 0.2268,
144
154
  "review_level": null,
145
155
  "review_verdict": null,
146
156
  "review_tokens": null,
@@ -161,7 +171,7 @@
161
171
  "started_at": "2026-02-03T09:10:00.000Z",
162
172
  "finished_at": "2026-02-03T09:24:00.000Z",
163
173
  "total_tokens": 12600,
164
- "cost_usd": 1.26,
174
+ "cost_usd": 0.06804,
165
175
  "review_level": null,
166
176
  "review_verdict": null,
167
177
  "review_tokens": null,
@@ -182,7 +192,7 @@
182
192
  "started_at": "2026-02-03T09:10:00.000Z",
183
193
  "finished_at": "2026-02-03T09:20:00.000Z",
184
194
  "total_tokens": 9200,
185
- "cost_usd": 0.92,
195
+ "cost_usd": 0.04968,
186
196
  "review_level": null,
187
197
  "review_verdict": null,
188
198
  "review_tokens": null,
@@ -203,7 +213,7 @@
203
213
  "started_at": "2026-02-03T09:25:00.000Z",
204
214
  "finished_at": "2026-02-03T09:37:00.000Z",
205
215
  "total_tokens": 8900,
206
- "cost_usd": 0.89,
216
+ "cost_usd": 0.048060000000000005,
207
217
  "review_level": null,
208
218
  "review_verdict": null,
209
219
  "review_tokens": null,
@@ -224,7 +234,7 @@
224
234
  "started_at": "2026-02-03T09:38:00.000Z",
225
235
  "finished_at": "2026-02-03T09:46:00.000Z",
226
236
  "total_tokens": 3750,
227
- "cost_usd": 0.37,
237
+ "cost_usd": 0.02025,
228
238
  "review_level": "fast",
229
239
  "review_verdict": "pass",
230
240
  "review_tokens": 1850,
@@ -7,7 +7,7 @@
7
7
  "finished_at": "2026-02-07T15:38:00.000Z",
8
8
  "branch": "feat/dashboard-v2",
9
9
  "total_tokens": 78400,
10
- "total_cost_usd": 7.84
10
+ "total_cost_usd": 1.4993
11
11
  },
12
12
  "taskSummary": {
13
13
  "total": 7,
@@ -51,42 +51,42 @@
51
51
  "name": "reports/panel-review-dashboard.md",
52
52
  "type": "summary",
53
53
  "task_id": "ui-t7",
54
- "created_at": "2026-03-12T22:26:01.388Z"
54
+ "created_at": "2026-03-18T01:18:30.528Z"
55
55
  },
56
56
  {
57
57
  "id": "artifact-demo-dashboard-ui-reports-visual-regression-json",
58
58
  "name": "reports/visual-regression.json",
59
59
  "type": "json",
60
60
  "task_id": "ui-t6",
61
- "created_at": "2026-03-12T22:26:01.388Z"
61
+ "created_at": "2026-03-18T01:18:30.528Z"
62
62
  },
63
63
  {
64
64
  "id": "artifact-demo-dashboard-ui-src-components-DonutChart-tsx",
65
65
  "name": "src/components/DonutChart.tsx",
66
66
  "type": "file",
67
67
  "task_id": "ui-t3",
68
- "created_at": "2026-03-12T22:26:01.388Z"
68
+ "created_at": "2026-03-18T01:18:30.528Z"
69
69
  },
70
70
  {
71
71
  "id": "artifact-demo-dashboard-ui-src-components-KpiCard-tsx",
72
72
  "name": "src/components/KpiCard.tsx",
73
73
  "type": "file",
74
74
  "task_id": "ui-t2",
75
- "created_at": "2026-03-12T22:26:01.388Z"
75
+ "created_at": "2026-03-18T01:18:30.528Z"
76
76
  },
77
77
  {
78
78
  "id": "artifact-demo-dashboard-ui-src-components-design-tokens-ts",
79
79
  "name": "src/components/design-tokens.ts",
80
80
  "type": "file",
81
81
  "task_id": "ui-t1",
82
- "created_at": "2026-03-12T22:26:01.388Z"
82
+ "created_at": "2026-03-18T01:18:30.528Z"
83
83
  },
84
84
  {
85
85
  "id": "artifact-demo-dashboard-ui-src-styles-animations-css",
86
86
  "name": "src/styles/animations.css",
87
87
  "type": "file",
88
88
  "task_id": "ui-t4",
89
- "created_at": "2026-03-12T22:26:01.388Z"
89
+ "created_at": "2026-03-18T01:18:30.528Z"
90
90
  }
91
91
  ],
92
92
  "has_more_events": false,
@@ -100,7 +100,9 @@
100
100
  {
101
101
  "type": "task_started",
102
102
  "task_id": "ui-t7",
103
- "data": {"mechanism": "sub-agent"},
103
+ "data": {
104
+ "mechanism": "sub-agent"
105
+ },
104
106
  "created_at": "2026-02-07T15:03:00.000Z"
105
107
  },
106
108
  {
@@ -112,7 +114,9 @@
112
114
  {
113
115
  "type": "task_started",
114
116
  "task_id": "ui-t6",
115
- "data": {"mechanism": "background"},
117
+ "data": {
118
+ "mechanism": "sub-agent"
119
+ },
116
120
  "created_at": "2026-02-07T14:45:00.000Z"
117
121
  },
118
122
  {
@@ -124,7 +128,9 @@
124
128
  {
125
129
  "type": "task_started",
126
130
  "task_id": "ui-t5",
127
- "data": {"mechanism": "sub-agent"},
131
+ "data": {
132
+ "mechanism": "sub-agent"
133
+ },
128
134
  "created_at": "2026-02-07T14:45:00.000Z"
129
135
  },
130
136
  {
@@ -136,7 +142,9 @@
136
142
  {
137
143
  "type": "task_started",
138
144
  "task_id": "ui-t4",
139
- "data": {"mechanism": "background"},
145
+ "data": {
146
+ "mechanism": "background"
147
+ },
140
148
  "created_at": "2026-02-07T14:20:00.000Z"
141
149
  },
142
150
  {
@@ -148,7 +156,9 @@
148
156
  {
149
157
  "type": "task_started",
150
158
  "task_id": "ui-t3",
151
- "data": {"mechanism": "background"},
159
+ "data": {
160
+ "mechanism": "background"
161
+ },
152
162
  "created_at": "2026-02-07T14:20:00.000Z"
153
163
  },
154
164
  {
@@ -160,7 +170,9 @@
160
170
  {
161
171
  "type": "task_started",
162
172
  "task_id": "ui-t2",
163
- "data": {"mechanism": "background"},
173
+ "data": {
174
+ "mechanism": "sub-agent"
175
+ },
164
176
  "created_at": "2026-02-07T14:00:05.000Z"
165
177
  },
166
178
  {
@@ -172,7 +184,9 @@
172
184
  {
173
185
  "type": "task_started",
174
186
  "task_id": "ui-t1",
175
- "data": {"mechanism": "sub-agent"},
187
+ "data": {
188
+ "mechanism": "sub-agent"
189
+ },
176
190
  "created_at": "2026-02-07T14:00:05.000Z"
177
191
  }
178
192
  ],
@@ -187,7 +201,7 @@
187
201
  "started_at": "2026-02-07T14:00:05.000Z",
188
202
  "finished_at": "2026-02-07T14:19:00.000Z",
189
203
  "total_tokens": 14200,
190
- "cost_usd": 1.42,
204
+ "cost_usd": 0.38339999999999996,
191
205
  "review_level": null,
192
206
  "review_verdict": null,
193
207
  "review_tokens": null,
@@ -208,7 +222,7 @@
208
222
  "started_at": "2026-02-07T14:00:05.000Z",
209
223
  "finished_at": "2026-02-07T14:16:00.000Z",
210
224
  "total_tokens": 11800,
211
- "cost_usd": 1.18,
225
+ "cost_usd": 0.06372,
212
226
  "review_level": null,
213
227
  "review_verdict": null,
214
228
  "review_tokens": null,
@@ -229,7 +243,7 @@
229
243
  "started_at": "2026-02-07T14:20:00.000Z",
230
244
  "finished_at": "2026-02-07T14:44:00.000Z",
231
245
  "total_tokens": 13500,
232
- "cost_usd": 1.35,
246
+ "cost_usd": 0.07289999999999999,
233
247
  "review_level": null,
234
248
  "review_verdict": null,
235
249
  "review_tokens": null,
@@ -250,7 +264,7 @@
250
264
  "started_at": "2026-02-07T14:20:00.000Z",
251
265
  "finished_at": "2026-02-07T14:38:00.000Z",
252
266
  "total_tokens": 9400,
253
- "cost_usd": 0.94,
267
+ "cost_usd": 0.25379999999999997,
254
268
  "review_level": null,
255
269
  "review_verdict": null,
256
270
  "review_tokens": null,
@@ -271,7 +285,7 @@
271
285
  "started_at": "2026-02-07T14:45:00.000Z",
272
286
  "finished_at": "2026-02-07T14:58:00.000Z",
273
287
  "total_tokens": 8700,
274
- "cost_usd": 0.87,
288
+ "cost_usd": 0.2349,
275
289
  "review_level": null,
276
290
  "review_verdict": null,
277
291
  "review_tokens": null,
@@ -292,7 +306,7 @@
292
306
  "started_at": "2026-02-07T14:45:00.000Z",
293
307
  "finished_at": "2026-02-07T15:02:00.000Z",
294
308
  "total_tokens": 11200,
295
- "cost_usd": 1.12,
309
+ "cost_usd": 0.06048,
296
310
  "review_level": null,
297
311
  "review_verdict": null,
298
312
  "review_tokens": null,
@@ -313,7 +327,7 @@
313
327
  "started_at": "2026-02-07T15:03:00.000Z",
314
328
  "finished_at": "2026-02-07T15:37:00.000Z",
315
329
  "total_tokens": 9600,
316
- "cost_usd": 0.96,
330
+ "cost_usd": 0.05184,
317
331
  "review_level": "panel",
318
332
  "review_verdict": "pass",
319
333
  "review_tokens": 4800,
@@ -7,7 +7,7 @@
7
7
  "finished_at": "2026-02-22T13:38:00.000Z",
8
8
  "branch": "feat/etl-v2",
9
9
  "total_tokens": 28900,
10
- "total_cost_usd": 2.89
10
+ "total_cost_usd": 0.2312
11
11
  },
12
12
  "taskSummary": {
13
13
  "total": 4,
@@ -42,21 +42,21 @@
42
42
  "name": "src/etl/pipeline.ts",
43
43
  "type": "file",
44
44
  "task_id": "etl-t2",
45
- "created_at": "2026-03-12T22:26:01.388Z"
45
+ "created_at": "2026-03-18T01:18:30.529Z"
46
46
  },
47
47
  {
48
48
  "id": "artifact-demo-data-pipeline-src-etl-schema-ts",
49
49
  "name": "src/etl/schema.ts",
50
50
  "type": "file",
51
51
  "task_id": "etl-t1",
52
- "created_at": "2026-03-12T22:26:01.388Z"
52
+ "created_at": "2026-03-18T01:18:30.529Z"
53
53
  },
54
54
  {
55
55
  "id": "artifact-demo-data-pipeline-tests-etl-pipeline-test-ts",
56
56
  "name": "tests/etl/pipeline.test.ts",
57
57
  "type": "file",
58
58
  "task_id": "etl-t3",
59
- "created_at": "2026-03-12T22:26:01.388Z"
59
+ "created_at": "2026-03-18T01:18:30.529Z"
60
60
  }
61
61
  ],
62
62
  "has_more_events": false,
@@ -70,7 +70,9 @@
70
70
  {
71
71
  "type": "task_started",
72
72
  "task_id": "etl-t3",
73
- "data": {"mechanism": "sub-agent"},
73
+ "data": {
74
+ "mechanism": "sub-agent"
75
+ },
74
76
  "created_at": "2026-02-22T13:31:00.000Z"
75
77
  },
76
78
  {
@@ -82,7 +84,9 @@
82
84
  {
83
85
  "type": "task_started",
84
86
  "task_id": "etl-t2",
85
- "data": {"mechanism": "background"},
87
+ "data": {
88
+ "mechanism": "background"
89
+ },
86
90
  "created_at": "2026-02-22T13:12:00.000Z"
87
91
  },
88
92
  {
@@ -94,7 +98,9 @@
94
98
  {
95
99
  "type": "task_started",
96
100
  "task_id": "etl-t1",
97
- "data": {"mechanism": "sub-agent"},
101
+ "data": {
102
+ "mechanism": "sub-agent"
103
+ },
98
104
  "created_at": "2026-02-22T13:00:05.000Z"
99
105
  }
100
106
  ],
@@ -109,7 +115,7 @@
109
115
  "started_at": "2026-02-22T13:00:05.000Z",
110
116
  "finished_at": "2026-02-22T13:11:00.000Z",
111
117
  "total_tokens": 7800,
112
- "cost_usd": 0.78,
118
+ "cost_usd": 0.042120000000000005,
113
119
  "review_level": null,
114
120
  "review_verdict": null,
115
121
  "review_tokens": null,
@@ -130,7 +136,7 @@
130
136
  "started_at": "2026-02-22T13:12:00.000Z",
131
137
  "finished_at": "2026-02-22T13:30:00.000Z",
132
138
  "total_tokens": 12400,
133
- "cost_usd": 1.24,
139
+ "cost_usd": 0.06696,
134
140
  "review_level": null,
135
141
  "review_verdict": null,
136
142
  "review_tokens": null,
@@ -151,7 +157,7 @@
151
157
  "started_at": "2026-02-22T13:31:00.000Z",
152
158
  "finished_at": "2026-02-22T13:37:00.000Z",
153
159
  "total_tokens": 8700,
154
- "cost_usd": 0.87,
160
+ "cost_usd": 0.04698,
155
161
  "review_level": null,
156
162
  "review_verdict": null,
157
163
  "review_tokens": null,
@@ -172,7 +178,7 @@
172
178
  "started_at": "2026-02-22T13:32:00.000Z",
173
179
  "finished_at": "2026-02-22T13:37:00.000Z",
174
180
  "total_tokens": 900,
175
- "cost_usd": 0.09,
181
+ "cost_usd": 0.0012959999999999998,
176
182
  "review_level": "fast",
177
183
  "review_verdict": "pass",
178
184
  "review_tokens": 900,