Press Tree
The agent edits the book, not a blob.
Cover, TOC, sections, and back cover stay addressable.
openpress/
document/index.tsx document/chapters/ document/assets/ document/theme.ts dist/reader + pdfexport default function UserStoryPress() {
return (
<Press>
<Cover />
<Toc source="story" maxLevel={2} />
<Sections source="story" />
<BackCover />
</Press>
);
}
export const sources = {
story: mdxSource({
preset: "section-folders",
root: "chapters",
}),
};