원클릭으로
commit
Create a git commit following project conventions. Use when the user asks to commit changes, save progress, or says /commit.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a git commit following project conventions. Use when the user asks to commit changes, save progress, or says /commit.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create a new built-in evlog adapter to send wide events to an external observability platform. Use when adding a new drain adapter (e.g., for Datadog, Sentry, Loki, Elasticsearch, etc.) to the evlog package. Covers source code, build config, package exports, tests, and all documentation.
Review code for logging patterns and suggest evlog adoption. Guides setup on Nuxt, Next.js, SvelteKit, Nitro, TanStack Start, React Router, NestJS, Express, Hono, Fastify, Elysia, Cloudflare Workers, and standalone TypeScript. Detects console.log spam, unstructured errors, and missing context. Covers wide events, structured errors, drain adapters (Axiom, OTLP, HyperDX, PostHog, Sentry, Better Stack), sampling, enrichers, and AI SDK integration (token usage, tool calls, streaming metrics).
| name | commit |
| description | Create a git commit following project conventions. Use when the user asks to commit changes, save progress, or says /commit. |
| disable-model-invocation | true |
| user-invocable | true |
| allowed-tools | Bash(rtk git *) |
Create a well-formatted git commit following project conventions.
This project uses Conventional Commits enforced by commitlint. Format:
<type>(<scope>): <description>
feat — new featurefix — bug fixrefactor — code restructuring without behavior changechore — maintenance, dependencies, configdocs — documentation onlystyle — formatting, no logic changetest — adding or updating testsperf — performance improvementci — CI/CD changesOptional. Use the primary area affected (e.g., auth, yggdrasil, ui, db, oauth, plugin).
add = wholly new feature, update = enhancement to existing, fix = bug fixStep 1 — Gather info (run all three in parallel):
rtk git status — see all tracked/untracked changesrtk git diff + rtk git diff --staged — see unstaged and staged changesrtk git log -5 — see recent commit style for referenceStep 2 — Analyze and plan:
.env, credentials.json, *.key, etc.). Warn the user if they specifically request to commit those filesStep 3 — Stage and commit:
git add -A or git add .)rtk git commit -m "$(cat <<'EOF'
type(scope): description
EOF
)"
Step 4 — Verify:
rtk git status to confirm the commit succeededIf $ARGUMENTS is provided, use it as guidance for the commit message.
rtk--no-verify) unless explicitly asked