원클릭으로
ae-sdd-commit
Create high-quality git commits with clear Conventional Commit messages
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create high-quality git commits with clear Conventional Commit messages
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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.