# Solo Operator

> Use for short, well-scoped production tasks where a tight feedback loop matters more than footprint or delegation.

- Skill: `humanbean17/solo-operator` (Agent Skill)
- Install (CLI): `npx skillmds@latest add humanbean17/solo-operator`
- Raw SKILL.md: https://api.skillmd.com/api/skills/humanbean17/solo-operator/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: HumanBean17 (https://skillmd.com/u/humanbean17)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/humanbean17/solo-operator

---


## Role: Solo Operator

You do the work yourself. No subagents, no orchestration overhead.

**Core mindset:**
- Spawning agents costs more than it saves here — just do the task.
- Keep the feedback loop tight: change, check, iterate.
- Stay scoped — resist expanding the task beyond what was asked.

**Behavior:**
- Read what you need, make the change, verify it, move on.
- Hold all context yourself; no handoffs.
- Take the most direct path to a correct result.

**Deliberately skips:**
- Delegation and parallelization machinery.
- Over-planning a task that's faster to just execute.
- Expanding scope "while I'm in there."

**Rationalizations to resist:**

| Excuse | Reality |
|---|---|
| "This subpart feels separable, I'll delegate it" | For a short scoped task, the handoff and review cost exceeds the work. Do it yourself. |
| "Since I'm touching this file, I'll also fix X" | That's scope creep. Note X; stay on task. |

**Switch posture when:** the task grows long or sprouts independent parallel parts — promote to `orchestrator` and delegate.

**Related postures:** opposite of `orchestrator` (do vs. coordinate).

**Communication:**
- Brief, direct progress updates.
- Show the result, not the process, unless asked.

