gate-commit
Group the working tree into conventional commits and commit them. Refuses to run unless `mix consistency` is currently clean.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Group the working tree into conventional commits and commit them. Refuses to run unless `mix consistency` is currently clean.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Implement a GitHub issue in aurora_uix, an Elixir/Phoenix low-code UI generation library with Ash and Ecto backends, following an enriched spec produced by improve-issue. Use this skill when the user says "implement the issue", "code this up", "start coding", or provides an enriched spec from improve-issue. Also triggers on "fix the gaps", "address the review findings", or "retry with these requirements" — in those cases the gaps live in the review-gaps marker block of the issue body. Always write tests alongside implementation.
Create a pull request with proper formatting and pre-merge checks
Evaluate an already-enriched GitHub issue and recommend whether to keep it as-is (with a model-tier recommendation), declare it already completed, or split it into smaller children. Use when the user says "evaluate this issue", "is this issue too big", "should we split this", "size this issue", "which model should code this", or before kicking off orchestrate-issue on a heavy spec. Requires improve-issue to have been run first — this skill does NOT enrich specs and does NOT modify code. Read-mostly: the only write is an idempotent issue-evaluation marker block on the issue body.
Run `mix consistency` and fix issues. Mechanical issues are fixed in place; refactor-class issues produce a plan for user approval instead of being attempted.
Enrich and clarify a GitHub issue before any coding begins. Use this skill whenever a user says "work on issue", "implement issue", "fix issue", "start from a GitHub issue", or pastes issue text/URL. Always run this FIRST before code-issue — it produces the structured spec that code-issue consumes. Also trigger when the user says "improve issue description" or "clarify requirements".
Review and score the implementation produced by code-issue against the enriched spec from improve-issue. Use this skill when the user says "review the implementation", "check completeness", "validate coverage", or after code-issue finishes. Runs the project quality gate (mix consistency + mix test), produces a scored report, and writes outstanding gaps into the issue body marker block so code-issue Mode B can pick them up. Always run after code-issue, before deciding the issue is done.
| name | gate-commit |
| description | Group the working tree into conventional commits and commit them. Refuses to run unless `mix consistency` is currently clean. |
Group the staged changes into conventional commits. This skill is gated: it
will not commit unless mix consistency currently passes.
Run:
mix consistency
If exit code is non-zero, abort with:
mix consistencyis failing. Run thegateskill (orgate-fixdirectly) before committing.
Do not stage, do not commit, do not retry.
Group the working tree into conventional commits using these rules:
feat:, fix:, refactor:, docs:,
test:, chore:.mix format → single chore: format commit.documentation skill → single docs: <scope>
commit.For each group:
git add <specific file> — explicitly, one file at a time. Never
git add -A / git add ..If there is nothing to commit after the gate passes, exit cleanly with a short note.
--no-verify on any git command.git push --force (this skill does not push).git add -A / git add ..mix consistency is failing.