Summary:\n- added Codex marketplace registry plus awareness/ethics/guardrails sub-plugins\n- mirrored Claude plugin commands/scripts/hooks into codex api/ci/code/collect/coolify/core/issue/perf/qa/review/verify\n- embedded Axioms of Life ethics modal, guardrails, and kernel files under codex/ethics\n- added Codex parity report, improvements list, and MCP integration plan\n- extended Gemini MCP tools and docs for Codex awareness
53 lines
1.4 KiB
Markdown
53 lines
1.4 KiB
Markdown
---
|
|
name: commit
|
|
plugin: code
|
|
description: Generate a conventional commit message for staged changes
|
|
args: "[message]"
|
|
flags:
|
|
- --amend
|
|
hooks:
|
|
Before:
|
|
- hooks:
|
|
- type: command
|
|
command: "${CLAUDE_PLUGIN_ROOT}/scripts/smart-commit.sh"
|
|
---
|
|
|
|
# Smart Commit
|
|
|
|
Generate a conventional commit message for staged changes.
|
|
|
|
## Usage
|
|
|
|
Generate message automatically:
|
|
`/core:commit`
|
|
|
|
Provide a custom message:
|
|
`/core:commit "feat(auth): add token validation"`
|
|
|
|
Amend the previous commit:
|
|
`/core:commit --amend`
|
|
|
|
## Behavior
|
|
|
|
1. **Analyze Staged Changes**: Examines the `git diff --staged` to understand the nature of the changes.
|
|
2. **Generate Conventional Commit Message**:
|
|
- `feat`: For new files, functions, or features.
|
|
- `fix`: For bug fixes.
|
|
- `refactor`: For code restructuring without changing external behavior.
|
|
- `docs`: For changes to documentation.
|
|
- `test`: For adding or modifying tests.
|
|
- `chore`: For routine maintenance tasks.
|
|
3. **Determine Scope**: Infers the scope from the affected module's file paths (e.g., `auth`, `payment`, `ui`).
|
|
4. **Add Co-Authored-By Trailer**: Appends `Co-Authored-By: Claude <noreply@anthropic.com>` to the commit message.
|
|
|
|
## Message Generation Example
|
|
|
|
```
|
|
feat(auth): add JWT token validation
|
|
|
|
- Add validateToken() function
|
|
- Add token expiry check
|
|
- Add unit tests for validation
|
|
|
|
Co-Authored-By: Claude <noreply@anthropic.com>
|
|
```
|