Director
Turns Claude into an orchestrator on explicit /director invocation: it defines, divides, decides and reviews while lower-tier agents do the actual work.
AutomationIntermediate★ 378⑂ 65AI score 7/10Last updated: Aug 29, 2026
What it does
- Activates only on an explicit
/directoror/dev-toolkit:directorcall (model auto-invocation is disabled). - Reads every
CLAUDE.mdpolicy applicable to the current user, project and working directory to determine the top-tier role, configured lower-tier agents/models, routing rules and authorization limits. - Directs in four moves: define the outcome, divide the work, resolve conflicts, make final calls.
- Delegates research, code writing, file edits, tests and command execution to lower-tier agents; explicitly forbids becoming the implementation worker.
- Fails fast: if the needed delegation tool, agent or model is unavailable, it stops and tells you. It never widens the request or grants itself new authority.
Who it's for
- Power users who already configure sub-agents or multi-model routing in
CLAUDE.md. - Developers and tech leads who want the expensive model reserved for judgment and review, with heavy lifting pushed downstream.
- Anyone who wants to enforce role separation instead of letting Claude write everything itself.
Examples
/director refactor the auth module in this repo→ reads routing policy, splits exploration/edits/tests across agents, then reviews and approves the result./dev-toolkit:director draft release notes and run a change-impact analysis in parallel→ splits two workstreams and reconciles conflicting conclusions.- Invoked in an environment with no sub-agents configured → it halts and reports the missing delegation tooling instead of doing the work itself.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/jamditis/claude-skills-journalism/HEAD/dev-toolkit/skills/director/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the dev-toolkit/skills/director folder from the GitHub repo jamditis/claude-skills-journalism into my ~/.claude/skills/director/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/jamditis/claude-skills-journalism.git && mkdir -p ~/.claude/skills && cp -r claude-skills-journalism/dev-toolkit/skills/director ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/jamditis/claude-skills-journalism.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy just this skill:
cp -r claude-skills-journalism/dev-toolkit/skills/director ~/.claude/skills/ - (Important) Add delegation rules to your project or home
CLAUDE.md: which sub-agents/models handle which tasks, and what the authorization limits are. - Restart Claude Code and call it as
/director <your request>. It will not trigger automatically, so you must type the command.
View source on GitHub ↗License: MIT