원클릭으로
commit
Commit staged changes following Conventional Commits v1.0.0. Activate when user asks to commit, create a commit, or says /commit.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Commit staged changes following Conventional Commits v1.0.0. Activate when user asks to commit, create a commit, or says /commit.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when completing tasks, implementing major features, or before merging to verify work meets requirements
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes
Run a guarded commit-to-deploy workflow that verifies branch freshness, invokes commit and create-pr, waits for green CI, invokes approve-pr, monitors CD, and reports final deployment state. Use when the user asks to yolo-push, ship current changes, or execute the full PR-to-deployment flow.
Use when the user wants to analyze experiment results, inspect scores from a dataset run, check pass/fail rates, review per-item outputs, or deep-dive into experiment performance. Trigger phrases: "analyze results", "experiment scores", "how did the experiment perform", "show results", "inspect run", "experiment analysis".
Use when the user wants to compare two or more experiment runs, detect regressions, see score deltas between runs, or evaluate model performance differences. Trigger phrases include "compare runs", "compare experiments", "diff runs", "regression check", "which run is better", "model comparison", "A/B comparison".
This skill should be used when the user wants to configure a Langfuse dataset for remote experiment triggering from the UI, set up a webhook URL, update the default experiment payload, or enable the Custom Experiment feature. Trigger phrases include "configure remote experiment", "set webhook URL", "enable custom experiment", "set up experiment trigger", "configure dataset webhook".
| name | commit |
| description | Commit staged changes following Conventional Commits v1.0.0. Activate when user asks to commit, create a commit, or says /commit. |
| metadata | {"ai-assistant-harness-adaptation.claude-code":"references/ai-assistant-harnesses/claude-code.md","ai-assistant-harness-adaptation.codex":"references/ai-assistant-harnesses/codex.md"} |
Follow the Conventional Commits v1.0.0 specification.
Depending on who you are as an AI agent, load exactly one metadata-linked reference and skip every non-matching file.
<type>[optional scope]: <description>
Single-line message only.
| Type | Meaning |
|---|---|
feat | New feature (MINOR in semver) |
fix | Bug fix (PATCH in semver) |
build | Build system or external dependencies |
chore | Other changes (no src/test modification) |
ci | CI configuration files/scripts |
docs | Documentation only |
perf | Performance improvement |
refactor | Code change that neither fixes a bug nor adds a feature |
revert | Reverts a previous commit |
style | Formatting, whitespace, semicolons (no code change) |
test | Adding or correcting tests |
bump | Version bump (include old → new version in description) |
Append ! before the colon to indicate a breaking change:
feat!: drop support for python 3.11
Optional. Describes the section of the codebase affected, in parentheses:
fix(payments): resolve decimal rounding
feat(auth): add oauth2 support
git diff --staged to analyze staged changesgit add path/to/file1 path/to/file2 && git commit -m "<scoped message>"
Co-Authored-By trailerAsk the user whether to push. Preview = actual output of git log @{u}..HEAD --oneline. If no upstream, show only the new commit and note that push will require --set-upstream.
feat: add user authentication endpoint
fix(payments): resolve decimal rounding
refactor: extract validation logic into helpers
docs: update API changelog
test: add unit tests for order service
chore: update ruff config
feat!: drop support for python 3.11
bump: v0.4.0 → v0.5.0
bump(deps): upgrade pydantic to 2.10.0
build: migrate from pip to uv
ci: add staging deployment step
perf(queries): optimize merchant lookup query
style: fix indentation in config files
revert: undo migration changes from previous commit