원클릭으로
commit
Stage intended changes, validate them, and create a focused commit with a clear, ticket-aware message.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Stage intended changes, validate them, and create a focused commit with a clear, ticket-aware message.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Tensorlake SDK — sandboxes for AI agents and applications. Use when the user mentions tensorlake or sandboxes, or asks about Tensorlake APIs/docs/capabilities. Also use when building an application, coding agent, or agentic system that needs a sandbox to run code — e.g., executing LLM-generated or untrusted code, persistence via suspend/resume, snapshots/checkpoints for forking parallel workers, custom images, exposing ports, egress allowlists, PTY/interactive shells, computer-use / desktop automation, browser automation (Chrome CDP, Playwright), local tunnels for non-HTTP protocols, async parallel sandboxes, Harbor evals or RL rollouts, file transfer, SSH access, remote-dev (VS Code Remote-SSH), or OCI base images. Also covers Tensorlake's sandbox-native durable workflow orchestration. Works alongside any LLM provider (OpenAI, Anthropic), agent framework (Claude/OpenAI agents SDK, LangChain), database, or API. When this skill applies, ALWAYS WebFetch https://docs.tensorlake.ai/llms.txt first.
Ship Tribunal to production and triage deployment, health-check, Fly, Neon, GitHub OAuth/App, Tensorlake, proxy, review-engine, or live-review rollout issues. Use when a user asks to deploy Tribunal, prepare production secrets, verify production readiness, enable live reviews, debug broken deploys, inspect production health, or recover/rollback Tribunal services.
Ship Tribunal to production and triage deployment, health-check, Fly, Neon, GitHub OAuth/App, Tensorlake, proxy, review-engine, or live-review rollout issues. Use when a user asks to deploy Tribunal, prepare production secrets, verify production readiness, enable live reviews, debug broken deploys, inspect production health, or recover/rollback Tribunal services.
Address unresolved GitHub pull request review comments by analyzing feedback, implementing fixes, and resolving threads.
Generate or refresh a multi-agent project context document and execution-plan authoring prompt from repository analysis. Use when bootstrapping multi-agent orchestration, updating architecture/ownership/contracts guidance, or preparing a reusable planning prompt. Support explicit output path (`OUTPUT=<path>` or plain-language path request); otherwise detect a sensible default path from the project structure.
Apply frontend domain conventions for components, Svelte runes/attachments, route form UX, and testing patterns.
| name | commit |
| description | Stage intended changes, validate them, and create a focused commit with a clear, ticket-aware message. |
| context | fork |
| agent | git-ninja |
| allowed-tools | Read, Grep, Glob, AskUserQuestion, Bash(bun*run scripts/extract-ticket-from-branch.ts:*), Bash(git status:*), Bash(git branch:*), Bash(git fetch:*), Bash(git rebase:*), Bash(git merge:*), Bash(git log:*), Bash(git diff:*), Bash(git add:*), Bash(git commit:*), Bash(git push:*), Bash(bun run check:*), Bash(bun run test:*), Bash(bun run build:*), Bash(bun run lint:*) |
Create a clean, reviewable commit with only the intended changes.
!git status
!git branch --show-current
!bun --cwd "$(git rev-parse --show-toplevel)" run scripts/extract-ticket-from-branch.ts
!git diff --stat
If unrelated changes are mixed in, stage only the files relevant to this commit.
If the user also asks to push as part of this workflow, sync with the latest origin/main using the best strategy for the current branch state (for example: rebase, fast-forward merge, or merge) before pushing.
Commit subject format:
TEAM-123: Imperative summaryImperative summaryAt minimum, run:
bun run checkAlso run targeted checks for touched areas when relevant:
bun run testbun run buildbun run lintDo not commit if checks fail.
git add <files>
git diff --cached --stat
git commit -m "TEAM-123: Imperative summary"
git log --oneline -1
/commit: produces clean, scoped commits./create-pr: assumes commits are already clean and branch is synchronized before opening the pull request./address-pr: uses the same commit quality bar for review feedback and learnings updates.--no-verify.git push --force-with-lease.Provide: