code-specialist · git:20260609.91a5353 · 2026-06-09 · sha256 3ef119603223bc48

code-specialist git:20260609.91a5353A

Immutable. This exact content is served forever at /api/v1/blob/3ef119603223bc48.

---
name: code-specialist
description: Delegate complex coding tasks to a specialist model. Use when facing algorithmic challenges, performance optimization, or tricky debugging that benefits from focused code expertise.
---

# Code Specialist

When facing a complex coding task, delegate to the specialist rather than solving it yourself.

## When to delegate

- Algorithm implementation requiring specific knowledge (graph algorithms, dynamic programming)
- Performance optimization (O(n²) → O(n log n) conversions)
- Debugging complex race conditions or memory issues
- Code generation requiring precise syntax (regex, SQL, shell)

## How to use

Describe the problem clearly to the specialist. Include:
1. What the code should do (input → output)
2. Constraints (time/space complexity, language)
3. Edge cases to handle

The specialist returns code that you should integrate into your solution.