Install
$ agentstack add skill-zhuangwenhui-codingskills-incremental-change-cycle ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Incremental Change Cycle
Overview
Run the explicit workflow for incremental code changes: reconcile task state, perform a review checkpoint, run simplify, verify the touched code, and keep every checklist synchronized. This skill is the workflow controller; simplify remains the cleanup pass.
When to Use
Use this skill only when the user explicitly asks for the incremental change cycle or clearly requests the review-checklist-simplify-verify workflow after an incremental edit.
Do not use this skill for:
- a standalone simplify pass
- broad feature planning
- full PR authoring unless the user explicitly asks for PR creation
Role Boundaries
review checkpointchecks correctness, scope, regressions, and readiness to continue.simplifyperforms behavior-preserving cleanup on the changed scope.- this skill coordinates the workflow and task-state continuity across those steps.
If the user says PR, interpret it as a review checkpoint unless they clearly mean an actual pull request.
Workflow
- Identify the current change scope.
- Load the active checklist or create one if none exists.
- If multiple checklists exist for the same workflow, reconcile them before continuing.
- Mark the current task as
in_progressif a checklist supports explicit states. - Run a review checkpoint on the changed scope.
- Address any blocking findings from the review checkpoint.
- Run
simplifyon the changed scope. - Run the most relevant verification for the touched code.
- Immediately update every relevant checklist after each completed task or checkpoint.
- Before stopping, confirm the checklists agree on what is done and what remains.
Checklist Rules
- Always reuse an existing checklist if it already tracks the current workflow.
- Keep completed and remaining items explicit.
- Consult the checklist before starting the next task.
- Re-check the checklist after interruptions or context compression.
- Never leave a task completed in one checklist and incomplete in another.
Multiple Checklist Synchronization
If multiple checklists exist for the same workflow:
- Treat them as synchronized views of the same task set.
- After completing any task, update every relevant checklist before moving on.
- If a task is only partially done, do not mark it complete anywhere.
- Resolve status mismatches first; do not continue while checklists disagree.
- If one checklist is the source of truth, update it first and propagate the same state immediately.
Continuity And Recovery
Because Codex does not provide a public hooks system for this workflow, this skill must perform the continuity checks itself.
Before resuming work after a pause, interruption, or context compression:
- Re-read the active checklist or checklists.
- Reconstruct the current task, completed tasks, and remaining tasks from those checklists.
- Confirm that the current change scope still matches the recorded task state.
- Resolve any checklist drift before doing more implementation work.
If state cannot be reconstructed confidently:
- stop and ask for clarification rather than guessing
- do not restart already completed work just because context is thin
Stop-Time Guard
Do not conclude the workflow while any of these are still missing for the current incremental change:
- review checkpoint
- simplify pass
- relevant verification
- checklist synchronization
Before stopping, explicitly confirm:
- the current task is actually complete
- review checkpoint has been performed
simplifyhas been run on the changed scope- verification has been run or its absence has been stated
- all relevant checklists reflect the same state
Review Checkpoint
The review checkpoint should answer:
- did the change implement the intended scope?
- is the behavior correct?
- are there regressions or obvious risk gaps?
- is the current task actually complete?
- do the checklists match the real execution state?
Use a local review pass by default. Only escalate to an actual pull request flow if the user asked for it.
Common Mistakes
- treating
simplifyas a substitute for review checkpoint - generating a fresh checklist when a valid one already exists
- forgetting to sync multiple checklists after finishing a task
- using
PRto mean actual PR creation when the user only wanted a review gate - stopping after code changes without a review checkpoint, simplify pass, and verification
- resuming after interruption without re-reading the checklist state
- trusting memory over checklist state when the two disagree
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: zhuangwenhui
- Source: zhuangwenhui/CodingSkills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.