con un clic
ae-sdd-commit
Create high-quality git commits with clear Conventional Commit messages
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Create high-quality git commits with clear Conventional Commit messages
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Fast-track bug investigation and fix initialization
Continue an SDD change set in a fresh chat using CLI status only
Critique proposal, specs, or plan for gaps and contradictions
Discover high-level architectural requirements for change-set specs
Explain SDD concepts, workflow, and CLI-first usage
Close a change set and sync its specs to canonical
| name | ae-sdd-commit |
| description | Create high-quality git commits with clear Conventional Commit messages |
Analyze the current git state and create appropriate commits. By default, attempt to commit everything in a single commit. Only break into multiple commits if there is clear semantic drift between file changes.
Run these commands to gather necessary context:
git status --shortgit log --oneline -10git diff --cachedgit diffIMPORTANT: Do not perform any file searches, glob searches, or grep searches. Use only the summary information from the commands above. If the summaries are truly ambiguous for grouping or message intent, ask for specific file diffs; otherwise proceed with the best possible commit(s).
Based on the information gathered above:
Inspect: Check state with git status and git diff.
Boundary: Group changes into logical units.
Stage:
git add -A or git add -p for mixed files.git diff --cached to ensure no secrets or debug logs.Verify: Run the fastest relevant check (tests/lint) before committing.
Commit:
type(scope): descriptionfeat(auth): add OAuth2 login flowfix(api): handle null response from cacherefactor(db): simplify connection poolingdocs(readme): clarify setup instructionsfeat(auth): add login rate limiting to prevent brute forceAgent behavior (non-interactive by default):
git diff --cached immediately before committing.feat(auth): add login rate limiting to prevent brute forceupdate login.js or fix some bugsRun git log --oneline -5 to verify and prove work.