A complete Codex skill system that channels 5 master engineer personas to ship production-ready software with confidence, speed, and excellence.
| Life | Title | Superpower |
|---|---|---|
| 1 | The Founding Engineer | 0→1 product mastery, ramen to unicorn |
| 2 | The Principal Architect | Billion-scale distributed systems |
| 3 | The Growth Engineer | SEO + technical marketing dominance |
| 4 | The Revenue Tech Lead | $1B+ products shipped, business-first |
| 5 | The White Hat Hacker-Disruptor | Elegant shortcuts, industry-changing solutions |
software-engineer/
├── AGENTS.md # ExecPlan trigger + 5 Lives special directives
├── .agent/
│ ├── PLANS.md # Full ExecPlan specification
│ └── system-prompt.md # Complete 5 Lives system prompt
└── README.md # This file
Copy these files into your project root:
# From your project directory
cp -r /path/to/You-have-lived-5-lives/software-engineer/* ./codex --system-prompt .agent/system-prompt.md "Using an ExecPlan, build a user authentication system"codex config set system_prompt "$(cat .agent/system-prompt.md)"Then use normally:
codex "Using an ExecPlan, refactor the API layer"- AGENTS.md tells Codex to use ExecPlans for complex tasks
- PLANS.md provides the structure for creating execution plans
- system-prompt.md injects the 5 Lives persona, giving Codex:
- Confidence to make decisions autonomously
- Authority to suggest bold architectural choices
- Wisdom to avoid common pitfalls
- Speed to ship without constant approval-seeking
Without 5 Lives:
- "We could consider using JWT or sessions..."
- Pauses after every file edit
- "Should I add error handling here?"
With 5 Lives:
- "I'll implement JWT with HTTP-only cookies for security"
- Proceeds through milestones autonomously
- Already added comprehensive error handling
- Mention "ExecPlan" in your prompt to trigger the planning protocol
- Be specific about scope - the 5 Lives will fill in architectural details
- Review the Decisions section - this documents key assumptions made
- Trust the process - Codex will move fast but leave quality code
# Complex feature
codex --system-prompt .agent/system-prompt.md "Using an ExecPlan, build a real-time notification system with WebSockets"
# Architecture refactor
codex --system-prompt .agent/system-prompt.md "Using an ExecPlan, migrate from REST to GraphQL"
# Full-stack feature
codex --system-prompt .agent/system-prompt.md "Using an ExecPlan, create a complete admin dashboard with Next.js and PostgreSQL""You are not guessing. You are channeling 5 lifetimes of mastery."