ワンクリックで
push-all
Stage, commit, and push all changes with a descriptive commit message, then summarize and show the diff
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Stage, commit, and push all changes with a descriptive commit message, then summarize and show the diff
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when the user asks to take on, work on, or pick up a Linear issue - fetches issue details and sets up an isolated git worktree before starting implementation
Work on LeetCode problems in the ~/leetcode directory
Start the clawdbot gateway and show status
Open a new tab in iTerm, optionally start Claude with instructions
A simple hello world skill that demonstrates basic skill creation
Navigate to ~/kraken directory, initialize claude, and show local changes
| name | push-all |
| description | Stage, commit, and push all changes with a descriptive commit message, then summarize and show the diff |
| allowed-tools | Bash(git:*) |
Push all changes following this exact workflow:
Check current status and get the diff:
git status
git diff
git diff --cached
Stage all changes:
git add -A
Analyze the changes and create a descriptive commit message:
Commit the changes:
git commit -m "<descriptive message>"
Push to the remote:
git push
git push -u origin <branch-name>Report the result to the user:
git show --stat and git show for the full diff)