Skip to content

Commit d45a249

Browse files
ldoguinona-agent
andcommitted
fix codex install
Co-authored-by: Ona <no-reply@ona.com>
1 parent 2864901 commit d45a249

3 files changed

Lines changed: 630 additions & 4 deletions

File tree

.agents/plugins/marketplace.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
{
88
"name": "couchbase-skills",
99
"source": {
10-
"source": "git-subdir",
10+
"source": "url",
1111
"url": "https://github.com/couchbaselabs/agent-skills.git",
12-
"path": ".",
1312
"ref": "main"
1413
},
1514
"policy": {

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,32 @@ claude
1717

1818
### Codex
1919

20-
Install [Codex](https://developers.openai.com/codex), then add the marketplace to your project:
20+
Install [Codex](https://developers.openai.com/codex), then add this repo as a marketplace source:
2121

2222
```bash
2323
codex plugin marketplace add couchbaselabs/agent-skills
2424
```
2525

26-
Or add it to your project's `.agents/plugins/marketplace.json` manually — a starter file is included in this repo at `.agents/plugins/marketplace.json`.
26+
This registers the marketplace. Then open the plugin browser in Codex, find **Couchbase Skills**, and install it:
27+
28+
```bash
29+
codex
30+
/plugins
31+
```
2732

2833
Once installed in either agent, skills activate automatically based on what you ask. You can also load one explicitly:
2934

3035
```
3136
read_skill("server-connection-go")
3237
```
3338

39+
**Alternative (no plugin system):** clone the repo and symlink `skills/` into `.agents/skills/` in your project — Codex scans that directory automatically:
40+
41+
```bash
42+
git clone https://github.com/couchbaselabs/agent-skills
43+
ln -s $(pwd)/agent-skills/skills .agents/skills
44+
```
45+
3446
### Other agents (Cursor, Copilot, etc.)
3547

3648
Clone the repo and point your agent at `AGENTS.md` — it's the coding-agent configuration file and is read automatically by agents that support it.

0 commit comments

Comments
 (0)