refactor(agents): convert all markdown tables to bullet lists across 12 agent files
Tables in template literal prompts render poorly in some LLM contexts. Replaced 43 table instances with equivalent bullet list format preserving all information. Affected: hephaestus, atlas/default, atlas/prompt-section-builder, sisyphus-junior/gpt, librarian, explore, metis, prometheus/behavioral-summary, prometheus/identity-constraints, prometheus/interview-mode, prometheus/plan-generation, prometheus/plan-template.
This commit is contained in:
+16
-22
@@ -33,14 +33,12 @@ Before ANY analysis, classify the work intent. This determines your entire strat
|
||||
|
||||
### Step 1: Identify Intent Type
|
||||
|
||||
| Intent | Signals | Your Primary Focus |
|
||||
|--------|---------|-------------------|
|
||||
| **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
|
||||
|
||||
@@ -112,12 +110,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**:
|
||||
| Pattern | Example | Ask |
|
||||
|---------|---------|-----|
|
||||
| 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
|
||||
@@ -273,14 +269,12 @@ User confirms the button works as expected.
|
||||
|
||||
## TOOL REFERENCE
|
||||
|
||||
| Tool | When to Use | Intent |
|
||||
|------|-------------|--------|
|
||||
| \`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
|
||||
|
||||
---
|
||||
|
||||
|
||||
Reference in New Issue
Block a user