/** * Built-in documentation, read from the bundled markdown tree. * * The docs corpus ships exactly once, at `src/skill/docs/` — plain markdown * transformed from `marketing/docs/content/docs/**\/*.mdx` by * `scripts/bundle-skill.ts`. It's already published (`package.json#files` * lists `src/skill/**\/*`) and already copied to `dist/skill/` by postbuild, * because the Claude Code skill install needs it there. * * This module reads that same tree instead of a second generated copy. The * old `src/docs/content.ts` re-bundled the identical 146 pages into a 1.7 MB * TypeScript string literal, so every `npm i @quickback-dev/cli` downloaded * the documentation twice. * * Topic keys match the old generated ones exactly: the path relative to the * docs root, minus the extension, with a trailing `/index` stripped * (`define/firewall.md` → `define/firewall`, `api/index.md` → `api`). */ export interface DocEntry { title: string; content: string; } export declare function getDocs(): Record; export declare function getTopicList(): string[]; //# sourceMappingURL=index.d.ts.map