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
28 lines
506 B
Markdown
28 lines
506 B
Markdown
---
|
|
name: pr
|
|
description: Create a PR with a generated title and description from your commits.
|
|
args: [--draft] [--reviewer @user]
|
|
---
|
|
|
|
# Create Pull Request
|
|
|
|
Generates a pull request with a title and body automatically generated from your recent commits.
|
|
|
|
## Usage
|
|
|
|
Create a PR:
|
|
`/code:pr`
|
|
|
|
Create a draft PR:
|
|
`/code:pr --draft`
|
|
|
|
Request a review:
|
|
`/code:pr --reviewer @username`
|
|
|
|
## Action
|
|
|
|
This command will execute the following script:
|
|
|
|
```bash
|
|
"${CLAUDE_PLUGIN_ROOT}/scripts/generate-pr.sh" "$@"
|
|
```
|