Notebook Binding + NotebookLM (Web)
This guide covers the user-facing Web flow for connecting NotebookLM and choosing which notebooks CCCC should use.
The Web UI is intentionally minimal:
- connect Google
- choose the
Work Notebook - choose the
Memory Notebook
Actual NotebookLM operations such as query, ingest, source management, artifacts, and job handling are handled by agents through MCP / CLI surfaces, not by the normal user settings page.
1. Enable Real Provider Path
Start CCCC with the real NotebookLM adapter enabled:
export CCCC_NOTEBOOKLM_REAL=1
ccccIf you expose Web outside localhost, first create an Admin Access Token in Settings > Web Access and keep the service behind a network boundary until that token exists.
2. Open Notebook Settings
- Open a target group in Web.
- Open Settings.
- Open the Notebook tab.
3. Connect Google
In Google Account:
- Click Connect Google.
- Complete sign-in in the interactive browser view shown inside CCCC Web.
- Wait until the account status becomes connected.
Notes:
- If a valid credential is already stored, reconnect may complete without a full browser login.
- The default Web page does not expose manual credential editing anymore.
- The Web flow uses a projected sign-in browser so Docker / remote deployments do not need a local desktop browser on the daemon host.
- The projected sign-in browser now runs in headed mode for better Google compatibility. In server/container environments without a native display, CCCC uses
Xvfbautomatically. - The Docker image includes the minimal Chromium shared libraries needed for the projected sign-in browser. Playwright / Chromium binaries themselves are still installed lazily on first use.
4. Bind the Work Notebook
In Work Notebook:
- Choose an existing notebook from the selector, or
- Click Create and bind new.
Use Work Notebook for shared project knowledge and working materials.
Expected result:
- Work binding becomes
Bound. - The current notebook title/id updates immediately.
5. Bind the Memory Notebook
In Memory Notebook:
- Choose an existing notebook from the selector, or
- Click Create and bind new.
Use Memory Notebook for finalized memory recall.
Expected result:
- Memory binding becomes
Bound. - The current notebook title/id updates immediately.
6. Connection Summary
Use Connection Summary only as a lightweight status snapshot:
- Google connected or not
- Work notebook bound or not
- Memory notebook bound or not
- a short warning message if something is degraded
The summary is intentionally human-oriented and does not expose internal queue/job/runtime details.
7. What the Web Page No Longer Does
The normal user-facing Web settings page no longer exposes these agent/developer operations:
- Notebook query
- ingest submission
- source management
- artifact generation/download
- job queue operations
- manual credential write/clear
- provider health check
That is by design.
8. Agent-Side Usage Still Exists
NotebookLM usage still exists through agent-facing surfaces:
- MCP tools
- CLI
- prompt/help-guided agent workflows
The Web page is now only for account connection and notebook binding.
9. Quick Rollback
If NotebookLM is unstable in your environment:
unset CCCC_NOTEBOOKLM_REAL
cccc daemon restart10. Repo Space Sync Notes
When a group has a local scope attached, CCCC still uses repo-local space/ as the work-lane resource source of truth:
<scope_root>/space/
Relevant metadata files remain:
<scope_root>/space/.space-index.json<scope_root>/space/.space-sync-state.json<scope_root>/space/.space-status.json<scope_root>/space/.sync/remote-sources/*.json<scope_root>/space/artifacts/notebooklm/...
These implementation details matter for agent/developer workflows, but they are not part of the normal user-facing binding flow.