oh-my-opencode 3.15.1 → 3.15.3
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/agents/hephaestus/gpt-5-4.d.ts +22 -1
- package/dist/cli/index.js +477 -206
- package/dist/cli/run/continuation-state.d.ts +2 -1
- package/dist/create-runtime-tmux-config.d.ts +1 -0
- package/dist/features/background-agent/spawner.d.ts +3 -0
- package/dist/features/boulder-state/storage.d.ts +1 -1
- package/dist/features/boulder-state/types.d.ts +1 -0
- package/dist/features/claude-code-plugin-loader/discovery.d.ts +2 -1
- package/dist/features/claude-code-plugin-loader/loader.d.ts +1 -0
- package/dist/features/claude-code-plugin-loader/types.d.ts +10 -0
- package/dist/hooks/atlas/background-launch-session-tracking.d.ts +11 -0
- package/dist/hooks/atlas/boulder-continuation-injector.d.ts +2 -1
- package/dist/hooks/atlas/task-context.d.ts +7 -0
- package/dist/hooks/atlas/types.d.ts +1 -0
- package/dist/hooks/auto-update-checker/constants.d.ts +3 -3
- package/dist/index.js +1026 -681
- package/dist/plugin/tool-registry.d.ts +1 -0
- package/dist/shared/agent-display-names.d.ts +1 -0
- package/dist/tools/delegate-task/resolve-call-id.d.ts +2 -0
- package/package.json +12 -12
|
@@ -1,3 +1,24 @@
|
|
|
1
|
-
/**
|
|
1
|
+
/**
|
|
2
|
+
* GPT-5.4 optimized Hephaestus prompt - entropy-reduced rewrite.
|
|
3
|
+
*
|
|
4
|
+
* Design principles (aligned with OpenAI GPT-5.4 prompting guidance):
|
|
5
|
+
* - Personality/tone at position 1 for strong tonal priming
|
|
6
|
+
* - Prose-based instructions; no FORBIDDEN/MUST/NEVER rhetoric
|
|
7
|
+
* - 3 targeted prompt blocks: tool_persistence, dig_deeper, dependency_checks
|
|
8
|
+
* - GPT-5.4 follows instructions well - trust it, fewer threats needed
|
|
9
|
+
* - Conflicts eliminated: no "every 30s" + "be concise" contradiction
|
|
10
|
+
* - Each concern appears in exactly one section
|
|
11
|
+
*
|
|
12
|
+
* Architecture (XML-tagged blocks, consistent with Sisyphus GPT-5.4):
|
|
13
|
+
* 1. <identity> - Role, personality/tone, autonomy, scope
|
|
14
|
+
* 2. <intent> - Intent mapping, complexity classification, ambiguity protocol
|
|
15
|
+
* 3. <explore> - Tool selection, tool_persistence, dig_deeper, dependency_checks, parallelism
|
|
16
|
+
* 4. <constraints> - Hard blocks + anti-patterns (after explore, before execution)
|
|
17
|
+
* 5. <execution> - 5-step workflow, verification, failure recovery, completion check
|
|
18
|
+
* 6. <tracking> - Todo/task discipline
|
|
19
|
+
* 7. <progress> - Update style with examples
|
|
20
|
+
* 8. <delegation> - Category+skills, prompt structure, session continuity, oracle
|
|
21
|
+
* 9. <communication> - Output format, tone guidance
|
|
22
|
+
*/
|
|
2
23
|
import type { AvailableAgent, AvailableTool, AvailableSkill, AvailableCategory } from "../dynamic-agent-prompt-builder";
|
|
3
24
|
export declare function buildHephaestusPrompt(availableAgents?: AvailableAgent[], availableTools?: AvailableTool[], availableSkills?: AvailableSkill[], availableCategories?: AvailableCategory[], useTaskSystem?: boolean): string;
|