Skip to content

Commit 4d752dc

Browse files
committed
docs(readme): simplify agent setup section with two clear install options
Replace verbose multi-command agent setup with two clear options: CLI install via `notebooklm skill install` and npx install via `npx skills add`. Remove Codex-specific section as npx handles cross-agent discovery.
1 parent 747726d commit 4d752dc

File tree

1 file changed

+7
-21
lines changed

1 file changed

+7
-21
lines changed

README.md

Lines changed: 7 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -205,36 +205,22 @@ asyncio.run(main())
205205

206206
#### Claude Code
207207

208+
**Option 1 — CLI install** (requires `notebooklm-py` installed):
209+
208210
```bash
209-
# Install into local user-level Claude + .agents skill directories
210211
notebooklm skill install
211-
notebooklm agent show claude
212-
213-
# Install only the universal .agents/skills target in the current project
214-
notebooklm skill install --scope project --target agents
215-
216-
# Install from GitHub via the open skills ecosystem
217-
npx skills add teng-lin/notebooklm-py
218212
```
219213

220-
Supported paths:
221-
222-
- `notebooklm skill install` manages local `~/.claude/skills/notebooklm` and `~/.agents/skills/notebooklm` by default.
223-
- GitHub and `npx skills add teng-lin/notebooklm-py` discover the canonical root [SKILL.md](SKILL.md).
224-
- Agents that honor `.agents/skills` can consume the universal install path; Claude Code also supports `.claude/skills`.
214+
Installs the skill into `~/.claude/skills/notebooklm` and `~/.agents/skills/notebooklm`.
225215

226-
#### Codex
227-
228-
Codex reads repo-level instructions from [`AGENTS.md`](AGENTS.md), so there is no separate install command. After installing dependencies and authenticating, ask Codex to use the `notebooklm` CLI or Python API directly.
216+
**Option 2 — `npx` install** (via the open skills ecosystem):
229217

230218
```bash
231-
uv sync --extra dev --extra browser
232-
notebooklm agent show codex
233-
notebooklm login
234-
notebooklm list --json
219+
npx skills add teng-lin/notebooklm-py
235220
```
236221

237-
For automation, prefer `--json`, pass explicit notebook IDs instead of relying on `notebooklm use`, and set `NOTEBOOKLM_HOME=/tmp/codex-$RUN_ID` when multiple agents may run in parallel.
222+
Fetches the canonical [SKILL.md](SKILL.md) directly from GitHub.
223+
238224

239225
## Documentation
240226

0 commit comments

Comments
 (0)