sentinelayer-cli 0.8.10 → 0.8.12
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/package.json +4 -4
- package/src/agents/jules/stream.js +2 -12
- package/src/audit/orchestrator.js +471 -114
- package/src/audit/persona-loop.js +1342 -0
- package/src/audit/registry.js +58 -2
- package/src/commands/audit.js +42 -1
- package/src/commands/legacy-args.js +28 -1
- package/src/commands/session.js +80 -20
- package/src/cost/history.js +41 -21
- package/src/events/schema.js +27 -1
- package/src/legacy-cli.js +76 -1
- package/src/review/omargate-cache.js +285 -0
- package/src/review/omargate-orchestrator.js +586 -3
- package/src/review/report.js +128 -2
- package/src/session/agent-registry.js +59 -0
- package/src/session/senti-naming.js +36 -0
- package/src/session/sync.js +23 -0
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sentinelayer-cli",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.12",
|
|
4
4
|
"description": "Scaffold Sentinelayer spec/prompt/guide artifacts with secure browser auth and token bootstrap.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"check": "node scripts/check.mjs",
|
|
8
8
|
"docs:build": "node scripts/docs-build.mjs",
|
|
9
9
|
"test": "npm run test:unit && npm run test:e2e",
|
|
10
|
-
"test:unit": "node --test tests/unit*.test.mjs",
|
|
11
|
-
"test:e2e": "node --test tests/e2e.test.mjs",
|
|
12
|
-
"test:coverage": "c8 node --test tests/unit*.test.mjs",
|
|
10
|
+
"test:unit": "node --import ./tests/setup-env.mjs --test tests/unit*.test.mjs",
|
|
11
|
+
"test:e2e": "node --import ./tests/setup-env.mjs --test tests/e2e.test.mjs",
|
|
12
|
+
"test:coverage": "c8 node --import ./tests/setup-env.mjs --test tests/unit*.test.mjs",
|
|
13
13
|
"verify": "npm run check && npm run docs:build && npm run test:e2e && npm run test:coverage && npm pack --dry-run"
|
|
14
14
|
},
|
|
15
15
|
"bin": {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PERSONA_VISUALS, resolvePersonaVisual } from "./config/definition.js";
|
|
2
|
-
import { createAgentEvent } from "../../events/schema.js";
|
|
2
|
+
import { AGENT_EVENT_TYPES, createAgentEvent } from "../../events/schema.js";
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Jules Tanaka — Streaming Event Formatter
|
|
@@ -174,14 +174,4 @@ function formatToolInput(input) {
|
|
|
174
174
|
/**
|
|
175
175
|
* List all valid event types.
|
|
176
176
|
*/
|
|
177
|
-
export const EVENT_TYPES =
|
|
178
|
-
"agent_start", "agent_complete", "agent_abort", "agent_error",
|
|
179
|
-
"progress", "heartbeat",
|
|
180
|
-
"tool_call", "tool_result",
|
|
181
|
-
"finding", "reasoning",
|
|
182
|
-
"budget_warning", "budget_stop",
|
|
183
|
-
"swarm_start", "swarm_complete",
|
|
184
|
-
"phase_start", "phase_complete",
|
|
185
|
-
"convergence_expansion", "coverage_gap",
|
|
186
|
-
"llm_error",
|
|
187
|
-
]);
|
|
177
|
+
export const EVENT_TYPES = AGENT_EVENT_TYPES;
|