
executing-chores
by lwndev
A collection of Agent Skills that I find useful. Uses [ai-skills-manager](https://ai-skills-manager.app) CLI to create, validate, install, update and remove skills.
SKILL.md
name: executing-chores description: Executes chore task workflows including branch creation, implementation, and pull request creation. Use when the user says "execute chore", "implement this chore", "run the chore workflow", or references chore documents in requirements/chores/.
Executing Chores
Execute chore task workflows with systematic tracking from branch creation through pull request.
When to Use This Skill
- User says "execute chore", "implement this chore", or "run the chore workflow"
- User references a chore document in
requirements/chores/ - User wants to implement documented maintenance work
- Continuing chore work that was previously started
Quick Start
- Locate chore document in
requirements/chores/ - Extract Chore ID and review acceptance criteria
- Check for linked GitHub issue (update if exists)
- Create git branch:
chore/CHORE-XXX-description - Execute the defined changes, tracking with todos
- Commit changes with descriptive messages
- Verify acceptance criteria are met
- Run tests/build verification
- Create pull request
- Update GitHub issue with PR link (if issue exists)
- Update chore document completion section (status, date, PR link)
Workflow Checklist
Copy this checklist to track progress:
Chore Execution:
- [ ] Locate chore document (get Chore ID)
- [ ] Post GitHub issue start comment (if issue exists)
- [ ] Create git branch: chore/CHORE-XXX-description
- [ ] Load acceptance criteria into todos
- [ ] Execute defined changes
- [ ] Commit with chore(category): message format
- [ ] Verify acceptance criteria met
- [ ] Run tests/build verification
- [ ] Create pull request
- [ ] Update GitHub issue with PR link (if exists)
- [ ] Update chore document (status → Completed, date, PR link)
See references/workflow-details.md for detailed guidance on each step.
Branch Naming
Format: chore/CHORE-XXX-{2-4-word-description}
- Uses Chore ID (not GitHub issue number) for consistent naming
- Description should be lowercase with hyphens
- Keep description brief but descriptive (2-4 words)
Examples:
chore/CHORE-001-update-dependencieschore/CHORE-002-fix-readme-typoschore/CHORE-003-cleanup-unused-imports
Commit Message Format
Format: chore(category): brief description
Categories: dependencies, documentation, refactoring, configuration, cleanup
Examples:
chore(dependencies): update typescript to 5.5chore(documentation): fix typos in READMEchore(cleanup): remove unused imports
Verification Checklist
Before creating the PR, verify:
- All acceptance criteria from chore document are met
- Tests pass (if applicable)
- Build succeeds
- Changes match the scope defined in chore document
- No unintended side effects
References
- Detailed workflow guidance: workflow-details.md - Step-by-step instructions for each phase
- GitHub templates: github-templates.md - Issue comments, commit messages, PR format
- PR template: assets/pr-template.md - Pull request format for chores
Relationship to Other Skills
| Task Type | Recommended Approach |
|---|---|
| Chore already documented | Use this skill (executing-chores) |
| Chore needs documentation first | Use documenting-chores, then this skill |
| New feature with requirements | Use documenting-features -> creating-implementation-plans -> implementing-plan-phases |
| Quick fix (no tracking needed) | Direct implementation |
スコア
総合スコア
リポジトリの品質指標に基づく評価
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
レビュー
レビュー機能は近日公開予定です