en un clic
git-commit
Read this skill before making git commits
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Read this skill before making git commits
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Know how Pi model selection is configured and changed: default model, thinking level, one-off model switches, Ctrl+P scoped model cycling, and prompt-editor modes for this repo.
Browser automation with persistent page state. Use when users ask to navigate websites, fill forms, take screenshots, extract web data, test web apps, or automate browser workflows. Trigger phrases include "go to [url]", "click on", "fill out the form", "take a screenshot", "scrape", "automate", "test the website", "log into", or any browser interaction request.
Interview the user relentlessly about a plan, decision, or idea by asking all independent questions in batches, round by round. Use when the user wants to stress-test their thinking, or uses any 'grill' trigger phrases.
Review a diff, branch, PR, commit, or work-in-progress change along two separate axes: Standards (repo conventions, maintainability, safety) and Spec (does the change implement the originating issue/PRD/request?). Runs focused sub-agents in parallel and reports prioritized, actionable findings side by side. Use when the user wants to review a branch, PR, WIP changes, or asks to "review since X".
Diagnosis loop for hard bugs and performance regressions. Use when the user says "diagnose"/"debug this/find bugs", or reports something broken/throwing/failing/slow.
Premium brand-kit image generation skill for creating high-end brand-guidelines boards, logo systems, identity decks, and visual-world presentations. Trained for minimalist, cinematic, editorial, dark-tech, luxury, cultural, security, gaming, developer-tool, and consumer-app brand systems. Optimized for intentional logo concepting, refined composition, sparse typography, strong symbolic meaning, premium mockups, art-directed imagery, and flexible grid layouts.
| name | git-commit |
| description | Read this skill before making git commits |
Use this skill as the playbook for producing reviewable Conventional Commits and a clean, consistent commit history.
Commit hygiene is never a reason to undo implemented work.
git reset/git restore --staged may be used only to unstage changes, never to discard working-tree content, unless the user explicitly requests it.git status and git diff (limit to argument-specified files if provided)Rules:
.env, credentials, API keys)Use a concise Conventional Commits-style subject:
<type>(<scope>): <summary>
type REQUIRED. Use feat for new features, fix for bug fixes. Other common types: docs, refactor, chore, test, perf.scope OPTIONAL. Short noun in parentheses for the affected area (e.g., api, parser, ui).summary REQUIRED. Short, imperative, <= 72 chars, no trailing period.Only when needed (don’t force it for trivial changes), write a body:
Check recent commit style and common scopes: git log -n 50 --pretty=format:%s
Generate a message that follows Conventional Commits and fits the repo’s style
Rules:
Signed-off-by)git commitRules:
git commit --amend unless explicitly requestedgit commit --no-verify
git commit fails due to hooks, fix issues and retrygit commit -m "<subject>" when there is no bodygit commit -F (or heredoc) when there is a body, never newline escapes in -m