Files
xianren f3472d6254 feat: add multi-platform plugin support and session-start hook
Add support for 5 platforms beyond NPX:

- Claude Code: .claude-plugin/plugin.json + marketplace.json
- Cursor: .cursor-plugin/plugin.json + hooks-cursor.json
- Codex CLI: .codex/INSTALL.md with symlink setup
- OpenCode: .opencode/INSTALL.md with plugin config
- Gemini CLI: gemini-extension.json + GEMINI.md

Infrastructure:
- SessionStart hook with platform detection (Claude Code,
  Cursor, Copilot CLI) that injects available masters list
- Cross-platform run-hook.cmd polyglot wrapper (Windows + Unix)
- .version-bump.json for unified version management across
  all platform config files
- Update README/README_EN with multi-platform install instructions

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-08 21:38:08 +08:00

46 lines
1.2 KiB
Markdown

# Installing Master-skill for Codex
## Quick Install
```bash
# Clone the repository
git clone https://github.com/xr843/Master-skill.git ~/.codex/master-skill
# Create skills symlink
ln -sf ~/.codex/master-skill/prebuilt ~/.agents/skills/master-skill
ln -sf ~/.codex/master-skill/SKILL.md ~/.agents/skills/create-master/SKILL.md
```
Restart Codex to discover the new skills.
## Windows (PowerShell)
```powershell
git clone https://github.com/xr843/Master-skill.git "$env:USERPROFILE\.codex\master-skill"
cmd /c mklink /J "$env:USERPROFILE\.agents\skills\master-skill" "$env:USERPROFILE\.codex\master-skill\prebuilt"
```
## Available Skills After Install
- `/xuanzang` — Xuanzang (Yogacara)
- `/kumarajiva` — Kumarajiva (Madhyamaka)
- `/huineng` — Huineng (Chan/Zen)
- `/zhiyi` — Zhiyi (Tiantai)
- `/fazang` — Fazang (Huayan)
- `/yinguang` — Yinguang (Pure Land)
- `/ouyi` — Ouyi (Tiantai-Pure Land)
- `/xuyun` — Xuyun (Chan, Five Schools)
- `/compare-masters` — Multi-tradition comparison
- `/create-master` — Generate new master
## Tool Mapping
| Skill references | Codex equivalent |
|---|---|
| `Read` | `read_file` |
| `Write` | `write_file` |
| `Edit` | `edit_file` |
| `Bash` | `shell` |
| `Grep` | `grep` |
| `Glob` | `glob` |