From jetsam
Use this skill for ALL git and GitHub operations. When the user asks to commit, push, create PRs, check CI, manage issues, or any git workflow task, route through jetsam MCP tools instead of running git/gh commands through Bash.
How this skill is triggered — by the user, by Claude, or both
Slash command
/jetsam:jetsam-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
JetSam is a git workflow accelerator available as an MCP server. Use JetSam
JetSam is a git workflow accelerator available as an MCP server. Use JetSam tools instead of running git or gh commands through Bash.
confirm() to execute.{error, message, recoverable} dicts.Do NOT run git or gh commands through Bash. Use these JetSam MCP tools instead:
| Instead of... | Use JetSam |
|---|---|
git status | mcp__jetsam__status |
git add && git commit | mcp__jetsam__save |
git push / fetch+merge+push | mcp__jetsam__sync |
git add && commit && push && gh pr create | mcp__jetsam__ship |
git checkout -b to work on issue/feature | mcp__jetsam__start |
git checkout / git switch (existing branch) | mcp__jetsam__switch |
git log | mcp__jetsam__log |
git diff | mcp__jetsam__diff |
gh pr merge + branch cleanup | mcp__jetsam__finish |
| Branch pruning / cleanup | mcp__jetsam__tidy |
gh pr view | mcp__jetsam__pr_view |
gh pr list | mcp__jetsam__pr_list |
gh pr checks / gh run view | mcp__jetsam__checks |
gh pr comment | mcp__jetsam__pr_comment |
gh pr review | mcp__jetsam__pr_review |
gh api .../comments (read PR comments) | mcp__jetsam__pr_comments |
gh issue list | mcp__jetsam__issues |
gh issue close | mcp__jetsam__issue_close |
gh release create | mcp__jetsam__release |
| Other git commands | mcp__jetsam__git (passthrough) |
mcp__jetsam__save(message="fix bug") → returns planmcp__jetsam__confirm(id=plan_id) → executesmcp__jetsam__ship(message="fix bug") → stage+commit+push+PR in one planmcp__jetsam__status() → branch, dirty state, ahead/behind, PR infomcp__jetsam__sync() → fetch+rebase/merge+push planmcp__jetsam__confirm(id=plan_id)mcp__jetsam__start(target="42") → creates branch from issue numbermcp__jetsam__confirm(id=plan_id)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 teaguesterling/retritis --plugin jetsam