|
| 1 | +# NotebookLM |
| 2 | + |
| 3 | +**Mode**: 🔐 Browser Bridge · **Domain**: `notebooklm.google.com` |
| 4 | + |
| 5 | +## Commands |
| 6 | + |
| 7 | +| Command | Description | |
| 8 | +|---------|-------------| |
| 9 | +| `opencli notebooklm status` | Check whether NotebookLM is reachable in the current Chrome session | |
| 10 | +| `opencli notebooklm list` | List notebooks visible from the NotebookLM home page | |
| 11 | +| `opencli notebooklm current` | Show metadata for the currently opened notebook tab | |
| 12 | +| `opencli notebooklm get` | Get richer metadata for the current notebook | |
| 13 | +| `opencli notebooklm source-list` | List sources in the current notebook | |
| 14 | +| `opencli notebooklm source-get <source>` | Resolve one source in the current notebook by id or title | |
| 15 | +| `opencli notebooklm source-fulltext <source>` | Fetch extracted source fulltext through NotebookLM RPC | |
| 16 | +| `opencli notebooklm source-guide <source>` | Fetch guide summary and keywords for one source | |
| 17 | +| `opencli notebooklm history` | List conversation history threads for the current notebook | |
| 18 | +| `opencli notebooklm note-list` | List Studio notes visible in the current notebook | |
| 19 | +| `opencli notebooklm notes-get <note>` | Read the currently visible Studio note by title | |
| 20 | +| `opencli notebooklm bind-current` | Bind the current active NotebookLM tab into the `site:notebooklm` workspace | |
| 21 | +| `opencli notebooklm summary` | Read the current notebook summary | |
| 22 | + |
| 23 | +## Compatibility Aliases |
| 24 | + |
| 25 | +| Alias | Canonical command | |
| 26 | +|-------|-------------------| |
| 27 | +| `opencli notebooklm metadata` | `opencli notebooklm get` | |
| 28 | +| `opencli notebooklm use` | `opencli notebooklm bind-current` | |
| 29 | +| `opencli notebooklm notes-list` | `opencli notebooklm note-list` | |
| 30 | + |
| 31 | +## Positioning |
| 32 | + |
| 33 | +This adapter reuses the existing OpenCLI Browser Bridge runtime: |
| 34 | + |
| 35 | +- no custom NotebookLM extension |
| 36 | +- no exported cookie replay |
| 37 | +- requests and page state stay in the real Chrome session |
| 38 | + |
| 39 | +The current milestone focuses on a stable NotebookLM read surface in desktop Chrome with an already logged-in Google account. |
| 40 | + |
| 41 | +## Usage Examples |
| 42 | + |
| 43 | +```bash |
| 44 | +opencli notebooklm status |
| 45 | +opencli notebooklm list -f json |
| 46 | +opencli notebooklm current -f json |
| 47 | +opencli notebooklm metadata -f json |
| 48 | +opencli notebooklm source-list -f json |
| 49 | +opencli notebooklm source-get "Quarterly report" -f json |
| 50 | +opencli notebooklm source-guide "Quarterly report" -f json |
| 51 | +opencli notebooklm source-fulltext "Quarterly report" -f json |
| 52 | +opencli notebooklm history -f json |
| 53 | +opencli notebooklm notes-list -f json |
| 54 | +opencli notebooklm notes-get "Draft note" -f json |
| 55 | +opencli notebooklm summary -f json |
| 56 | +opencli notebooklm use -f json |
| 57 | +``` |
| 58 | + |
| 59 | +## Prerequisites |
| 60 | + |
| 61 | +- Chrome running and logged into Google / NotebookLM |
| 62 | +- [Browser Bridge extension](/guide/browser-bridge) installed |
| 63 | +- NotebookLM accessible in the current browser session |
| 64 | + |
| 65 | +## Notes |
| 66 | + |
| 67 | +- Notebook-oriented commands assume you already have the target notebook open in Chrome, or that `opencli notebooklm use` can bind an existing notebook tab into `site:notebooklm`. |
| 68 | +- `list`, `get`, `source-list`, `history`, `source-fulltext`, and `source-guide` prefer NotebookLM RPC paths and fall back only when the richer path is unavailable. |
| 69 | +- `notes-get` currently reads note content only from the visible Studio note editor; if the note is listed but not open, open it in NotebookLM first and then retry. |
0 commit comments