Ultrathink.
Mission
Generate a Claude configuration that fits the specific project. Every skill, rule, and CLAUDE.md entry must exist because this project needs it — not because a template included it. Analyze the real codebase deeply, understand its conventions and patterns, and build a config that makes Claude work well here.
Modes
- Fresh prime — no claude config yet. Build from scratch.
- Re-prime — claude config already exists. Preserve intentional project work, refresh what is stale or generic, fill gaps.
Default to re-prime whenever meaningful existing config is found. Never overwrite it wholesale without user approval.
Flow
- Analyze the repo deeply — stack, conventions, boundaries, docs, existing config. See analysis-checklist.md.
- Propose findings using the Output Format below. Do not touch meaningful files before approval.
- Create skills via
/skill-creator — every skill must go through skill-creator to ensure quality and project fit. Starters in .claude/starter-skills/ are reference input to accelerate creation, not templates to copy.
- Generate or refine CLAUDE.md — lean, high-signal, always-on context only. Point to docs/READMEs for detail.
- Rules only if needed — apply the rule test. Zero rules is valid.
- Offer CLAUDE.local.md — personal preferences (role, sandbox URLs, preferred test data, workflow quirks), gitignored.
- Clean up — delete
.claude/starter-skills/ after processing. Keep protected skills. Confirm all deletions.
- Verify — references resolve, stack claims match evidence, config is project-specific not generic.
- Offer skill optimization — after everything is set up, offer optimization paths sized to how many new skills were created. ≤3 skills: recommend full optimization for all. >3 skills: recommend full optimization for user-designated core skills only + description optimization for the rest (avoids long execution time and token burn). Always emphasize that full optimization takes meaningful time and tokens. Run sequentially — never in parallel; concurrent runs overload the user's machine.
Follow full step-by-step in setup-project.md.
Placement Decision Matrix
Every piece of knowledge must earn its place. Use this to decide where it belongs:
| Detected need |
Where it belongs |
Test |
| General framework/library knowledge |
Skill (via /skill-creator) |
Would a reusable skill teach this across projects? |
| Project-specific constraint that still produces wrong code with the right skill loaded |
.claude/rules/<name>.md with paths: |
With the relevant skill activated, will code still be wrong without this? |
| Identity, commands, stack, key architecture, reference pointers |
CLAUDE.md |
Should this be always-on for most tasks in this repo? |
| Detailed architecture or domain explanations |
Existing docs/, READMEs — referenced from CLAUDE.md |
Valuable but too detailed for always-on? |
| Dense agent-oriented reference material - referenced from CLAUDE.md |
.claude/project/ (optional) |
Do agents need a tighter reference than the human docs provide? |
Principles
- Domain-scoped, project-fitted. Skills target a capability, not the project itself — with this project's patterns baked in. Generic templates and project-named catch-alls both degrade context quality.
- Repo evidence is the source of truth. Verify conventions from actual source files, configs, and docs. Do not assert what you haven't confirmed.
- Lean context, high signal. Follow the context engineering philosophy — load only what's needed, when it's needed. CLAUDE.md carries always-on essentials. Skills load on demand. Rules auto-attach by path.
- Rules are optional and path-scoped. Only create a rule when the rule test passes. Do not modify
_apply-all.md — it is a universal boilerplate rule from prime, not project config.
- Reuse over duplication. If the project has strong docs, point to them. Do not re-author parallel agent docs unless existing material is too noisy or incomplete.
Output Format
Before making non-trivial changes, report findings in this shape:
Current State
What Claude config already exists; what the repo evidence says about stack, tooling, and conventions.
Proposed Changes
What to create, update, keep, or remove — including which skills to build and what each should cover.
Files to Touch
Concrete file list with short purpose notes.
Include these only when non-empty:
- Decisions Needing User Input — overwrites, deletions, or major structural changes
- Risks / Assumptions — inferred facts that still need verification
After approval, implement and finish with a short summary of what changed and any follow-ups.
References
Additional Context (Optional)
$ARGUMENTS
1---2name: optimus-prime3description: Generates a Claude Code configuration tailored to a specific project. Use whenever the user wants to prime a project, set up claude for a repo, bootstrap claude config, or re-prime/refresh an already-primed project (for example after `/prime-sync` pulled new starter content). Triggers on 'prime', 'prime this project', 'optimus-prime', 're-prime', 'refresh claude config', 'regenerate CLAUDE.md', 'set up claude for this repo'. Deeply analyzes the real codebase and builds project-specific skills, rules, and CLAUDE.md — not generic boilerplate. For ongoing config health checks and proposal review, use `self-evolve` instead.4---5
6Ultrathink.
7
8## Mission
9
10Generate a Claude configuration that fits the specific project. Every skill, rule, and CLAUDE.md entry must exist because this project needs it — not because a template included it. Analyze the real codebase deeply, understand its conventions and patterns, and build a config that makes Claude work well here.
11
12## Modes
13
14- **Fresh prime** — no claude config yet. Build from scratch.
15- **Re-prime** — claude config already exists. Preserve intentional project work, refresh what is stale or generic, fill gaps.
16
17Default to re-prime whenever meaningful existing config is found. Never overwrite it wholesale without user approval.
18
19## Flow
20
211. **Analyze** the repo deeply — stack, conventions, boundaries, docs, existing config. See [analysis-checklist.md](./references/analysis-checklist.md).
222. **Propose** findings using the Output Format below. Do not touch meaningful files before approval.
233. **Create skills** via `/skill-creator` — every skill must go through skill-creator to ensure quality and project fit. Starters in `.claude/starter-skills/` are reference input to accelerate creation, not templates to copy.
244. **Generate or refine CLAUDE.md** — lean, high-signal, always-on context only. Point to docs/READMEs for detail.
255. **Rules only if needed** — apply the rule test. Zero rules is valid.
266. **Offer CLAUDE.local.md** — personal preferences (role, sandbox URLs, preferred test data, workflow quirks), gitignored.
277. **Clean up** — delete `.claude/starter-skills/` after processing. Keep protected skills. Confirm all deletions.
288. **Verify** — references resolve, stack claims match evidence, config is project-specific not generic.
299. **Offer skill optimization** — after everything is set up, offer optimization paths sized to how many new skills were created. ≤3 skills: recommend full optimization for all. >3 skills: recommend full optimization for user-designated core skills only + description optimization for the rest (avoids long execution time and token burn). Always emphasize that full optimization takes meaningful time and tokens. **Run sequentially — never in parallel; concurrent runs overload the user's machine.**
30
31Follow full step-by-step in [setup-project.md](./references/setup-project.md).
32
33## Placement Decision Matrix
34
35Every piece of knowledge must earn its place. Use this to decide where it belongs:
36
37| Detected need | Where it belongs | Test |
38|---|---|---|
39| General framework/library knowledge | Skill (via `/skill-creator`) | Would a reusable skill teach this across projects? |
40| Project-specific constraint that still produces wrong code with the right skill loaded | `.claude/rules/<name>.md` with `paths:` | With the relevant skill activated, will code still be wrong without this? |
41| Identity, commands, stack, key architecture, reference pointers | `CLAUDE.md` | Should this be always-on for most tasks in this repo? |
42| Detailed architecture or domain explanations | Existing `docs/`, READMEs — referenced from CLAUDE.md | Valuable but too detailed for always-on? |
43| Dense agent-oriented reference material - referenced from CLAUDE.md | `.claude/project/` (optional) | Do agents need a tighter reference than the human docs provide? |
44
45## Principles
46
47- **Domain-scoped, project-fitted.** Skills target a capability, not the project itself — with this project's patterns baked in. Generic templates and project-named catch-alls both degrade context quality.
48- **Repo evidence is the source of truth.** Verify conventions from actual source files, configs, and docs. Do not assert what you haven't confirmed.
49- **Lean context, high signal.** Follow the context engineering philosophy — load only what's needed, when it's needed. CLAUDE.md carries always-on essentials. Skills load on demand. Rules auto-attach by path.
50- **Rules are optional and path-scoped.** Only create a rule when the rule test passes. Do **not** modify `_apply-all.md` — it is a universal boilerplate rule from prime, not project config.
51- **Reuse over duplication.** If the project has strong docs, point to them. Do not re-author parallel agent docs unless existing material is too noisy or incomplete.
52
53## Output Format
54
55Before making non-trivial changes, report findings in this shape:
56
57### Current State
58What Claude config already exists; what the repo evidence says about stack, tooling, and conventions.
59
60### Proposed Changes
61What to create, update, keep, or remove — including which skills to build and what each should cover.
62
63### Files to Touch
64Concrete file list with short purpose notes.
65
66Include these only when non-empty:
67- **Decisions Needing User Input** — overwrites, deletions, or major structural changes
68- **Risks / Assumptions** — inferred facts that still need verification
69
70After approval, implement and finish with a short summary of what changed and any follow-ups.
71
72## References
73
74| Reference | Content |
75|---|---|
76| [analysis-checklist.md](./references/analysis-checklist.md) | What to inspect during repo + existing-config review |
77| [setup-project.md](./references/setup-project.md) | Fresh-prime / re-prime step-by-step workflow |
78
79## Additional Context (Optional)
80
81<user-context>$ARGUMENTS</user-context>