ワンクリックで
commit
Git commit workflow with Conventional Commits format. Analyzes changes, generates commit message, handles staging.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Git commit workflow with Conventional Commits format. Analyzes changes, generates commit message, handles staging.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Orchestrates a dual-AI engineering loop where Claude CLI runs with `--dangerously-skip-permissions` for planning/implementation and Codex validates/reviews outputs. Use when users ask for Claude+Codex collaboration, cross-review, dual AI loop, or explicit Claude CLI execution with skip-permission mode ("claude", "dangerously-skip-permission", "dangerously-skip-permissions", "codex claude", "dual AI", "교차 검증", "claude 협업").
Codex Agent 작성 전문가. Frontmatter 검증, 트리거 키워드 제안, 구조 템플릿 제공, 테스트 시나리오 작성을 지원합니다.
Synchronize all agile development artifacts in one command. Updates CHANGELOG, README stats, progress tracking, and validates documentation completeness.
Agent/Skill 사용 통계 및 성과 리포트 생성 전문가. CLI 차트로 시각화하고 인사이트를 제공합니다. "통계", "사용량", "analytics", "성과", "리포트", "메트릭", "분석", "usage", "metrics", "statistics", "report" 키워드에 반응.
Tool/Agent 사용 통계를 CLI 차트로 시각화. "통계", "사용량", "analytics", "metrics", "리포트" 키워드에 반응.
Use when creating or developing, before writing code or implementation plans - refines rough ideas into fully-formed designs through collaborative questioning, alternative exploration, and incremental validation. Don't use during clear 'mechanical' processes
SOC 職業分類に基づく
| name | commit |
| description | Git commit workflow with Conventional Commits format. Analyzes changes, generates commit message, handles staging. |
/commit [--type <type>] [--scope <scope>]
--type: feat | fix | docs | style | refactor | test | chore--scope: Optional scope (e.g., auth, api, ui)/commit
/commit --type feat --scope auth
/commit --type fix
<type>(<scope>): <description>
[optional body]
[optional footer]
| Type | Description | Example |
|---|---|---|
feat | New feature | feat(auth): add OAuth2 login |
fix | Bug fix | fix(api): handle null response |
docs | Documentation | docs: update README |
style | Formatting | style: fix indentation |
refactor | Code restructure | refactor(utils): extract helper |
test | Tests | test(auth): add login tests |
chore | Maintenance | chore: update dependencies |
perf | Performance | perf(db): optimize query |
ci | CI/CD | ci: add GitHub Actions |
build | Build system | build: update webpack config |
auth - Authenticationapi - API layerui - User interfacedb - Databaseconfig - Configurationgit status
git diff --staged
git diff
Based on changes:
featfixdocstestrefactorchoreFrom changed files:
src/auth/* → scope: authsrc/api/* → scope: api## Changes Detected
### Modified Files
- src/auth/login.ts (+45, -12)
- src/auth/logout.ts (+8, -2)
### Analysis
- Type: feat (new functionality)
- Scope: auth (auth directory)
- Breaking: No
### Suggested Commit
feat(auth): implement session management
Closes #42
git add -A
git commit -m "feat(auth): implement session management
- Add session token generation
- Implement token refresh logic
- Add logout with token invalidation
Closes #42"
For breaking changes, add ! and footer:
feat(api)!: change response format
BREAKING CHANGE: Response now returns { data, meta } instead of raw data.
Migration: Wrap existing handlers with responseAdapter().
Split into multiple commits:
/commit # First: fix the bug
/commit # Second: add tests for the fix
chore(wip): save progress on feature X
NOT READY FOR REVIEW
- Basic structure done
- Need to add validation
revert: feat(auth): add OAuth2 login
This reverts commit abc1234.
Reason: Breaks legacy clients.
## Commit Created
**Hash**: abc1234
**Type**: feat
**Scope**: auth
**Message**: implement session management
### Files Committed
- src/auth/login.ts
- src/auth/logout.ts
### Stats
- 2 files changed
- 53 insertions
- 14 deletions