From devflows
Use when the user says "yeet" or "/yeet" to quickly stage, review, commit, and push all changes with a provided message
How this skill is triggered — by the user, by Claude, or both
Slash command
/devflows:yeetThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fast commit-and-push. Usage: `/yeet "some commit message"` or just `/yeet` to auto-generate the message.
Fast commit-and-push. Usage: /yeet "some commit message" or just /yeet to auto-generate the message.
git add -A
Run git diff --cached --stat and git diff --cached to show:
Present to user as a summary.
Run git diff --cached --name-only and treat the commit as docs-only only when every staged file ends in .md or .txt.
yeet should append [skip ci] to the final commit message.[skip ci].git log --oneline -10 for recent commit style, then generate a concise commit message based on the diff. Use the Conventional Commits format: type(scope): description (e.g., fix(auth): resolve token refresh race condition, feat(dashboard): add player search). Common types: feat, fix, refactor, style, docs, test, chore, perf, ci, build. Scope is optional but preferred when the change is clearly scoped to a specific area. [skip ci] to the final commit message unless it is already present.Ask user to confirm with a message like:
Ready to commit and push with message: "<message>"
Use AskUserQuestion with options "Yeet it" and "Cancel".
git commit -m "<message>"
git push
If push fails (no upstream), use git push -u origin <current-branch>.
Report the commit hash and pushed branch when done.
git reset
Unstage everything and stop.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub georgenance/agent-skills --plugin devflows