opencode-orchestrator 1.0.20 → 1.0.21
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/dist/index.js
CHANGED
|
@@ -935,9 +935,10 @@ var PHASE_1_THINK_ANALYSIS = `### 1.1 MISSION SCOPE
|
|
|
935
935
|
- Identify high-risk parts and fallback plans.
|
|
936
936
|
- If agent fails \u2192 See RECOVERY section.`;
|
|
937
937
|
var PHASE_5_MSVP = `1. **STAGE 1 (Unit)**: Workers MUST trigger ${AGENT_NAMES.REVIEWER} for unit verification immediately upon completion.
|
|
938
|
-
2. **
|
|
939
|
-
3. **
|
|
940
|
-
4. **
|
|
938
|
+
2. **PARALLEL DISCOVERY**: Before Stage 2, launch a swarm of scouts (background: true) using **[${SCOUT_INTEGRATION.NAME}]**: ${SCOUT_INTEGRATION.PROMPT} (To ${AGENT_NAMES.PLANNER}).
|
|
939
|
+
3. **STAGE 2 (Integration Master)**: The Master ${AGENT_NAMES.REVIEWER} ingests all scout findings to validate cross-module consistency.
|
|
940
|
+
4. **E2E VALIDATION**: Run full system tests and build pass check.
|
|
941
|
+
5. **SEAL GATE**: No SEALED output until ${PATHS.TODO} is all [x] and zero issues remain.`;
|
|
941
942
|
var HPFA_RULES = `1. **Fractal Spawning**: Workers spawn sub-workers for complex files/modules.
|
|
942
943
|
2. **Speculative Racing**: Launch multiple strategies in parallel (mode: race) for uncertainty.
|
|
943
944
|
3. **Asynchronous Batching**: Group non-dependent tool calls to trigger host-side parallelism.
|
|
@@ -966,6 +967,11 @@ var SCOUT_INFRA = {
|
|
|
966
967
|
NAME: `${SCOUT_LABEL}: Infra`,
|
|
967
968
|
PROMPT: "Detect infrastructure and environment configs. Search for Dockerfiles, CI/CD workflows (.github, .gitlab), and environment variable templates."
|
|
968
969
|
};
|
|
970
|
+
var SCOUT_INTEGRATION = {
|
|
971
|
+
ID: "INTEGRATION",
|
|
972
|
+
NAME: `${SCOUT_LABEL}: Integration`,
|
|
973
|
+
PROMPT: "Read all modified files and their cross-module dependencies in parallel. Map the actual integration surface and identify potential consistency issues."
|
|
974
|
+
};
|
|
969
975
|
|
|
970
976
|
// src/core/agents/consts/task-status.const.ts
|
|
971
977
|
var TASK_STATUS = {
|
|
@@ -5,4 +5,4 @@ export { PROMPT_TAGS, wrapTag } from "./tags.js";
|
|
|
5
5
|
export { WORK_STATUS } from "./status.js";
|
|
6
6
|
export { PHILOSOPHY_PHASES, PHILOSOPHY_TAGLINE, PHILOSOPHY_QUOTE, PHILOSOPHY_LEARN_PRINCIPLE, EXECUTION_CYCLE, EXECUTION_CYCLE_STEPS, } from "./philosophy.js";
|
|
7
7
|
export { PHASE_0_SCOUT_SWARM, PHASE_1_THINK_ANALYSIS, PHASE_5_MSVP, HPFA_RULES } from "./mandates.js";
|
|
8
|
-
export { SCOUT_LABEL, SCOUT_STRUCTURE, SCOUT_STACK, SCOUT_DOCS, SCOUT_INFRA } from "./scouts.js";
|
|
8
|
+
export { SCOUT_LABEL, SCOUT_STRUCTURE, SCOUT_STACK, SCOUT_DOCS, SCOUT_INFRA, SCOUT_INTEGRATION } from "./scouts.js";
|
|
@@ -25,3 +25,8 @@ export declare const SCOUT_INFRA: {
|
|
|
25
25
|
readonly NAME: "Scout: Infra";
|
|
26
26
|
readonly PROMPT: "Detect infrastructure and environment configs. Search for Dockerfiles, CI/CD workflows (.github, .gitlab), and environment variable templates.";
|
|
27
27
|
};
|
|
28
|
+
export declare const SCOUT_INTEGRATION: {
|
|
29
|
+
readonly ID: "INTEGRATION";
|
|
30
|
+
readonly NAME: "Scout: Integration";
|
|
31
|
+
readonly PROMPT: "Read all modified files and their cross-module dependencies in parallel. Map the actual integration surface and identify potential consistency issues.";
|
|
32
|
+
};
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "opencode-orchestrator",
|
|
3
3
|
"displayName": "OpenCode Orchestrator",
|
|
4
4
|
"description": "Distributed Cognitive Architecture for OpenCode. Turns simple prompts into specialized multi-agent workflows (Planner, Coder, Reviewer).",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.21",
|
|
6
6
|
"author": "agnusdei1207",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|