@kl-c/matrixos 0.2.1 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,21 @@
1
+ /**
2
+ * matrixos self-audit — CLI command
3
+ *
4
+ * Reads the task ledger (SQLite) and synthesises a weekly audit report.
5
+ * Falls back to an empty dataset if the DB or scanner is unavailable.
6
+ */
7
+ import { type WeeklyAuditReport } from "../audit/self-audit";
8
+ export interface SelfAuditOptions {
9
+ week?: string;
10
+ json?: boolean;
11
+ tasksDb?: string;
12
+ installCron?: boolean;
13
+ }
14
+ export interface SelfAuditResult {
15
+ ok: boolean;
16
+ path?: string;
17
+ message: string;
18
+ report?: WeeklyAuditReport;
19
+ }
20
+ export declare function executeSelfAuditCommand(options?: SelfAuditOptions): Promise<SelfAuditResult>;
21
+ export declare function normalizeStatus(status?: string): string;