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.
@@ -1,3 +1,24 @@
1
- /** GPT-5.4 optimized Hephaestus prompt */
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;