Skip to content

Commit d65a8cb

Browse files
committed
docs: recommend codex personal plugin path
1 parent 0fdf912 commit d65a8cb

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@ The installable plugin bundle lives under [`claude/README.md`](./claude/README.m
2222
## Install
2323

2424
```bash
25-
git clone https://github.com/pejmanjohn/cc-plugin-codex.git
26-
cd cc-plugin-codex
25+
mkdir -p ~/.codex/plugins
26+
git clone https://github.com/pejmanjohn/cc-plugin-codex.git ~/.codex/plugins/cc-plugin-codex
27+
cd ~/.codex/plugins/cc-plugin-codex
2728
./scripts/install.sh
2829
```
2930

30-
The installer uses Codex's official `plugin/install` backend against this repo's local marketplace file, so you do not need to edit any Codex marketplace configuration by hand.
31+
This keeps the source checkout under Codex's documented personal plugin directory convention while still using Codex's official `plugin/install` backend for the actual install.
3132

3233
## Verify
3334

@@ -50,13 +51,15 @@ After install, you should see the bundled Claude Companion skills in Codex. The
5051
## Update
5152

5253
```bash
54+
cd ~/.codex/plugins/cc-plugin-codex
5355
git pull
5456
./scripts/install.sh
5557
```
5658

5759
## Uninstall
5860

5961
```bash
62+
cd ~/.codex/plugins/cc-plugin-codex
6063
./scripts/uninstall.sh
6164
```
6265

src/claude/repo-publishability.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ describe('repository publishability', () => {
3636
expect(rootReadme).toContain('Claude Code');
3737
expect(rootReadme).not.toContain('local Claude CLI');
3838
expect(rootReadme).not.toContain('delegate rescue work');
39-
expect(rootReadme).toContain('git clone https://github.com/pejmanjohn/cc-plugin-codex.git');
40-
expect(rootReadme).toContain('cd cc-plugin-codex');
39+
expect(rootReadme).toContain('mkdir -p ~/.codex/plugins');
40+
expect(rootReadme).toContain('git clone https://github.com/pejmanjohn/cc-plugin-codex.git ~/.codex/plugins/cc-plugin-codex');
41+
expect(rootReadme).toContain('cd ~/.codex/plugins/cc-plugin-codex');
4142
expect(rootReadme).toContain('./scripts/install.sh');
4243
expect(rootReadme).toContain('./scripts/uninstall.sh');
4344
expect(rootReadme).toContain('$claude-setup');

0 commit comments

Comments
 (0)