Jetsam — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Jetsam (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Git workflow accelerator for humans and agents.
Jetsam wraps common multi-step git workflows into single, plannable commands. Every action generates a preview plan before executing, making it safe for interactive use and ideal for AI agent integration via MCP.
[Documentation](https://jetsam-mcp.readthedocs.io) | [PyPI](https://pypi.org/project/jetsam-mcp/) | [GitHub](https://github.com/teaguesterling/jetsam)
pip install jetsam-mcp
# or
uv pip install jetsam-mcp# Initialize in a repo
jetsam init
# Check status
jetsam status
# Stage + commit
jetsam save -m "fix parser bug"
# Full pipeline: stage → commit → push → PR
jetsam ship -m "add dark mode"
# Tag and release
jetsam release v0.1.0 --title "First release"Every command shows a plan and asks for confirmation before executing. Use --dry-run to preview without executing, or --execute to skip the prompt.
| Verb | Alias | Description |
|---|---|---|
status | s | Show repository state snapshot |
save | v | Stage and commit with smart defaults |
sync | y | Fetch, rebase/merge, and push |
ship | h | Full pipeline: stage, commit, push, open PR |
switch | w | Switch branches with automatic stash/unstash |
start | b | Start work on an issue or feature (branch or worktree) |
finish | f | Merge PR and clean up branch |
tidy | t | Prune merged branches and stale remote refs |
release | r | Tag, push tag, and create platform release |
log | l | Condensed commit history |
diff | d | Show diff with smart defaults |
pr | p | Pull request operations (view/create/list) |
prs | — | List PRs with check and review status |
checks | c | Show CI check status |
issues | i | List issues from project tracker |
init | — | Initialize jetsam in a repo |
All workflow verbs (save, sync, ship, switch, start, finish, tidy, release) support:
--dry-run — show plan without executing--execute — execute without prompting--json (global) — output as JSONsave [-m MESSAGE] [--include GLOB] [--exclude GLOB] [FILES...]
ship [-m MESSAGE] [--to BRANCH] [--no-pr] [--merge] [--include GLOB] [--exclude GLOB] [FILES...]
sync [--strategy rebase|merge]
switch BRANCH [-c/--create]
start TARGET [-w/--worktree] [--base BRANCH] [--prefix PREFIX]
finish [--strategy squash|merge|rebase] [--no-delete]
release TAG [--title TITLE] [--notes NOTES] [--draft]
Jetsam includes a built-in MCP server for agent integration:
# Full agent setup: MCP config + routing instructions + warning hooks
jetsam init --mcp --agents claude --hooks claude
# Or just the MCP server config
jetsam init --mcpThis creates .mcp.json for automatic MCP discovery, CLAUDE.md with a routing table that teaches agents to use jetsam tools instead of raw git/gh, and warning hooks that alert agents when they bypass jetsam.
The MCP tools mirror CLI verbs with a plan → confirm flow:
save, ship, release) — returns a planmodify_plan to adjust the planconfirm to execute, or cancel to discardAdditional MCP tools for PR interaction: pr_comment, pr_review, pr_comments, issue_close.
Install short aliases for common operations:
jetsam init --aliasesThis adds the following aliases to your shell config:
| Alias | Command |
|---|---|
jt | jetsam |
jts | jetsam status |
jtv | jetsam save |
jty | jetsam sync |
jth | jetsam ship |
jtp | jetsam ship --pr |
jtw | jetsam switch |
jtl | jetsam log |
jtd | jetsam diff |
Jetsam supports git worktrees for parallel development:
# Start work in a new worktree
jetsam start my-feature --worktree
# Finish and clean up the worktree
jetsam finishCreate a .git-worktree-shared file in the repo root to automatically symlink paths into new worktrees (one path per line):
.env
node_modules
.venvLines starting with # are ignored.
Jetsam stores its configuration in .jetsam/ at the repo root:
| Path | Purpose |
|---|---|
.jetsam/ | Config directory (created by init) |
.jetsam/plans/ | Temporary plan storage (5-minute TTL) |
.mcp.json | MCP server config (created by init --mcp) |
.git-worktree-shared | Paths to symlink into worktrees |
Jetsam auto-detects GitHub and GitLab from remote URLs:
Git pass-through: any unrecognized command is forwarded to git, so jetsam log --oneline works exactly like git log --oneline.
MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.