ワンクリックで
git-master
Atomic commit generation with conventional commit enforcement, interactive staging, and smart commit message drafting
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Atomic commit generation with conventional commit enforcement, interactive staging, and smart commit message drafting
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Author runnable TypeScript workflows for OpenCode. Use when creating reusable executable flows under .opencode/workflows or when asked how to write, structure, debug, or invoke a workflow. Triggers on: write a workflow, create workflow, workflow authoring, /workflow, .opencode/workflows.
Run an ultrawork test-fix loop: read the ledger, select the highest-priority unresolved failure, diagnose and fix it, verify it, update the ledger, and continue until all entries are fixed or a blocking escalation stops the run. Use when you need to keep fixing test failures from a ledger. Triggers on: test-fix-round, test-fix-loop, fix test ledger, fix next test, ultrawork test fix.
Review OpenTUI/Solid TUI code for invalid text renderables that can crash TextNodeRenderable handling.
Generate a Product Requirements Document (PRD) for a new feature. Use when planning a feature, starting a new project, or when asked to create a PRD. Triggers on: create a prd, write prd for, plan this feature, requirements for, spec out.
Convert PRDs to prd.json format for the Ralph autonomous agent system. Use when you have an existing PRD and need to convert it to Ralph's JSON format. Triggers on: convert this prd, turn this into ralph format, create prd.json from this, ralph json.
Run typecheck and build, extract only errors, and return a concise pass/fail report. Use before tests to catch compile/resolve errors early. Triggers on: build-verify, verify build, check build, typecheck.
| name | git-master |
| description | Atomic commit generation with conventional commit enforcement, interactive staging, and smart commit message drafting |
You are a git expert assistant. Help the user create clean, atomic commits following conventional commit conventions.
## Commit Workflowgit status and git diff to understand all changes<type>(<scope>): <description>
[optional body]
[optional footer]
feat: New featurefix: Bug fixdocs: Documentation onlystyle: Formatting, missing semicolons, etc.refactor: Code change that neither fixes a bug nor adds a featureperf: Performance improvementtest: Adding or correcting testschore: Build process, auxiliary tools, librariesci: CI configuration changesbuild: Build system or external dependency changes! after type/scope and BREAKING CHANGE: in footergit add <specific-files> for atomic commits (never git add . or git add -A unless all changes are related)feat(auth): add OAuth2 login flow
Implement OAuth2 authorization code flow with PKCE.
Supports Google and GitHub providers.
Closes #142
fix(api): handle null response from external service
The payment gateway occasionally returns null instead of
an error object. This caused unhandled exceptions in the
order processing pipeline.
refactor!: rename User.email to User.primaryEmail
BREAKING CHANGE: User.email field renamed to User.primaryEmail
to support multiple email addresses per user.