Document direct Notebook page export

This commit is contained in:
welsberr 2026-04-28 00:24:41 -04:00
parent 3a83fbb2cf
commit addc920ac3
3 changed files with 34 additions and 0 deletions

View File

@ -214,9 +214,23 @@ That flow:
- makes the resulting pack consumable by the learner workbench with
GroundRecall review and graph context intact
If you want just the Notebook page artifact without building a full pack, use
the direct export wrapper:
```bash
didactopus notebook-page-groundrecall \
/path/to/groundrecall-store \
channel-capacity \
/tmp/notebook-page-export
```
That command writes both `groundrecall_query_bundle.json` and
`notebook_page.json` into the output directory.
The fuller bridge workflow is documented in:
- `docs/groundrecall-bridge.md`
- `docs/evo-edu-notebook-pipeline.md`
## Didactopus As Pedagogy Support

View File

@ -180,6 +180,17 @@ For important notebook concepts, export:
- `groundrecall_query_bundle.json`
If you only need the page-ready artifact for a concept, `Didactopus` now also
has a direct wrapper that writes both the query bundle and `notebook_page.json`
into one output directory:
```bash
didactopus notebook-page-groundrecall \
/path/to/groundrecall-store \
natural-selection \
/tmp/notebook-page-export
```
This becomes the handoff object for learner-facing or page-facing pack flows.
Expected result:

View File

@ -96,3 +96,12 @@ Run the plain `doclift` bundle conversion without GroundRecall:
```bash
didactopus doclift-bundle /tmp/doclift-bundle /tmp/didactopus-pack --course-title "Example Course"
```
Build just the Notebook page artifact from a GroundRecall concept:
```bash
didactopus notebook-page-groundrecall \
/path/to/groundrecall-store \
channel-capacity \
/tmp/notebook-page-export
```