/** * Template data structures for the `rolebox init` command. * * Defines the 3 built-in scaffold templates (minimal, standard, subagents) * and the types that describe them. * * Each template is defined in its own module; this file re-exports * the public API for backward compatibility. * * @module */ export type { TemplateType, TemplateFile, Template, InitConfig } from "./types.ts"; export { minimalTemplate } from "./minimal.ts"; export { standardTemplate } from "./standard.ts"; export { subagentsTemplate } from "./subagents.ts"; import type { TemplateType, Template } from "./types.ts"; /** * Built-in scaffold templates indexed by `TemplateType`. * * Each template defines the set of files that `rolebox init` will create * when the user picks that option. */ export declare const templates: Record; //# sourceMappingURL=index.d.ts.map