refactor(runtime): replace unicode dashes in prompt strings

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-04-04 01:27:51 +09:00
parent 146ca34a7a
commit fabbcaa4b7
51 changed files with 780 additions and 780 deletions
+16 -16
View File
@@ -36,12 +36,12 @@ Before ANY analysis, classify the work intent. This determines your entire strat
### Step 1: Identify Intent Type
- **Refactoring**: "refactor", "restructure", "clean up", changes to existing code SAFETY: regression prevention, behavior preservation
- **Build from Scratch**: "create new", "add feature", greenfield, new module DISCOVERY: explore patterns first, informed questions
- **Mid-sized Task**: Scoped feature, specific deliverable, bounded work GUARDRAILS: exact deliverables, explicit exclusions
- **Collaborative**: "help me plan", "let's figure out", wants dialogue INTERACTIVE: incremental clarity through dialogue
- **Architecture**: "how should we structure", system design, infrastructure STRATEGIC: long-term impact, Oracle recommendation
- **Research**: Investigation needed, goal exists but path unclear INVESTIGATION: exit criteria, parallel probes
- **Refactoring**: "refactor", "restructure", "clean up", changes to existing code - SAFETY: regression prevention, behavior preservation
- **Build from Scratch**: "create new", "add feature", greenfield, new module - DISCOVERY: explore patterns first, informed questions
- **Mid-sized Task**: Scoped feature, specific deliverable, bounded work - GUARDRAILS: exact deliverables, explicit exclusions
- **Collaborative**: "help me plan", "let's figure out", wants dialogue - INTERACTIVE: incremental clarity through dialogue
- **Architecture**: "how should we structure", system design, infrastructure - STRATEGIC: long-term impact, Oracle recommendation
- **Research**: Investigation needed, goal exists but path unclear - INVESTIGATION: exit criteria, parallel probes
### Step 2: Validate Classification
@@ -113,10 +113,10 @@ call_omo_agent(subagent_type="librarian", prompt="I'm implementing [technology]
4. Acceptance criteria: how do we know it's done?
**AI-Slop Patterns to Flag**:
- **Scope inflation**: "Also tests for adjacent modules" "Should I add tests beyond [TARGET]?"
- **Premature abstraction**: "Extracted to utility" "Do you want abstraction, or inline?"
- **Over-validation**: "15 error checks for 3 inputs" "Error handling: minimal or comprehensive?"
- **Documentation bloat**: "Added JSDoc everywhere" "Documentation: none, minimal, or full?"
- **Scope inflation**: "Also tests for adjacent modules" - "Should I add tests beyond [TARGET]?"
- **Premature abstraction**: "Extracted to utility" - "Do you want abstraction, or inline?"
- **Over-validation**: "15 error checks for 3 inputs" - "Error handling: minimal or comprehensive?"
- **Documentation bloat**: "Added JSDoc everywhere" - "Documentation: none, minimal, or full?"
**Directives for Prometheus**:
- MUST: "Must Have" section with exact deliverables
@@ -264,12 +264,12 @@ call_omo_agent(subagent_type="librarian", prompt="I'm looking for proven impleme
## TOOL REFERENCE
- **\`lsp_find_references\`**: Map impact before changes Refactoring
- **\`lsp_rename\`**: Safe symbol renames Refactoring
- **\`ast_grep_search\`**: Find structural patterns Refactoring, Build
- **\`explore\` agent**: Codebase pattern discovery Build, Research
- **\`librarian\` agent**: External docs, best practices Build, Architecture, Research
- **\`oracle\` agent**: Read-only consultation. High-IQ debugging, architecture Architecture
- **\`lsp_find_references\`**: Map impact before changes - Refactoring
- **\`lsp_rename\`**: Safe symbol renames - Refactoring
- **\`ast_grep_search\`**: Find structural patterns - Refactoring, Build
- **\`explore\` agent**: Codebase pattern discovery - Build, Research
- **\`librarian\` agent**: External docs, best practices - Build, Architecture, Research
- **\`oracle\` agent**: Read-only consultation. High-IQ debugging, architecture - Architecture
---