원클릭으로
openup-init
One-command project setup for OpenUP - interactive initialization wizard
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
One-command project setup for OpenUP - interactive initialization wizard
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Mark a task as complete, update roadmap, commit changes, and prepare traceability logs
Execute an already-claimed lane's Operations boxes with script/judgment classification — script steps run directly with zero self-brief, judgment steps self-brief and execute. Handles only pick/resume; every other resolve path routes to /openup-next.
Run OpenUP Assess Results at iteration end — check evaluation criteria, demo only completed acceptance-tested work, feed discovered work back, and trigger the milestone review at a phase boundary
Run the phase milestone go/no-go — prepare derived evidence, pause for the human decision via an input-request, and record the milestone (never advance the phase itself)
Begin a new OpenUP iteration with proper phase context and task selection
Run ONE OpenUP delivery cycle — resume the active iteration if one stopped mid-work, else claim the top READY lane, else promote the next pending roadmap task and start it. Always advances; only no-ops when nothing is left to do. The sequential continue-loop.
| name | openup-init |
| description | One-command project setup for OpenUP - interactive initialization wizard |
This skill provides a one-command initialization for OpenUP projects, replacing the complex multi-step setup process with an interactive conversational flow.
Use this skill when:
Do NOT use this skill when:
After using this skill, verify:
A fresh project has no .openup/state.json yet (the first iteration has not
started). The gate-edits.py PreToolUse hook therefore blocks the Write,
Edit, and NotebookEdit tools on any non-exempt path — including
docs/project-status.md, docs/roadmap.md, and docs/project-config.yaml —
because no iteration plan is persisted. This is by design: you cannot start an
iteration in a project that does not exist yet.
The gate only fires on the editing tools, so create every bootstrap file
with the Bash tool (cp for templates, cat > … << 'EOF' heredocs for
generated files, mkdir -p for directories). Bash file creation is gate-exempt.
Do not reach for Write/Edit during initialization — the hook will block
them and the run will stall. Once /openup-init has scaffolded the project, the
first real change goes through /openup-start-iteration (or /openup-quick-task),
which persists state and unblocks the editing tools normally.
If not provided via arguments, interactively prompt for:
Project Name: What would you like to call this project?
Project Type: What type of project is this?
web - Web application (frontend/backend)api - REST/GraphQL API servicelibrary - Reusable code library/packagemobile - Mobile applicationcli - Command-line toolother - SpecifyInitial Phase: Which phase should we start in?
inception - Define scope and vision (default for new projects)elaboration - Architecture planning (for projects with vision)construction - Active developmenttransition - Deployment preparationCreate the following directories (via Bash — see Gate awareness above):
mkdir -p docs/input-requests docs/use-cases docs/agent-logs
# docs/input-requests — Stakeholder input documents
# docs/use-cases — Use case specifications
# docs/agent-logs — Agent activity logs
Copy each template below via Bash (see Gate awareness above — cp is
gate-exempt), then fill its [PLACEHOLDER] fields. Copying from a committed
template, not freehanding the markdown, keeps every bootstrap file's shape
single-sourced.
docs/project-status.md)cp docs-eng-process/templates/project-status.md docs/project-status.md
Fill [PROJECT_NAME], [INITIAL_PHASE], and [DATE] (twice) with the
gathered project name, initial phase, and today's date.
docs/roadmap.md)cp docs-eng-process/templates/roadmap.md docs/roadmap.md
Replace the T-002: [Next Task Placeholder] row with the project's actual
first real task once known (or leave it as the placeholder if the first
Inception activity — e.g. /openup-create-vision — will define it).
docs/input-requests/)If the user has raw stakeholder input to capture before Inception drafting begins (a brief, a problem statement, target users), copy the input-request template rather than only creating the directory:
cp docs-eng-process/templates/input-request.md \
"docs/input-requests/stakeholder-brief-$(date +%Y%m%d).md"
Fill its ## Context/## Questions sections with the gathered project
information, or fill the Answer fields directly with what the user
already told you — either is fine, this file is the source material the
Vision document (/openup-create-vision) is authored from. Skip this file
entirely when there's no stakeholder input yet (a fresh Inception can still
start from /openup-request-input later).
docs/project-config.yaml)Emit a starter docs/project-config.yaml by copying
docs-eng-process/templates/project-config.example.yaml, then prompt the user to
fill in the context: block (stack, domain, key stakeholders) for this project.
It is the project-owned home for facts + per-artifact rules injected into every
/openup-create-* prompt — see docs-eng-process/project-config.md. The file is
optional: leaving the placeholders means the framework defaults apply unchanged.
After copying, append this commented environments: starter (the template is
OpenUP-layer read-only, so the block is added here, not there):
# environments: # ordered deployment chain, first = closest to the team
# - name: staging
# promotion: "smoke suite green; no Sev-1 defects open"
# - name: beta
# promotion: "beta-user acceptance recorded; success-measure instrumentation emitting"
# - name: production
Uncommented, the chain is consumed by /openup-transition (one promotion
checklist per hop) and by task-spec ## Rollout default states. The three names
are the documented example, not a schema — any ordered list works. Left
commented, deployment behaves as the single-hop framework default.
Also append this commented process: starter — the machine-readable
Development Case that tailors the whole lifecycle by archetype (added here for
the same reason: the template is OpenUP-layer read-only):
# process: # Development Case — tailor the lifecycle by archetype
# archetype: product # quick | mvp | product (sets the per-phase defaults)
# # phases: {} # optional: override any phase's defaults, e.g.
# # construction: { iterations: many, parallel: true }
# milestone_review: human # human | auto-assess (auto only for minor milestones)
Uncommented, archetype selects a per-phase default set (quick degenerates to
today's /openup-quick-task ceremony; product sizes Elaboration to open
architectural risk); any explicit phases: key overrides that default. The
section is structurally validated by check-docs.py. Left commented, no
archetype tailoring applies — run
python3 scripts/check-docs.py --show-archetype-defaults to see exactly what
that means and what each archetype would set instead. Full mapping:
docs-eng-process/project-config.md.
Check if agent teams are enabled:
# Check environment variable
if [ -z "$CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS" ]; then
echo "Agent teams not enabled. Enable with:"
echo "export CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1"
fi
Create initial team configuration:
.claude/settings.json with recommended hooksCheck if git is initialized:
if ! git rev-parse --git-dir > /dev/null 2>&1; then
git init
# Create initial commit
fi
If starting with inception phase:
inception/initialize-projectReturns a summary of:
docs-eng-process/QUICK-REFERENCE.md so they pick /quick-task vs /start-iteration vs /orchestrate correctlyThe skill uses intelligent defaults based on project type:
| Project Type | Default Phase | Recommended Team | Initial Tasks |
|---|---|---|---|
| web | inception | analyst + architect | Requirements, Architecture |
| api | elaboration | architect + developer | API design, Implementation |
| library | construction | developer + tester | Implementation, Testing |
| mobile | inception | analyst + architect | Requirements, UX Design |
| cli | construction | developer | Implementation |
/openup-init project_name: "MyWebApp" project_type: web
/openup-init project_name: "MyAPI" project_type: api
/openup-init project_name: "MyLib" project_type: library
| Error | Cause | Solution |
|---|---|---|
| Directory not empty | Project already initialized | Use existing structure or specify new location |
| Git not found | Git not installed | Install git, or skip git-dependent steps and initialize the repo later |
| Permission denied | Cannot create directories | Check directory permissions |
After initialization:
/openup-inception activity: initiate/openup-create-vision/openup-start-iteration/openup-init
# Prompts for all information interactively
/openup-init project_name: "ECommerce" project_type: web
# Creates web app structure with team configuration
/openup-init project_name: "ExistingAPI" project_type: api skip_teams: true
# Adds OpenUP to existing project without team setup