begin
SKILL.md
Begin
Start working on a new task with a clean, up-to-date workspace.
Branch Naming
Convert user input to semantic branch name in kebab-case:
Format: <type>/<description> or <type>/<ticket-or-issue-id>/<description> if issue tracker is setup
Types (from conventional commits):
feat— new featurefix— bug fixdocs— documentationstyle— formatting, no code changerefactor— code restructuringperf— performance improvementtest— adding/updating testsbuild— build system, dependenciesci— CI/CD configurationchore— maintenance tasks
Examples:
| User Input | Branch Name |
|---|---|
| "add dark mode" | feat/add-dark-mode |
| "fix login bug" | fix/login-bug |
| "GH-456 fix memory leak" | fix/gh-456/memory-leak |
| "update readme" | docs/update-readme |
| "refactor auth module" | refactor/auth-module |
Workflow
- Ensure clean state: verify no uncommitted changes exist, otherwise ask user to stash or commit first
- Sync with latest: switch to main and pull the latest changes
- Create workspace: create and switch to the new branch
- Confirm: show new branch name, remind to use
/finishwhen ready
Git Actions
git status --porcelain
git checkout main
git pull origin main
git checkout -b <branch-name>
IMPORTANT: Run each git command separately. Do NOT chain commands with &&.
Weekly Installs
2
Repository
kvnwolf/devtoolsGitHub Stars
4
First Seen
Feb 6, 2026
Security Audits
Installed on
amp2
gemini-cli2
claude-code2
github-copilot2
codex2
kimi-cli2