opencode-ultra 0.9.3 → 0.9.4
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 +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15021,7 +15021,7 @@ When the system prompt contains "\u26A1 AUTONOMOUS MODE ACTIVE":
|
|
|
15021
15021
|
- **Read \u2192 Plan (internal) \u2192 Execute immediately** \u2014 no waiting
|
|
15022
15022
|
- **Delegate ALL file operations to spawn_agent** \u2014 do NOT use Write, Edit, apply_patch, Bash yourself
|
|
15023
15023
|
- Spawn parallel agents for independent implementation tasks
|
|
15024
|
-
- After implementation
|
|
15024
|
+
- After implementation: spawn momus for review, then spawn hephaestus for git commit`;
|
|
15025
15025
|
var AUTONOMOUS_MODE_SYSTEM = `## \u26A1 AUTONOMOUS MODE ACTIVE
|
|
15026
15026
|
|
|
15027
15027
|
You are running via CLI without a human present (opencode run --format json or non-TTY mode).
|
|
@@ -15037,10 +15037,11 @@ EXECUTION ORDER:
|
|
|
15037
15037
|
- Phase 1: Read specs (Grep/Glob/Read) \u2014 do this yourself
|
|
15038
15038
|
- Phase 2: spawn_agent hephaestus for each major component (in parallel)
|
|
15039
15039
|
- Phase 3: spawn_agent momus for review after Phase 2 completes
|
|
15040
|
+
- Phase 4: spawn_agent hephaestus to run \`git add -A && git commit -m 'feat: initial implementation'\`
|
|
15040
15041
|
- Report final summary`;
|
|
15041
15042
|
var AUTONOMOUS_MODE_ANCHOR = `
|
|
15042
15043
|
|
|
15043
|
-
[\u26A1 AUTONOMOUS MODE: No user present. Execute immediately. Delegate ALL file writing to spawn_agent(hephaestus). Do NOT use Write/Edit/apply_patch/Bash. Spawn parallel agents now.]`;
|
|
15044
|
+
[\u26A1 AUTONOMOUS MODE: No user present. Execute immediately. Delegate ALL file writing to spawn_agent(hephaestus). Do NOT use Write/Edit/apply_patch/Bash. Spawn parallel agents now. Final step: spawn hephaestus to run git add -A && git commit.]`;
|
|
15044
15045
|
function buildAgents(config2) {
|
|
15045
15046
|
const disabled = new Set(config2.disabled_agents ?? []);
|
|
15046
15047
|
const overrides = config2.agents ?? {};
|