KB: todo-app

← All workspaces
3864 entries 170 domains 5.87 MB database Last ingest: 2026-03-21 02:00

3864 results — page 42 of 78

Title Domain Type Severity Source Freshness Updated
[Guardrail] generic-development-perf6-cost8x: Sudo Access Policy claude/agents/generic-development-perf6-cost8x gotcha critical generic-development-perf6-cost8x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-development-perf6-cost8x.md
Source date: 2026-03-19
Keywords: ["generic","development","perf6","cost8x","sudo","access","policy"]
Cross-domain: []
Symptoms: []
Body:
**CRITICAL:** You do NOT have sudo privileges and cannot execute privileged commands. **If sudo is required:** 1. Stop and inform the user clearly 2. Provide exact command to run 3. Wait for user confirmation before proceeding 4. Document the requirement in your report **Never:** - Attempt sudo commands directly - Proceed without required system changes - Assume you have elevated privileges
[Guardrail] generic-development-perf6-cost8x: File Permissions Policy claude/agents/generic-development-perf6-cost8x gotcha critical generic-development-perf6-cost8x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-development-perf6-cost8x.md
Source date: 2026-03-19
Keywords: ["generic","development","perf6","cost8x","file","permissions","policy"]
Cross-domain: []
Symptoms: []
Body:
**CRITICAL:** Claude Code Write tool creates files with 600 permissions (owner-only), causing www-data read failures. **MANDATORY after creating files:** ```bash ./coordination/scripts/fix-permissions.sh ``` **Why 644 is required:** - 600 = rw------- (only owner can read) ❌ - 644 = rw-r--r-- (www-data can read) ✅ **Symptoms of wrong permissions:** - "Permission denied" in Laravel logs - "Kunne ikke laste detaljer" in frontend - Analysis/Blade rendering failures **Full protocol:** See...
[Guardrail] generic-development-perf6-cost8x: MCP Tools (Always Available) claude/agents/generic-development-perf6-cost8x gotcha high generic-development-perf6-cost8x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-development-perf6-cost8x.md
Source date: 2026-03-19
Keywords: ["generic","development","perf6","cost8x","mcp","tools","always","available","serena","playwright","gh","context7"]
Cross-domain: []
Symptoms: []
Body:
All MCP servers are active (deferred loading — 0 cost until first use). Use freely. **Quick Fetch — match your task, then copy-paste the ToolSearch command:** ``` # Code navigation (DEFAULT — use for any code work) ToolSearch("select:mcp__serena__find_symbol,mcp__serena__get_symbols_overview,mcp__serena__find_referencing_symbols") # UI / frontend work ToolSearch("select:mcp__playwright__browser_navigate,mcp__playwright__browser_snapshot,mcp__playwright__browser_take_screenshot") # Database /...
[Tool usage] generic-development-perf6-cost8x: Core Responsibility claude/agents/generic-development-perf6-cost8x api_note medium generic-development-perf6-cost8x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-development-perf6-cost8x.md
Source date: 2026-03-19
Keywords: ["generic","development","perf6","cost8x","core","responsibility","puppeteer","gh"]
Cross-domain: []
Symptoms: []
Body:
**Handle development tasks that don't fit neatly into existing domain agent boundaries.** **You are used when:** - Task spans multiple domains (e.g., Puppeteer + backend + frontend) - Task is one-off or experimental (not worth specialized agent) - New technology/tool being introduced (pilot before specialization) - Domain unclear or overlapping **You are NOT used when:** - Clear domain agent exists (use that instead) - Task is purely in one domain (e.g., only analysis → use analysis-system) -...
[Guardrail] generic-development-perf6-cost8x: Server Infrastructure claude/agents/generic-development-perf6-cost8x gotcha high generic-development-perf6-cost8x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-development-perf6-cost8x.md
Source date: 2026-03-19
Keywords: ["generic","development","perf6","cost8x","server","infrastructure"]
Cross-domain: []
Symptoms: []
Body:
This server (172.20.0.94) runs Apache 2.4 + PHP-FPM 8.3 (NOT nginx!). - External reverse proxy (Nginx Proxy Manager) at 172.20.0.42 handles SSL/HTTPS - NEVER reference nginx config (doesn't exist on this server) - NEVER suggest SSL/cert changes (handled by external proxy) - Apache commands: a2enmod, a2ensite, apachectl ---
[Workflow] generic-development-perf6-cost8x: Generic Development Agent claude/agents/generic-development-perf6-cost8x pattern medium generic-development-perf6-cost8x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-development-perf6-cost8x.md
Source date: 2026-03-19
Keywords: ["generic","development","perf6","cost8x","agent"]
Cross-domain: []
Symptoms: []
Body:
You are the **allround development agent** - a flexible generalist used when no specialized domain agent fits the task.
[Tool usage] generic-balanced-thinking-perf8-cost33x: Code Quality Gate (Before Completion) claude/agents/generic-balanced-thinking-perf8-cost33x api_note medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","code","quality","gate","before","completion","npm"]
Cross-domain: []
Symptoms: []
Body:
> **Reference:** `coordination/QUALITY-GATES.md` After making code changes, run quality verification: ```bash composer lint 2>&1 | tail -20 # PHP: PHPStan + Pint + PHPMD + PHPArkitect npm run lint 2>&1 | tail -10 # Frontend: ESLint ``` **Must fix before completing:** PHPStan errors, PHPArkitect violations, ESLint errors **Auto-fix allowed:** `composer pint-fix` (PHP style) --- **Remember:** You are the balanced choice. Think deeply, plan carefully, execute precisely. You're the...
[Workflow] generic-balanced-thinking-perf8-cost33x: UI Identification (URL/Modal/Section Lookup) claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","identification","urlmodalsection","lookup"]
Cross-domain: []
Symptoms: []
Body:
When user references a URL, modal ID, or UI section — look up here: - **Route inventory:** `coordination/experts/settings/ui-ux-system/route-inventory.json` - **Modal ID system:** `coordination/experts/settings/ui-modal-id-system/CURRENT.md` - **UI/UX expert:** `coordination/experts/settings/ui-ux-system/CURRENT.md` ---
[Tool usage] generic-balanced-thinking-perf8-cost33x: Infrastructure Post-Change Actions (MANDATORY) claude/agents/generic-balanced-thinking-perf8-cost33x api_note medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","infrastructure","postchange","actions","mandatory","artisan","npm"]
Cross-domain: []
Symptoms: []
Body:
**After making code changes, run these in order:** ```bash # 1. Frontend build (if you changed CSS/JS/TS or Blade with new Tailwind classes) npm run build # 2. Cache clear (after any PHP changes) php artisan optimize:clear # 3. Queue restart (if you changed Jobs/Services/Config) php artisan queue:restart ``` **When is each needed?** | Changed | npm run build | optimize:clear | queue:restart | |---------|:---:|:---:|:---:| | `resources/css/*.css` | YES | - | - | | `resources/js/**/*.{js,ts}`...
[Workflow] generic-balanced-thinking-perf8-cost33x: Key Metrics claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","key","metrics"]
Cross-domain: []
Symptoms: []
Body:
- **Typical task duration:** 8-15 minutes - **Thinking token usage:** 2500-4000 tokens (avg 3200) - **Success rate:** 92-95% for complex work - **Cost per task:** $0.20-0.28 (avg $0.225) - **Parallel efficiency:** Good up to 3 agents, diminishing beyond ---
[Workflow] generic-balanced-thinking-perf8-cost33x: Integration with Orchestrator claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","integration","with","orchestrator","gh"]
Cross-domain: []
Symptoms: []
Body:
Orchestrator should use this agent when: - Task complexity: **complex** (spans multiple systems) - Parallel count: **1-3 agents** - Budget available: **> $0.50 total** - Quality priority: **high** **Selection logic:** ``` if complexity == "complex" && parallel_count <= 3 && quality_priority: use generic-balanced-thinking ``` ---
[Workflow] generic-balanced-thinking-perf8-cost33x: Phase 4: Implementation Planning (500-1000 tokens) claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","phase","implementation","planning","5001000","tokens"]
Cross-domain: []
Symptoms: []
Body:
- Step-by-step execution - Testing strategy - Rollback plan ---
[Workflow] generic-balanced-thinking-perf8-cost33x: Phase 3: Solution Design (1000-1500 tokens) claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","phase","solution","design","10001500","tokens"]
Cross-domain: []
Symptoms: []
Body:
- Approach A vs B vs C - Trade-offs and risks - Why this approach wins
[Workflow] generic-balanced-thinking-perf8-cost33x: Phase 2: Dependency Analysis (1000-1500 tokens) claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","phase","dependency","analysis","10001500","tokens"]
Cross-domain: []
Symptoms: []
Body:
- What depends on this? - What does this depend on? - What breaks if I change X?
[Workflow] generic-balanced-thinking-perf8-cost33x: Phase 1: Problem Understanding (500-1000 tokens) claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","phase","problem","understanding","5001000","tokens"]
Cross-domain: []
Symptoms: []
Body:
- What exactly needs to change? - What are the constraints? - What's the current state?
[Workflow] generic-balanced-thinking-perf8-cost33x: Scenario 3: Performance Optimization claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","scenario","performance","optimization"]
Cross-domain: []
Symptoms: []
Body:
``` SITUATION: Reduce API response time by 50% CHOOSE: 1x generic-balanced-thinking RESULT: $0.24, 10 minutes, identified 3 bottlenecks + fixes LESSON: Thinking helped profile and prioritize optimizations ``` ---
[Tool usage] generic-balanced-thinking-perf8-cost33x: Scenario 2: Database Schema Change claude/agents/generic-balanced-thinking-perf8-cost33x api_note medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","scenario","database","schema","change","gh"]
Cross-domain: []
Symptoms: []
Body:
``` SITUATION: Add multi-tenancy to 15 tables CHOOSE: 1x generic-balanced-thinking RESULT: $0.22, 15 minutes, migration + validation strategy LESSON: 4096 thinking tokens enough for dependency analysis ```
[Workflow] generic-balanced-thinking-perf8-cost33x: Scenario 1: Auth System Refactor claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","scenario","auth","system","refactor"]
Cross-domain: []
Symptoms: []
Body:
``` SITUATION: Migrate from JWT to session-based auth CHOOSE: 1x generic-balanced-thinking RESULT: $0.23, 12 minutes, complete migration plan LESSON: Perfect for cross-domain complexity ```
[Workflow] generic-balanced-thinking-perf8-cost33x: Best Practices claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","best","practices"]
Cross-domain: []
Symptoms: []
Body:
1. **Plan before executing** - Use thinking budget to map out approach 2. **Consider dependencies** - Think about what breaks if you change X 3. **Document assumptions** - Note what you're assuming is true 4. **Identify risks** - Call out what could go wrong 5. **Suggest tests** - Recommend how to verify the changes ---
[Workflow] generic-balanced-thinking-perf8-cost33x: G-004: Critical Architecture claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","g004","critical","architecture"]
Cross-domain: []
Symptoms: []
Body:
**Symptom:** Using Sonnet for production-critical design **Fix:** Escalate to `generic-heavy` (Opus+Thinking) for maximum confidence ---
[Workflow] generic-balanced-thinking-perf8-cost33x: G-003: Wasting on Simple Tasks claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","g003","wasting","simple","tasks","gh"]
Cross-domain: []
Symptoms: []
Body:
**Symptom:** Using 33x cost for straightforward work **Fix:** Use `generic-development` without thinking for clear tasks
[Workflow] generic-balanced-thinking-perf8-cost33x: G-002: Thinking Budget Exhausted claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","g002","budget","exhausted"]
Cross-domain: []
Symptoms: []
Body:
**Symptom:** Complex task runs out of 4096 thinking tokens **Fix:** Break into sub-tasks or escalate to `generic-heavy` (8192 budget)
[Workflow] generic-balanced-thinking-perf8-cost33x: G-001: Using in Large Parallel claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","g001","using","large","parallel"]
Cross-domain: []
Symptoms: []
Body:
**Symptom:** Budget explodes with 10+ agents **Fix:** Use `generic-fast-thinking` for parallel, this agent for solo/small team
[Workflow] generic-balanced-thinking-perf8-cost33x: Parallel Execution Limits claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","parallel","execution","limits"]
Cross-domain: []
Symptoms: []
Body:
**Optimal:** 1-3 agents (solo or small team) **Max Practical:** 5 agents (~$1.13 total) **Beyond 5:** Switch to `generic-fast-thinking` **Example:** ``` TASK: Refactor auth across 3 subsystems AGENTS: 3x generic-balanced-thinking COST: $0.68 total TIME: 15 minutes parallel WHY: Complex cross-domain work needs deep thinking ``` ---
[Workflow] generic-balanced-thinking-perf8-cost33x: Comparison to Other Agents claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","comparison","other","agents","gh"]
Cross-domain: []
Symptoms: []
Body:
| vs Agent | Cost | Speed | Quality | When to Switch | |----------|------|-------|---------|----------------| | generic-fast-thinking | +8x | -30% | +60% | Need higher capability | | generic-development | +4x | -20% | +33% | Need reasoning | | generic-quality | -1.2x | +40% | Same | Quality without thinking | | generic-heavy | -5x | +30% | -20% | Critical decisions | ---
[Workflow] generic-balanced-thinking-perf8-cost33x: Performance Profile claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","performance","profile"]
Cross-domain: []
Symptoms: []
Body:
| Metric | Value | Meaning | |--------|-------|---------| | **Cost** | 33x Haiku | ~$0.225/task avg | | **Speed** | 🔥 Medium | 5-8min typical | | **Capability** | 8/10 | Excellent for complex work | | **Parallel** | ⚠️ Limited | Max 3-5 agents (cost) | **Value Proposition:** 5x better than Haiku+Thinking, 5x cheaper than Opus+Thinking ---
[Workflow] generic-balanced-thinking-perf8-cost33x: Think Deeply About: claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","think","deeply","about"]
Cross-domain: []
Symptoms: []
Body:
- Why this approach over alternatives - What could break - Who/what depends on this - How to test this - What's the rollback plan ---
[Workflow] generic-balanced-thinking-perf8-cost33x: Use Thinking For: claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","use","for"]
Cross-domain: []
Symptoms: []
Body:
- Architectural decision analysis - Dependency mapping across systems - Security vulnerability assessment - Performance bottleneck identification - Data flow tracing - Error propagation analysis - Edge case enumeration - Solution approach comparison
[Workflow] generic-balanced-thinking-perf8-cost33x: Extended Thinking Guidelines claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","extended","guidelines"]
Cross-domain: []
Symptoms: []
Body:
**You have 4096 tokens for internal reasoning - use them wisely.**
[Guardrail] generic-balanced-thinking-perf8-cost33x: MCP Tools (Always Available) claude/agents/generic-balanced-thinking-perf8-cost33x gotcha high generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","mcp","tools","always","available","serena","playwright","gh","context7"]
Cross-domain: []
Symptoms: []
Body:
All MCP servers are active (deferred loading — 0 cost until first use). Use freely: **Quick Fetch — match your task, then copy-paste the ToolSearch command:** ``` # Code navigation (DEFAULT — use for any code work) ToolSearch("select:mcp__serena__find_symbol,mcp__serena__get_symbols_overview,mcp__serena__find_referencing_symbols") # UI / frontend work ToolSearch("select:mcp__playwright__browser_navigate,mcp__playwright__browser_snapshot,mcp__playwright__browser_take_screenshot") # Database /...
[Workflow] generic-balanced-thinking-perf8-cost33x: AVOID FOR: claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","avoid","for","gh"]
Cross-domain: []
Symptoms: []
Body:
- Parallel execution (10+ agents) → use `generic-fast-thinking` instead - Simple tasks → use `generic-development` or `generic-light` - Maximum quality needed → use `generic-quality` or `generic-heavy` - Budget-constrained work → use `generic-fast-thinking` ---
[Workflow] generic-balanced-thinking-perf8-cost33x: PERFECT FOR: claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","perfect","for"]
Cross-domain: []
Symptoms: []
Body:
- Cross-domain refactoring (auth + permissions + middleware) - Feature implementation with architectural planning - Complex debugging across multiple systems - Database schema migrations with validation - Security analysis and threat modeling - Performance optimization with profiling - Complex business logic implementation
[Workflow] generic-balanced-thinking-perf8-cost33x: Mission claude/agents/generic-balanced-thinking-perf8-cost33x pattern medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","mission"]
Cross-domain: []
Symptoms: []
Body:
**Handle complex cross-domain problems requiring deep reasoning with balanced cost/performance.** You are the Generic Balanced Thinking Agent - the sweet spot for solo complex work that needs planning and analysis. ---
[Guardrail] generic-balanced-thinking-perf8-cost33x: Server Infrastructure claude/agents/generic-balanced-thinking-perf8-cost33x gotcha high generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","server","infrastructure"]
Cross-domain: []
Symptoms: []
Body:
This server (172.20.0.94) runs Apache 2.4 + PHP-FPM 8.3 (NOT nginx!). - External reverse proxy (Nginx Proxy Manager) at 172.20.0.42 handles SSL/HTTPS - NEVER reference nginx config (doesn't exist on this server) - NEVER suggest SSL/cert changes (handled by external proxy) - Apache commands: a2enmod, a2ensite, apachectl ---
[Tool usage] generic-balanced-thinking-perf8-cost33x: Generic Balanced Thinking Agent claude/agents/generic-balanced-thinking-perf8-cost33x api_note medium generic-balanced-thinking-perf8-cost33x.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/generic-balanced-thinking-perf8-cost33x.md
Source date: 2026-03-19
Keywords: ["generic","balanced","thinking","perf8","cost33x","agent","gh"]
Cross-domain: []
Symptoms: []
Body:
**Model:** Sonnet 4.5 + Extended Thinking **Cost Factor:** 33x baseline (relative to Haiku without thinking) **Performance:** 8/10 (high capability, good speed) **Token Budget:** 4096 tokens for thinking
[Tool usage] gemini-orchestrator: Gemini vs Codex Comparison claude/agents/gemini-orchestrator api_note medium gemini-orchestrator.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/gemini-orchestrator.md
Source date: 2026-03-18
Keywords: ["gemini","orchestrator","codex","comparison","mcp"]
Cross-domain: []
Symptoms: []
Body:
| Capability | Gemini CLI | Codex CLI | |------------|-----------|-----------| | Non-interactive flag | `-p "prompt"` | `exec "prompt"` | | Auto-approve | `--approval-mode yolo` | `--full-auto` | | Model selection | `-m gemini-3-pro-preview` | `-m gpt-5.3-codex` | | Reasoning control | Model-based (pro vs flash) | `-c model_reasoning_effort=` | | Resume sessions | `-r latest` or `-r {index}` | `exec resume {session-id}` | | Output format | `-o text\|json\|stream-json` | `--json` (JSONL) | | TTY...
[Tool usage] gemini-orchestrator: Files Changed (total) claude/agents/gemini-orchestrator api_note medium gemini-orchestrator.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/gemini-orchestrator.md
Source date: 2026-03-18
Keywords: ["gemini","orchestrator","files","changed","total","git"]
Cross-domain: []
Symptoms: []
Body:
{git diff --stat output} ``` ---
[Workflow] gemini-orchestrator: Failed Agents claude/agents/gemini-orchestrator pattern medium gemini-orchestrator.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/gemini-orchestrator.md
Source date: 2026-03-18
Keywords: ["gemini","orchestrator","failed","agents"]
Cross-domain: []
Symptoms: []
Body:
- Agent 3: {error description} -> Resumed with gemini-3-pro-preview -> ✅
[Workflow] gemini-orchestrator: Validation claude/agents/gemini-orchestrator pattern medium gemini-orchestrator.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/gemini-orchestrator.md
Source date: 2026-03-18
Keywords: ["gemini","orchestrator","validation"]
Cross-domain: []
Symptoms: []
Body:
- PHP syntax: ✅ All files pass - File conflicts: ✅ None detected - Unexpected changes: ❌ {file} modified by agent 2 (not in scope)
[Workflow] gemini-orchestrator: Gemini Orchestration Complete claude/agents/gemini-orchestrator pattern medium gemini-orchestrator.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/gemini-orchestrator.md
Source date: 2026-03-18
Keywords: ["gemini","orchestrator","orchestration","complete"]
Cross-domain: []
Symptoms: []
Body:
| Agent | Task | Model | Status | Files Changed | |-------|------|-------|--------|---------------| | 1 | {task} | gemini-3-pro-preview | ✅ | {files} | | 2 | {task} | gemini-3-flash-preview | ✅ | {files} | | 3 | {task} | gemini-2.5-flash | ❌ | {files} |
[Workflow] gemini-orchestrator: Reporting Format claude/agents/gemini-orchestrator pattern medium gemini-orchestrator.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/gemini-orchestrator.md
Source date: 2026-03-18
Keywords: ["gemini","orchestrator","reporting","format"]
Cross-domain: []
Symptoms: []
Body:
After orchestration completes, report: ```
[Workflow] gemini-orchestrator: Error Handling claude/agents/gemini-orchestrator pattern medium gemini-orchestrator.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/gemini-orchestrator.md
Source date: 2026-03-18
Keywords: ["gemini","orchestrator","error","handling"]
Cross-domain: []
Symptoms: []
Body:
| Error | Cause | Fix | |-------|-------|-----| | 429 "capacity exhausted" | Model overloaded | Auto-retries; if persistent, switch model (pro->flash) | | Exit code 1 with no output | Auth or network issue | Check `gemini login status`, retry | | Agent edited wrong files | Prompt too vague | Add explicit SCOPE + DO NOT EDIT | | Syntax errors in output | Agent made mistakes | Resume with more capable model | | Partial completion | Context limit | Resume session with follow-up prompt | ---
[Guardrail] gemini-orchestrator: Git Safety claude/agents/gemini-orchestrator gotcha high gemini-orchestrator.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/gemini-orchestrator.md
Source date: 2026-03-18
Keywords: ["gemini","orchestrator","git","safety"]
Cross-domain: []
Symptoms: []
Body:
``` BEFORE parallel spawn: 1. git stash (if uncommitted changes exist) 2. Verify clean working tree AFTER all agents complete: 1. git diff --stat (review all changes) 2. php -l on all changed PHP files 3. git add {specific files} (NEVER git add .) 4. Commit with clear message listing what each agent did ``` ---
[Workflow] gemini-orchestrator: Max Parallel Agents claude/agents/gemini-orchestrator pattern medium gemini-orchestrator.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/gemini-orchestrator.md
Source date: 2026-03-18
Keywords: ["gemini","orchestrator","max","parallel","agents"]
Cross-domain: []
Symptoms: []
Body:
- **Recommended:** 3-5 parallel agents - **Maximum:** 8 (rate limits may apply with subscription auth) - **If rate limited (429):** Reduce to 2-3 and add 5s delay between spawns - **Note:** 429 "capacity exhausted" errors auto-retry with backoff
[Workflow] gemini-orchestrator: File Conflict Detection claude/agents/gemini-orchestrator pattern medium gemini-orchestrator.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/gemini-orchestrator.md
Source date: 2026-03-18
Keywords: ["gemini","orchestrator","file","conflict","detection"]
Cross-domain: []
Symptoms: []
Body:
Before spawning parallel agents, verify no overlap: ```bash echo "${ALL_FILES[@]}" | sort | uniq -d # If any output -> files appear in multiple agents -> SERIALIZE those tasks ```
[Workflow] gemini-orchestrator: Production Awareness claude/agents/gemini-orchestrator pattern medium gemini-orchestrator.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/gemini-orchestrator.md
Source date: 2026-03-18
Keywords: ["gemini","orchestrator","production","awareness"]
Cross-domain: []
Symptoms: []
Body:
``` THIS IS PRODUCTION. Include in EVERY agent prompt: - DO NOT run migrate:fresh, migrate:reset, db:wipe - DO NOT delete files outside your SCOPE - DO NOT modify .env or config files unless explicitly instructed - Verify syntax before finishing: php -l {files} ```
[Guardrail] gemini-orchestrator: Autonomy Rules (MANDATORY in ALL prompts) claude/agents/gemini-orchestrator gotcha critical gemini-orchestrator.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/gemini-orchestrator.md
Source date: 2026-03-18
Keywords: ["gemini","orchestrator","autonomy","rules","mandatory","all","prompts"]
Cross-domain: []
Symptoms: []
Body:
**Include this block in EVERY Gemini agent prompt to prevent premature stopping:** ``` AUTONOMY RULES (CRITICAL — follow these exactly): - Complete the ENTIRE task in full. Do NOT stop early. - Do NOT suggest breaking the task into stages or batches. - Do NOT ask the user to confirm, clarify, or choose between options. - Do NOT say "too large", "unmanageable", or "please narrow scope". - If a subtask is ambiguous, make the best reasonable decision and proceed. - If you encounter an error,...
[Workflow] gemini-orchestrator: Refactoring Prompt Template claude/agents/gemini-orchestrator pattern medium gemini-orchestrator.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/gemini-orchestrator.md
Source date: 2026-03-18
Keywords: ["gemini","orchestrator","refactoring","prompt","template"]
Cross-domain: []
Symptoms: []
Body:
``` TASK: Extract {method/logic} from {source_file} into {target_file} SCOPE: - {source_file} (modify: remove extracted code, add import/use) - {target_file} (create or modify: add extracted code) RULES: - Preserve all existing method signatures in {source_file} - New class/trait in {target_file} must follow PSR-4: namespace {namespace} - Add proper use/import statements - Do NOT change any logic, only move code VERIFY: php -l {source_file} && php -l {target_file} ```
[Workflow] gemini-orchestrator: Effective Prompt Structure claude/agents/gemini-orchestrator pattern medium gemini-orchestrator.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/gemini-orchestrator.md
Source date: 2026-03-18
Keywords: ["gemini","orchestrator","effective","prompt","structure"]
Cross-domain: []
Symptoms: []
Body:
``` TASK: {one-line description} SCOPE (only edit these files): - {file1.php} - {file2.php} DO NOT EDIT: - {protected-file.php} - Any file not listed in SCOPE INSTRUCTIONS: 1. {step 1} 2. {step 2} CONVENTIONS: - {coding convention relevant to task} WHEN DONE: - Verify your changes with: php -l {files} - Report what you changed ```
[Workflow] gemini-orchestrator: Step 6: Resume Failed Agents claude/agents/gemini-orchestrator pattern medium gemini-orchestrator.md 88 2026-03-21 02:00:08
Source file: /home/heine/.claude/agents/gemini-orchestrator.md
Source date: 2026-03-18
Keywords: ["gemini","orchestrator","step","resume","failed","agents"]
Cross-domain: []
Symptoms: []
Body:
```bash gemini -r latest -p "The previous step failed. Error: {error}. Please retry." \ --approval-mode yolo 2>&1 ``` For retries: escalate model tier (flash->pro, 2.5->3). ---
Ingestion History

Loading…