46 lines
1,003 B
JavaScript
46 lines
1,003 B
JavaScript
/** @type {import('@tomehq/core').TomeConfig} */
|
|
export default {
|
|
name: "codex-toys",
|
|
basePath: "/docs",
|
|
theme: {
|
|
preset: "editorial",
|
|
mode: "auto",
|
|
accent: "#2563eb",
|
|
},
|
|
navigation: [
|
|
{ group: "Overview", pages: ["index"] },
|
|
{
|
|
group: "Guides",
|
|
pages: [
|
|
"guides/turn-automation",
|
|
"guides/workspace-autonomy",
|
|
"guides/memory-transplant",
|
|
"guides/thread-transplant",
|
|
"guides/install-codex-plugin",
|
|
"guides/install-pack-repos",
|
|
],
|
|
},
|
|
{
|
|
group: "Reference",
|
|
pages: [
|
|
"reference/cli",
|
|
"reference/packages",
|
|
],
|
|
},
|
|
{
|
|
group: "Concepts",
|
|
pages: [
|
|
"concepts/architecture",
|
|
"concepts/deferred-runs-roadmap",
|
|
"concepts/backends",
|
|
"concepts/domain-boundaries",
|
|
"concepts/toyboxes",
|
|
"concepts/toybox-deployments",
|
|
],
|
|
},
|
|
],
|
|
topNav: [
|
|
{ label: "GitHub", href: "https://github.com/peezy-tech/codex-toys" },
|
|
{ label: "Release", href: "https://github.com/peezy-tech/codex-toys/blob/main/RELEASE.md" },
|
|
],
|
|
};
|