Agent skill
ce-release-task
Identify the next release task from RELEASE_PLAN_v1.md and vX.Y.Z_plan.md, plan implementation, execute it, and verify closure with tests and gates.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/ce-release-task
SKILL.md
CE Release Task
You are identifying, implementing, and verifying a single release task from the current version plan.
Required references
docs/improvement/RELEASE_PLAN_v1.md(master plan and ADR gap appendix)docs/improvement/vX.Y.Z_plan.md(current version implementation plan)- Governing ADRs and standards for the selected task
CONTRIBUTOR_INSTRUCTIONS.md(coding and testing rules)
Use this skill when
- Picking the next actionable task from the current release plan.
- Implementing a specific release task end-to-end.
- Verifying that a release task is firmly closed.
Workflow
Phase 1: Task Selection
- Read
RELEASE_PLAN_v1.mdcurrent version section andvX.Y.Z_plan.md. - Identify tasks by status:
- Completed: has verification evidence (tests green, code merged).
- In progress: partially implemented.
- Not started: no implementation yet.
- Select the highest-priority not-started or in-progress task, considering:
- dependency ordering (blocked vs. unblocked)
- ADR gap severity from the appendix
- user preference (if specified)
Phase 2: Planning
- Read the task section in
vX.Y.Z_plan.mdfor implementation steps. - Read all governing ADRs, standards, and source files referenced.
- Identify the specific code changes needed:
- which files to modify or create
- which tests to add
- which documentation to update
- Consult
ce-adr-consultif the task touches ADR-governed behavior. - Present the implementation plan to the user for approval.
Phase 3: Implementation
- Implement the code changes following CE coding standards.
- Write tests per the
ce-test-authorrubric. - Run
make local-checks-prto validate. - If tests fail, diagnose and fix before proceeding.
Phase 4: Verification
- Run the task-specific verification checklist from
vX.Y.Z_plan.md. - Confirm:
- all new tests pass
- no coverage regression
- no existing test breakage
- ADR gap status can be updated (severity -> 0 if fully closed)
- Update the task status in
vX.Y.Z_plan.mdwith a completion date and brief status note.
Output contract
For each completed task, provide:
- summary of changes made
- files modified
- tests added/modified
- verification evidence (test output, coverage)
- updated status in
vX.Y.Z_plan.md
Constraints
- One task at a time. Do not batch unrelated tasks.
- Always run verification before declaring a task closed.
- Do not update
RELEASE_PLAN_v1.mdappendix scores without evidence. - Follow CE-first coding rules: use
WrapCalibratedExplainerandce_agent_utilshelpers, not ad-hoc wrappers.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?