gemstack-ai 1.2.0 → 1.4.0
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/.gemstack/state.json +11 -10
- package/CHANGELOG.md +97 -0
- package/README.md +89 -9
- package/RELEASE_NOTES.md +77 -0
- package/{gemstack-ai-1.2.0.tgz → gemstack-ai-1.4.0.tgz} +0 -0
- package/handoff.md +14 -12
- package/package.json +2 -2
- package/specs/008-cost-provider-safety-gates/.gemstack.json +5 -0
- package/specs/008-cost-provider-safety-gates/closure.json +59 -0
- package/specs/008-cost-provider-safety-gates/plan.md +456 -0
- package/specs/008-cost-provider-safety-gates/spec.md +633 -0
- package/specs/008-cost-provider-safety-gates/tasks.md +635 -0
- package/specs/009-context-capsule/closure.json +59 -0
- package/specs/009-context-capsule/context-capsule.json +428 -0
- package/specs/009-context-capsule/plan.md +663 -0
- package/specs/009-context-capsule/spec.md +913 -0
- package/specs/009-context-capsule/tasks.md +720 -0
- package/specs/010-agent-swarm-visual-qa/.gemstack.json +5 -0
- package/specs/010-agent-swarm-visual-qa/closure.json +59 -0
- package/specs/010-agent-swarm-visual-qa/plan.md +759 -0
- package/specs/010-agent-swarm-visual-qa/spec.md +842 -0
- package/specs/010-agent-swarm-visual-qa/swarm.json +49 -0
- package/specs/010-agent-swarm-visual-qa/tasks.md +873 -0
- package/specs/010-agent-swarm-visual-qa/visual-qa.json +41 -0
- package/src/cli.js +10 -0
- package/src/commands/context.js +95 -0
- package/src/commands/swarm.js +111 -0
- package/src/commands/verify.js +92 -0
- package/src/commands/visual.js +82 -0
- package/src/lib/closure-context.js +18 -1
- package/src/lib/context-capsule.js +594 -0
- package/src/lib/cost-ledger.js +355 -0
- package/src/lib/provider-boundary.js +186 -0
- package/src/lib/provider-registry.js +265 -0
- package/src/lib/safety-gates.js +277 -0
- package/src/lib/swarm.js +639 -0
- package/src/lib/visual-qa.js +499 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://gemstack.dev/schemas/v1/swarm.json",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"feature_id": "010-agent-swarm-visual-qa",
|
|
5
|
+
"source_capsule_hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
|
|
6
|
+
"max_workers": 4,
|
|
7
|
+
"waves": [
|
|
8
|
+
{
|
|
9
|
+
"wave_index": 1,
|
|
10
|
+
"status": "COMPLETED",
|
|
11
|
+
"tasks": [
|
|
12
|
+
{
|
|
13
|
+
"task_id": "UE-T001",
|
|
14
|
+
"description": "Zero-Dependency Core & Bootstrap Registration",
|
|
15
|
+
"assigned_role": "implementer",
|
|
16
|
+
"worker_id": "worker-impl-alpha",
|
|
17
|
+
"write_set": [
|
|
18
|
+
"src/lib/contracts.js"
|
|
19
|
+
],
|
|
20
|
+
"status": "COMPLETED",
|
|
21
|
+
"review": {
|
|
22
|
+
"reviewer_role": "reviewer",
|
|
23
|
+
"reviewer_id": "worker-rev-beta",
|
|
24
|
+
"status": "APPROVED",
|
|
25
|
+
"review_timestamp": "2026-09-11T19:00:00Z",
|
|
26
|
+
"attestation": "All 10 bootstrap contracts verified; zero runtime dependencies."
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"task_id": "UE-T002",
|
|
31
|
+
"description": "Swarm Manifest Schema & Parser",
|
|
32
|
+
"assigned_role": "implementer",
|
|
33
|
+
"worker_id": "worker-impl-gamma",
|
|
34
|
+
"write_set": [
|
|
35
|
+
"src/lib/swarm.js"
|
|
36
|
+
],
|
|
37
|
+
"status": "COMPLETED",
|
|
38
|
+
"review": {
|
|
39
|
+
"reviewer_role": "reviewer",
|
|
40
|
+
"reviewer_id": "worker-rev-delta",
|
|
41
|
+
"status": "APPROVED",
|
|
42
|
+
"review_timestamp": "2026-09-11T19:05:00Z",
|
|
43
|
+
"attestation": "Schema validation and deterministic UTF-16 serialization verified."
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
}
|