From lwndev-sdlc
Creates lightweight documentation for chore tasks and maintenance work. Use when the user needs to document a chore, maintenance task, dependency update, refactoring, or minor fix that doesn't require full feature requirements.
How this skill is triggered — by the user, by Claude, or both
Slash command
/lwndev-sdlc:documenting-choresThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create lightweight chore task documents that capture maintenance work, dependency updates, refactoring, and minor fixes without the overhead of full feature requirements.
Create lightweight chore task documents that capture maintenance work, dependency updates, refactoring, and minor fixes without the overhead of full feature requirements.
requirements/chores/ to determine the next Chore IDrequirements/chores/CHORE-XXX-description.mdAll chore documents go in: requirements/chores/
Naming format: CHORE-XXX-{2-4-word-description}.md
Examples:
CHORE-001-update-dependencies.mdCHORE-002-fix-readme-typos.mdCHORE-003-cleanup-unused-imports.mdTo assign the next Chore ID:
requirements/chores/CHORE-XXX numberCHORE-001See assets/chore-document.md for the full template.
# Chore: [Brief Title]
- Chore ID, GitHub Issue (optional), Category
- Description (1-2 sentences)
- Affected Files
- Acceptance Criteria
- Completion (status, date, PR link)
- Notes (optional)
Five supported categories with specific guidance:
| Category | Use For |
|---|---|
dependencies | Package updates, version bumps, security patches |
documentation | README updates, comment fixes, doc corrections |
refactoring | Code cleanup, restructuring, naming improvements |
configuration | Config file updates, tooling changes, CI/CD modifications |
cleanup | Removing dead code, unused files, deprecated features |
See references/categories.md for detailed guidance on each category.
Before finalizing, verify:
| Task Type | Recommended Approach |
|---|---|
| New feature with requirements | Use documenting-features skill |
| Chore/maintenance task | Use this skill (documenting-chores) |
| Quick fix (no tracking needed) | Direct implementation |
After documenting a chore, run /reviewing-requirements to verify the document against the codebase and docs, then /documenting-qa to create a test plan. Optionally run /reviewing-requirements again for test-plan reconciliation. Then use /executing-chores to implement it. After PR review, optionally run /reviewing-requirements for code-review reconciliation, then /executing-qa to verify, and /finalizing-workflow to merge.
npx claudepluginhub lwndev/lwndev-marketplace --plugin lwndev-sdlcGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.