/** * agenthood ritual * * Rituals are declared in docs/rituals/*.md — frontmatter binds a cron * schedule to a member. Scheduled runs live in .github/workflows/rituals.yml * (parity enforced by tests/unit/scripts/rituals-workflow.test.ts); this * command lists them and runs one manually. */ import type { CommandDescriptor } from './types.ts'; interface RitualManifest { file: string; name: string; schedule: string; priority: string; member: string; description: string; } export declare function parseFrontmatter(content: string): Record; export declare function loadRituals(dir: string): RitualManifest[]; export declare function ritual(args: string[]): Promise; export declare const command: CommandDescriptor; export {}; //# sourceMappingURL=ritual.d.ts.map