|
27 | 27 |
|
28 | 28 | ## What You Can Build |
29 | 29 |
|
30 | | -🤖 **AI Agent Tools** - Integrate NotebookLM into Claude Code or other LLM agents. Ships with [Claude Code skills](#agent-skills-claude-code) for natural language automation (`notebooklm skill install`), or build your own integrations with the async Python API. |
| 30 | +🤖 **AI Agent Tools** - Integrate NotebookLM into Claude Code, Codex, and other compatible agent-skill runtimes. Ships with a root [NotebookLM skill](SKILL.md) for GitHub and `npx skills add` discovery, plus `notebooklm skill install` for local agent directories. |
31 | 31 |
|
32 | 32 | 📚 **Research Automation** - Bulk-import sources (URLs, PDFs, YouTube, Google Drive), run web/Drive research queries with auto-import, and extract insights programmatically. Build repeatable research pipelines. |
33 | 33 |
|
@@ -159,7 +159,7 @@ notebooklm language list # List supported output languages |
159 | 159 | notebooklm metadata --json # Export notebook metadata and sources |
160 | 160 | notebooklm share status # Inspect sharing state |
161 | 161 | notebooklm source add-research "AI" # Start web research and import sources |
162 | | -notebooklm skill status # Check Claude Code skill installation |
| 162 | +notebooklm skill status # Check local agent skill installation |
163 | 163 | ``` |
164 | 164 |
|
165 | 165 | ### Python API |
@@ -195,18 +195,25 @@ async def main(): |
195 | 195 | asyncio.run(main()) |
196 | 196 | ``` |
197 | 197 |
|
198 | | -### Agent Skills (Claude Code) |
| 198 | +### Agent Skills |
199 | 199 |
|
200 | 200 | ```bash |
201 | | -# Install via CLI or ask Claude Code to do it |
| 201 | +# Install into local user-level Claude + .agents skill directories |
202 | 202 | notebooklm skill install |
203 | 203 |
|
204 | | -# Then use natural language: |
205 | | -# "Create a podcast about quantum computing" |
206 | | -# "Download the quiz as markdown" |
207 | | -# "/notebooklm generate video" |
| 204 | +# Install only the universal .agents/skills target in the current project |
| 205 | +notebooklm skill install --scope project --target agents |
| 206 | + |
| 207 | +# Install from GitHub via the open skills ecosystem |
| 208 | +npx skills add teng-lin/notebooklm-py |
208 | 209 | ``` |
209 | 210 |
|
| 211 | +Supported paths: |
| 212 | + |
| 213 | +- `notebooklm skill install` manages local `~/.claude/skills/notebooklm` and `~/.agents/skills/notebooklm` by default. |
| 214 | +- GitHub / `npx skills add` discover the canonical root [SKILL.md](SKILL.md). |
| 215 | +- Agents that honor `.agents/skills` can consume the universal install path; Claude Code also supports `.claude/skills`. |
| 216 | + |
210 | 217 | ## Documentation |
211 | 218 |
|
212 | 219 | - **[CLI Reference](docs/cli-reference.md)** - Complete command documentation |
|
0 commit comments