Install
$ agentstack add skill-michaelsvanbeek-personal-agent-skills-large-change ✓ 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
Large Change Workflow
When to Use
- A feature or refactor spans many files or multiple days of work
- Multiple valid approaches exist and design needs to be explicit
- Several developers need to coordinate against one plan
- A breaking change is involved (API removal, rename, behavior change)
- A new subsystem or integration is being introduced
- The change crosses layers (data, API, UI, infra)
When not to use: small, self-contained changes that can be completed and tested in one short session.
Phase 1: Design Document
Before implementation, write a design doc.
Purpose:
- Align on what is being built and why
- Compare alternatives before implementation lock-in
- Surface risks and unknowns early
- Create a durable rationale for future maintainers
Design Doc Template
Create in docs/changes/.md or docs/adr/-.md:
# Design:
**Date**: YYYY-MM-DD
**Status**: Draft | Proposed | Accepted
**Author(s)**:
## Problem
What problem does this change solve?
## Goals
- [ ] Goal 1
- [ ] Goal 2
## Non-Goals
- Not changing X
- Not supporting Y in this version
## Proposed Approach
Describe the selected solution, affected components, data flow, API/interface
changes, and dependencies.
## Alternatives Considered
Use a structured alternatives comparison:
| Option | Pros | Cons | Why not chosen |
|--------|------|------|----------------|
| Option A (chosen) | ... | ... | - |
| Option B | ... | ... | ... |
| Option C | ... | ... | ... |
## Risks and Open Questions
- [ ] Risk:
- [ ] Open question:
## Implementation Plan
High-level phases or milestones.
## Testing Strategy
What tests are required?
## Release Plan
- Version bump: PATCH / MINOR / MAJOR
- Breaking migration required: Yes / No
- Feature flag needed: Yes / No
- Rollback strategy:
Before implementation begins, confirm the design answers:
- What is being built and why
- Why this approach was chosen over alternatives
- Key risks and mitigations
- Release strategy
Phase 2: Task Decomposition
Break work into small, independently shippable tasks.
A task is well-sized when:
- It fits one focused session (roughly 4 hours or less)
- It maps to one conventional commit subject
- The codebase remains buildable and testable after completion
Decomposition Rules
- Prefer vertical slices (thin end-to-end paths) over horizontal layers.
- Split deprecation and removal into separate tasks for breaking changes.
- If task text contains and, consider splitting it.
- Every increment should leave the default branch stable.
Task List Template
## Tasks
### Phase 1: Foundation
- [ ] Add data model changes
- [ ] Implement base service/repository
- [ ] Add unit tests for new core logic
### Phase 2: Integration
- [ ] Add endpoint/adapter layer integration
- [ ] Add input validation and error handling
- [ ] Add integration tests
### Phase 3: UX/Consumer
- [ ] Add UI/client integration
- [ ] Add behavior/state tests
- [ ] Add end-to-end flow test
### Phase 4: Cleanup and Release
- [ ] Remove deprecated paths
- [ ] Update migration docs
- [ ] Update changelog and version
Phase 3: Incremental Development
Execute tasks one at a time.
Each completed task should:
- Pass tests
- Pass linting/formatting
- Pass type checks (if applicable)
- Land as one logical commit
Single-Task Loop
- Implement one task
- Run relevant tests
- Run lint/format checks
- Run type checks
- Commit with conventional commit format
- Mark the task done
Use feature flags for long-running features that cannot ship all at once.
PR Sizing
- Keep PRs focused and reviewable
- Split very large diffs into phase-based PRs when possible
- Do not merge failing CI
Phase 4: Release
When all planned tasks are complete, run a release checklist.
Pre-Release Checklist
- [ ] All planned tasks are complete
- [ ] Full test suite passes
- [ ] Linting, formatting, and type checks are clean
- [ ] Docs and migration notes are updated
- [ ] Version and changelog are updated
- [ ] Rollback plan is documented
Versioning Guidance
| Change type | Bump | |-------------|------| | Backward-incompatible behavior/API change | MAJOR | | Backward-compatible feature | MINOR | | Bug fix or internal improvements only | PATCH |
Release Notes Structure
- Breaking changes
- Features and fixes
- Internal/refactor/test/docs updates
Phase 5: Post-Implementation Cleanup
After release:
- [ ] Update design doc status to Accepted
- [ ] Document deferred follow-up work
- [ ] Archive/supersede outdated ADRs if needed
- [ ] Run a short retrospective for large, complex changes
Quick Reference
| Phase | Output | |-------|--------| | 1. Design | Design doc or ADR | | 2. Decompose | Task list with clear increments | | 3. Implement | Stable incremental commits | | 4. Release | Versioned release with notes | | 5. Cleanup | Updated docs and follow-up plan |
Anti-Patterns
| Anti-pattern | Why it hurts | Better approach | |--------------|--------------|-----------------| | Design-as-you-go on major changes | High risk of late rework | Write and review design first | | One giant implementation commit | Hard to review and rollback | One logical change per commit | | Pure horizontal decomposition | No shippable value until late | Use vertical slices | | Skipping tests between tasks | Broken state accumulates | Validate after every task | | Deferring docs until the end | Docs drift from implementation | Update docs within each phase | | Treating version bump as clerical | Mis-signaled impact to users | Define release plan in design |
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: michaelsvanbeek
- Source: michaelsvanbeek/personal-agent-skills
- 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.