/** * kivo cron — Incremental knowledge ingestion for crontab use. * * Tracks file modification times in kivo_meta table. On each run, only * processes files that changed since the last run. Use --full to force * a complete re-ingest. * * Uses BGE embedding + LLM semantic extraction (same as `kivo ingest`). * Requires OPENAI_API_KEY or models.providers.penguin-main in openclaw.json. * * Usage: kivo cron [--json] [--full] * Designed for crontab, e.g.: * 0,30 * * * * cd /root/.openclaw/workspace && npx kivo cron */ export interface CronOptions { /** Output JSON */ json?: boolean; /** Force full re-ingest (ignore stored mtimes) */ full?: boolean; /** Skip FR-N05 quality gate */ noQualityGate?: boolean; } export declare function runCron(options?: CronOptions): Promise; //# sourceMappingURL=cron.d.ts.map