sentinelayer-cli 0.8.11 → 0.9.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/package.json +10 -5
- package/src/agents/devtestbot/config/definition.js +100 -0
- package/src/agents/devtestbot/config/system-prompt.js +92 -0
- package/src/agents/devtestbot/index.js +9 -0
- package/src/agents/devtestbot/runner.js +769 -0
- package/src/agents/devtestbot/tool.js +707 -0
- 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 +32 -1
- package/src/commands/omargate.js +4 -0
- package/src/commands/session.js +417 -89
- package/src/commands/swarm.js +11 -2
- package/src/cost/history.js +41 -21
- package/src/events/schema.js +27 -1
- package/src/guide/generator.js +14 -0
- package/src/legacy-cli.js +110 -18
- package/src/prompt/generator.js +4 -16
- package/src/review/ai-review.js +95 -6
- package/src/review/dd-report-email-client.js +148 -0
- package/src/review/investor-dd-devtestbot.js +599 -0
- package/src/review/investor-dd-orchestrator.js +135 -3
- package/src/review/omargate-cache.js +285 -0
- package/src/review/omargate-orchestrator.js +605 -4
- package/src/review/persona-prompts.js +34 -1
- package/src/review/report.js +189 -4
- package/src/session/coordination-guidance.js +48 -0
- package/src/session/daemon.js +3 -2
- package/src/session/listener.js +236 -0
- package/src/session/senti-naming.js +36 -0
- package/src/session/setup-guides.js +3 -15
- package/src/session/store.js +54 -5
- package/src/session/sync.js +23 -0
- package/src/spec/generator.js +8 -10
- package/src/swarm/registry.js +20 -0
- package/src/swarm/runtime.js +139 -1
|
@@ -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;
|