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
23 lines • 766 B
TypeScript
/**
* Artifact Index CLI Commands
*
* Provides CLI interface for artifact index operations:
* - build: Build/rebuild the artifact index
* - query: Search artifacts by keyword, type, phase, tags
* - deps: Show artifact dependency graph
* - stats: Show index statistics
*
* Supports multi-graph architecture via --graph flag:
* - framework: AIWG framework source (shared, built during `aiwg use`)
* - project: SDLC artifacts in .aiwg/ (per-project)
* - codebase: Source code, tests, configs (per-project)
*
* @implements #420 #421
* @source @src/cli/handlers/subcommands.ts
* @tests @test/unit/artifacts/cli.test.ts
*/
/**
* Main index command router
*/
export declare function main(args: string[]): Promise<void>;
//# sourceMappingURL=cli.d.ts.map