work-issue
Installation
SKILL.md
Start working on a GitHub issue. Fetches the issue details, creates a properly named branch, reads project context from chalk.json, and sets up a todo list for implementation.
Workflow
-
Fetch issue details — Use
gh issue view <number> --json title,body,labels,assignees,milestoneto get the full issue context. -
Read project context — If
.chalk/chalk.jsonexists, read it to understand:sourceLayout— where to create/modify filesroutes— which pages might be affectedproject.framework— framework-specific patterns to followdev.command— how to run the project for testing
-
Create a branch — Name it based on the issue:
- Feature:
feat/<issue-number>-<short-description> - Bug fix:
fix/<issue-number>-<short-description> - Chore:
chore/<issue-number>-<short-description> - Derive the type from issue labels (
bug→ fix,enhancement→ feat, default → feat) - Keep the description to 3-5 kebab-case words from the issue title
- Feature: