From agito
Automates Git workflow — creates a branch, commits changes, and opens a pull request from the current working tree diff. Use when user says "create a PR", "make a PR", "PRを作って", "commit and PR", "push and open a PR", or any similar request to turn current changes into a pull request.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agito:agitoThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generates branch names, commit messages, and PRs from your working tree diff using a local
Generates branch names, commit messages, and PRs from your working tree diff using a local Ollama model. Code never leaves your machine.
# Check Ollama is running
curl -s http://localhost:11434/api/tags | jq -r '.models[].name' 2>/dev/null \
|| echo "OLLAMA_NOT_RUNNING"
# Check agito binary exists
which agito || echo "AGITO_NOT_INSTALLED"
If OLLAMA_NOT_RUNNING: Tell user to run ollama serve and stop.
If AGITO_NOT_INSTALLED: Tell user to run go install github.com/tatsuo48/agito/cmd/agito@latest and stop.
If gemma4:latest not in the list: Tell user to run ollama pull gemma4:latest.
# Standard run — creates branch, commits, pushes, and opens a PR
# --yes is REQUIRED in Claude Code (non-TTY environment)
agito --yes
# Draft PR
agito --yes --draft
# Preview only — shows generated content without executing git/gh operations
# Note: Ollama is still required even for dry-run
agito --dry-run --yes
# Specify base branch
agito --yes --base develop
# Skip git pull on default branch
agito --yes --no-pull
# Use a different Ollama model
agito --yes --model llama3.2:latest
# Use a remote Ollama instance
agito --yes --ollama-host http://remote-host:11434
git status to confirm there are changes to commitagito --yes [options]| Code | Meaning | Action |
|---|---|---|
| 0 | Success | Report PR URL to user |
| 1 | User cancelled | Treat as normal — no action needed |
| 2 | git failure | Show git status output |
| 3 | Ollama failure | Check ollama serve and ollama list |
| 4 | gh failure | Check gh auth status |
| 10 | Prerequisites not met | Show the error message from agito |
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 tatsuo48/agito --plugin agito