Configuration and deployment files for AI coding agents. Supports both OpenAI Codex and Claude Code.
agents/
├── AGENTS.md # shared root policy (writing, task routing)
├── deploy.sh # legacy local deploy to both ~/.codex and ~/.claude
├── codex/
│ └── config.toml # Codex-specific: model, approval policy, sandbox mode
├── claude/
│ └── settings.json # Claude Code-specific: model, permissions
└── tests/ # skill test harnesses
.agents/
└── plugins/
└── marketplace.json # GitHub-hosted Codex marketplace catalog
plugins/
└── codewizard/
├── .codex-plugin/
│ └── plugin.json # Codex plugin manifest
└── skills/ # runtime skills shipped by the plugin
├── code-mission/
├── code-review-expert/
├── commit-and-pr/
├── isolated-worktree/
├── research/
└── system-design/
Install from the GitHub-hosted Codex marketplace:
codex plugin marketplace add GUG11/codewizard --ref master
codex plugin add codewizard@codewizardStart a new Codex thread after installing so the bundled skills are available.
Load the plugin from a cloned checkout:
claude --plugin-dir /absolute/path/to/codewizard/plugins/codewizardLoad the plugin from a GitHub release zip:
claude --plugin-url https://github.com/GUG11/codewizard/releases/download/<version>/codewizard-plugin.zipThe release zip must contain the contents of plugins/codewizard at the zip root. Build it with:
mkdir -p dist
(cd plugins/codewizard && zip -r ../../dist/codewizard-plugin.zip .)bash agents/deploy.shagents/deploy.sh does not install skills or plugins. It only copies shared guidance and local config files.
Codex (~/.codex):
- Copies
codex/config.tomlandAGENTS.md - Backs up existing Codex files before overwriting
Claude Code (~/.claude):
- Copies
AGENTS.mdasCLAUDE.md - Copies
claude/settings.json - Backs up existing Claude Code files before overwriting
| Skill | Description |
|---|---|
code-mission |
Create a mission brief, implement, verify, and review |
code-review-expert |
Senior engineer review: SOLID, security, performance |
commit-and-pr |
Draft commit messages and PR descriptions from diffs |
isolated-worktree |
Manage concurrent local work through isolated worktrees |
research |
Search, evaluate, decompose, and synthesize before acting |
system-design |
System design guidance |
conf/vscode/user_settings.json: editor settings