@jaimevalasek/aioson 1.37.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 +14 -0
- 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/cli.js +22 -4
- package/src/commands/agent-execution.js +36 -0
- package/src/commands/op-capture.js +33 -3
- package/src/commands/op-reinforce.js +10 -22
- package/src/commands/verification-plan.js +28 -11
- package/src/commands/workflow-execute.js +20 -6
- package/src/harness/criteria-runner.js +4 -1
- package/src/operator-memory/decision.js +41 -0
- package/src/runtime-store.js +167 -8
- package/template/.aioson/agents/dev.md +1 -1
- package/template/.aioson/agents/product.md +2 -1
- package/template/.aioson/docs/autopilot-handoff.md +7 -1
- package/template/.aioson/docs/dev/phase-loop.md +2 -3
- package/template/.aioson/schemas/agent-execution.schema.json +28 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://aioson.dev/schemas/agent-execution-v1.json",
|
|
4
|
+
"title": "AIOSON Agent Execution Manifest",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["version", "feature", "host", "agents", "capacity_policy", "cycle_limits", "reporting"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"version": { "const": 1 },
|
|
9
|
+
"feature": { "type": "string", "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$" },
|
|
10
|
+
"host": { "enum": ["claude", "codex", "opencode"] },
|
|
11
|
+
"agents": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"required": ["dev", "qa", "tester", "pentester", "validator"],
|
|
14
|
+
"additionalProperties": false,
|
|
15
|
+
"properties": {
|
|
16
|
+
"dev": { "$ref": "#/$defs/agent" }, "qa": { "$ref": "#/$defs/agent" }, "tester": { "$ref": "#/$defs/agent" }, "pentester": { "$ref": "#/$defs/agent" }, "validator": { "$ref": "#/$defs/agent" }
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"$defs": {
|
|
21
|
+
"agent": {
|
|
22
|
+
"type": "object", "additionalProperties": false,
|
|
23
|
+
"required": ["enabled", "host", "mode", "model", "writable_roots", "fallbacks", "report"],
|
|
24
|
+
"properties": { "enabled": {"type":"boolean"}, "host":{"enum":["claude","codex","opencode"]}, "mode":{"enum":["fresh-session","subagent","external","current-session"]}, "model":{"type":"string","minLength":1,"maxLength":200}, "reasoning_effort":{"enum":["low","medium","high","xhigh","max","ultra"]}, "writable_roots":{"type":"array","items":{"type":"string","minLength":1}}, "fallbacks":{"type":"array"}, "report":{"type":"string"} }
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"additionalProperties": false
|
|
28
|
+
}
|