بنقرة واحدة
close-epic
Formal epic closure ritual — security audit, CHANGELOG consolidation, tagging, merge
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Formal epic closure ritual — security audit, CHANGELOG consolidation, tagging, merge
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Reset estratégico de un producto existente: diagnosticar, visionar, planificar, ejecutar
Format commit messages following Conventional Commits — works in terminal and IDE
Format and create commits following Conventional Commits with project-specific scopes
Universal workflow orchestrator — Pre-Flight checklist + 5 Gates for task lifecycle
Generate and update technical documentation — architecture, conventions, design decisions, changelogs
Detect and update out-of-sync documentation when closing an epic or feature
| name | close-epic |
| description | Formal epic closure ritual — security audit, CHANGELOG consolidation, tagging, merge |
| version | 2.0.0 |
| compat | claude-code, codex, cursor, openclaw |
Govern the formal completion of a strategic development block (Epic). Coordinates the macro security audit, version freezing via Git tags, and institutional knowledge preservation in the repository.
@security-audit sub-skill. All new endpoints and changes from the Epic are deeply scanned.[Unreleased] into a new official semver version with the current system date.## [MAJOR.MINOR.PATCH] — YYYY-MM-DD · E[N] · [Epic Name]✅ emoji. Record the closure date, merge commit hash or ID, generated tags, and a "Lessons Learned" block.CHANGELOG.md and AGENT_TASKS.md).docs: close E[N] formally in control logs--no-ff Mergemain), pull remote changes, and merge the epic branch forcing a merge commit.git checkout main
git pull origin main
git merge --no-ff epic/e[N]-[name] -m "merge: merge epic E[N] - [Name]"
git push origin main
Why: The --no-ff (no-fast-forward) flag preserves the branch structure in Git's historical graph, visually isolating the Epic's lifecycle.
git tag -a E[N]-complete -m "Stable release of Epic [N]"
git push origin --tags
⚠️ NO AUTO-DELETE OF BRANCHES: Epic and Task branches (local and remote) must not be destructively deleted post-merge. They are intentionally preserved as part of the repository's technical and pedagogical memory.