一键导入
commit
Generate pipe-delimited commits: Tipo|IdTarea|YYYYMMDD|Descripción. Single source of truth — no /commands wrapper.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate pipe-delimited commits: Tipo|IdTarea|YYYYMMDD|Descripción. Single source of truth — no /commands wrapper.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Review existing Architecture Decision Records. Flag ADRs whose aging signals may have triggered given current state. Categorizes each as valid / aged / superseded and suggests follow-up actions.
Author an Architecture Decision Record (ADR). Captures decisions with implications beyond the current change — lasts months, affects multiple files, hard to reverse. Records context, alternatives considered, consequences, and aging signals so the decision can be revisited when conditions change.
4-phase loop-detection and recovery protocol. Fires when an agent detects it is stuck or repeating the same tool call with no progress — before tool-loop-detection circuit-breaks at 30 calls.
Socratic exploration of requirements before implementation. Refines spec through targeted questions. Use when user asks to 'explore options', 'refine requirements', or mentions 'unclear requirements'.
Generate structured changelog from git history. Groups commits by type, filters noise, produces Keep a Changelog format. Single source of truth — no /commands wrapper.
Planning-only adversarial-review fan-out for proposal critique. Reuses sdd-verify-diff's aggregator without entering the SDD pipeline. Outputs findings count + top blocking issues in plain prose.
| name | commit |
| description | Generate pipe-delimited commits: Tipo|IdTarea|YYYYMMDD|Descripción. Single source of truth — no /commands wrapper. |
| version | 3.0.0 |
| preconditions | ["changes_staged_or_unstaged","no_linting_errors"] |
| outputs | [{"name":"commit_hash","type":"string","format":"git log --oneline -1 output"},{"name":"commit_message","type":"string","format":"Tipo|IdTarea|YYYYMMDD|Descripción — max 72 chars total"}] |
| steps_count | 4 |
| when | {"keywords":["commit","save changes","checkpoint","git commit","end of task"]} |
| format | {"pattern":"Tipo|IdTarea|YYYYMMDD|Descripción","types":["feat","fix","refactor","review","test","docs","chore","perf","ci","build","revert","wip"],"example":"feat|PROJ-42|20260428|Add issue-first gate to pull-request flow"} |
Generate commits following the pipe-delimited standard format. Strict — no Co-Authored-By, no tool attribution, no emojis.
Tipo|IdTarea|YYYYMMDD|Descripción
| Component | Description |
|---|---|
Tipo | Nature of the change (see types below) |
IdTarea | Ticket/board ID (omit between pipes if none) |
YYYYMMDD | Date — always run date +%Y%m%d |
Descripción | English, imperative mood, max 60 chars |
| Type | When to use |
|---|---|
feat | New functionality |
fix | Bug correction |
refactor | Restructure without behavior change |
review | Code review adjustments |
test | Tests added or adjusted |
docs | Documentation only |
chore | Maintenance, minor tasks |
perf | Performance improvement |
ci | CI/CD pipeline changes |
build | Build system changes |
revert | Revert previous commit |
wip | Work-in-progress (avoid in main branches) |
git status
git diff --staged
git log --oneline -5
date +%Y%m%d
git add src/auth/auth.service.ts src/auth/auth.controller.ts
Never stage: .env, credential files, large binaries.
git commit -m "$(cat <<'EOF'
feat|PROJ-042|20260428|Add JWT refresh token rotation
EOF
)"
git log --oneline -1
git show --stat HEAD
feat|LIQUI|20260428|Implement complete CRUD for cargos module
fix|LIQUI|20260428|Fix regex validation in CreateCargoDto
refactor|20260428|Optimize queries in CargosService
test|LIQUI|20260428|Add unit tests for cargos module
docs|LIQUI|20260428|Update API documentation for cargos endpoints
chore|20260428|Configure linting rules for DTOs
review|LIQUI|20260428|Apply code review suggestions to cargos module
Tipo|IdTarea|YYYYMMDD|Descripción.env / credentials staged.env / secrets/ / credentials