/** * Standardized Threat Cloud pipeline commands. * * atr tc sync Push repo rules → TC (updates metrics + website) * atr tc pull Pull confirmed TC rules → repo (validate + write) * atr tc crystallize Send missed attacks → TC LLM → new proposals * atr tc status Show TC state (rules, proposals, threats) * * All commands are idempotent and safe to run repeatedly. * CI workflows call these same commands — no ad-hoc scripts. * * @module agent-threat-rules/cli/tc-pipeline */ export declare function cmdTCSync(options: Record): Promise; export declare function cmdTCPull(options: Record): Promise; export declare function cmdTCCrystallize(options: Record): Promise; export declare function cmdTCStatus(options: Record): Promise; //# sourceMappingURL=tc-pipeline.d.ts.map