UNPKG

aiwg

Version:

Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platfo

19 lines 490 B
/** * Artifact Index Statistics * * Reports index health, coverage, and distribution metrics. * * @implements #418 * @source @src/artifacts/types.ts * @tests @test/unit/artifacts/stats.test.ts */ import type { GraphType } from './types.js'; export interface StatsOptions { json?: boolean; graph?: GraphType; } /** * Show artifact index statistics */ export declare function showStats(cwd: string, options?: StatsOptions): Promise<void>; //# sourceMappingURL=stats.d.ts.map