com um clique
git-commit
Create a git commit using the message format below
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Create a git commit using the message format below
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Capture notes into your daily journal using the jrnl CLI
Create a Google Task via the IFTTT JSON webhook
Split working tree changes into up to five atomic commits, each with a message generated using the git-commit skill
Use Bun's shell API ($ from "bun") when writing or editing scripts that run shell commands in src/. Use when adding or changing subprocess/shell usage under src/, or when the user asks for shell execution in this project. Prefer Bun Shell over child_process or execSync.
Polish text by refining clarity, coherence, and conciseness
Add GitHub Actions workflow for publishing Rust crates using trusted publishing (OIDC). Use when setting up automated crate publishing, configuring crates.io trusted publishing, or when the user mentions crate publishing workflow.
| name | git-commit |
| description | Create a git commit using the message format below |
| disable-model-invocation | true |
Create a git commit using the message format below.
Analyze outputs of following commands to generate the commit message:
git status --short (change overview)git diff --staged (primary input). If the diff lacks sufficient context to understand intent, examine the full file.git branch --show-current (ticket/feature context)git log --oneline -n 5 --no-merges (subject style reference).<subject>
<body>
<further paragraphs>
<subject> (eg. new feature, enhancement to an existing feature, bug fix, refactoring, test, docs, etc.).
git log --oneline -n 5 --no-merges.<body> that focuses on the "why" rather than the "what".
<further paragraphs> if necessary. Bullet points are OK.When user asks to commit with AI attribution, include an Assisted-by tag in the following format:
Assisted-by: AGENT_NAME:MODEL_VERSION [TOOL1] [TOOL2]
Where:
AGENT_NAME is the name of the AI tool or frameworkMODEL_VERSION is the specific model version used[TOOL1] [TOOL2] are optional specialized analysis tools used (e.g., coccinelle, sparse, smatch, clang-tidy)Basic development tools (git, gcc, make, editors) should not be listed.
Example:
Assisted-by: Claude:claude-3-opus coccinelle sparse