/** * forgen status — 통합 상태 명령 (Wave 1, feature-audit 2026-07-21). * * 이전에는 "내 상태를 보여줘"가 stats/health/dashboard/me/recall/explain/ * last-block/watch/inspect 9개 명령으로 파편화돼 있었다(~1800줄). 이 하나로 * 통합해 표면을 줄이고 진입점을 일원화한다. 기존 render/compute 함수는 재사용만 * 하고 재작성하지 않는다. * * forgen status 요약 (health 헤더 + one-screen stats) * forgen status --compound compound 상태 + 최근 회상 이력 * forgen status --profile 4축 프로필 + 최근 교정 * forgen status --rules 활성 룰 * forgen status --blocks [N] 최근 차단 N건 (rule·사유·해결) * forgen status --live 실시간 훅 이벤트 스트림 */ declare const VIEWS: readonly ["--compound", "--profile", "--rules", "--blocks", "--live", "--overview"]; type View = (typeof VIEWS)[number]; export declare function resolveView(args: string[]): View | null; export declare function handleStatus(args: string[]): Promise; export {};