← ClaudeAtlas

setuplisted

Initialize EDPA V2 governance for a project. Vendors the engine (scripts + schemas + templates) into `.edpa/engine/`, creates `.edpa/config/{edpa.yaml,people.yaml}`, seeds id_counters.yaml, and optionally copies the PR-signal CI workflow + installs git hooks. No GitHub Project provisioning (V1 path removed in 2.0.0).
technomaton/edpa · ★ 0 · Data & Documents · score 78
Install: claude install-skill technomaton/edpa
# EDPA Setup — V2 Project Initialization ## What this does Bootstraps a local-first EDPA project. Everything EDPA-related lives under `.edpa/`; the engine is vendored as `.edpa/engine/` so CI and non-Claude-Code tools can run scripts directly without a per-run install. Resulting layout: ``` <project>/ ├── .edpa/ │ ├── engine/ ← vendored from ${CLAUDE_PLUGIN_ROOT}/edpa/ │ │ ├── scripts/ ← Python: backlog.py, engine.py, mcp_server.py, … │ │ ├── schemas/ ← JSON Schemas │ │ └── templates/ ← yaml + workflow templates │ ├── config/ │ │ ├── edpa.yaml ← project.name + governance metadata │ │ ├── people.yaml ← team registry │ │ └── id_counters.yaml ← local-first ID allocator state │ ├── backlog/ ← per-item .md files │ │ ├── initiatives/ epics/ features/ stories/ defects/ events/ risks/ │ ├── iterations/ ← per-iteration .yaml │ ├── reports/ ← timesheet + engine results │ └── snapshots/ ← frozen audit snapshots └── .github/workflows/ └── edpa-contribution-sync.yml ← PR signal materialization (optional) ``` ## Arguments `$ARGUMENTS` — optional flags: - `--with-ci` — copy `edpa-contribution-sync.yml` to `.github/workflows/`. Optional enhancement that materialises pr_reviewer / issue_comment signals (PR-thread-only events) from GitHub Acti