Start
The onboarding entrypoint for the ai-engineering-workspace kit. This does not
reimplement anything: it points you at the one wizard that generates your
persona, scripts/create-persona.sh (or .ps1 on Windows).
What the persona wizard does
It stitches your identity header onto the fixed methodology canon and writes
three gitignored files under persona/:
persona.md— your full persona (Codex installs this toreferences/persona.md)CLAUDE.md— the condensed version other tools userecommended-skills.md— which shipped skills to reach for first
It asks only about the identity header — discipline, seniority, workflow, then
role, stack, and tooling. The methodology canon (simplicity ladder, RFC/ADR
format, PR-review tiers, verification, git rules) is fixed and identical for
everyone. Press Enter to accept each default; staff + fullstack + architecture-focused reproduces the shipped baseline.
Steps
- Ask which shell the user is on if it is not already obvious: a POSIX shell (macOS/Linux) or PowerShell (Windows). Do not assume.
- Give the exact command for that shell (below), and let the user run it in their own terminal so the interactive prompts work.
- Point at the next step: once the persona files exist, run the Codex
installer (
codex/scripts/install.macos-linux.sh, or the.ps1on Windows), which installs the filledpersona.mdinto$CODEX_HOME/references.
macOS / Linux (POSIX shell)
scripts/create-persona.sh # interactive; Enter accepts each default
scripts/create-persona.sh --defaults # accept everything, no prompts
Windows (PowerShell)
powershell -NoProfile -File .\scripts\create-persona.ps1
powershell -NoProfile -File .\scripts\create-persona.ps1 -Defaults
Rules
- Do not run the wizard or edit files yourself unless the user explicitly asks. It is interactive and writes the user's personal files; hand over the command and let them drive.
- Do not re-ask the wizard's questions here. The wizard owns that flow; this skill only explains it and provides the command.