codex-toys/docs/tome.config.js
matamune 020dd2be94
All checks were successful
ci / check (push) Successful in 51s
Document deferred runs roadmap
2026-05-30 04:54:46 +00:00

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" },
],
};