ワンクリックで
git-commit
Complete git commit workflow in a worktree. Includes review, staging, and message generation.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Complete git commit workflow in a worktree. Includes review, staging, and message generation.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run the full Weaver provisioner regression test suite against the production service. Covers full_ft, LoRA, debug modes, and edge cases.
Address GitHub PR review comments. Navigate to the correct worktree, make fixes, push updates.
Review code changes against Weaver SDK project standards before committing. Works in any worktree.
Fix a GitHub issue using git worktree for isolation. Fetches issue, creates worktree, plans and implements fix, then creates PR.
Create a GitHub PR from a worktree branch. Use after committing changes.
Run linting and tests for Weaver SDK. Works in any worktree.
| name | git-commit |
| description | Complete git commit workflow in a worktree. Includes review, staging, and message generation. |
Verify you're in a worktree (not main clone):
# Should show a worktree path, not the main repo
git rev-parse --show-toplevel
git worktree list
git diff --name-only
git diff --cached --name-only
Determine testing needs:
| File Types Changed | Run Code Review | Run Testing |
|---|---|---|
Code (.py, tests) | Yes | Yes |
Docs only (.md) | Yes | Skip |
Config (.yaml, .toml, .github/) | Yes | Skip |
| Mixed (code + docs/config) | Yes | Yes |
Launch code-review and testing as appropriate (in parallel when possible).
Fix any problems found by review or testing before proceeding.
git add path/to/changed/files
git diff --staged # Review
Never stage: Build artifacts (dist/, *.egg-info), .env, __pycache__/, coverage files
Format: type(scope): description (72 chars max)
Types: feat, fix, refactor, test, docs, style, chore, perf Scope: Module/component (client, types, cli, http, sampling)
git commit -m "type(scope): description
Detailed explanation if needed.
Fixes #ISSUE_NUMBER"
Good examples:
feat(client): add async export-sampler support
fix(http): handle connection timeout gracefully
test(types): add model input serialization tests
No AI co-author lines.
git show HEAD --name-only
git log -1