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

23 lines 713 B
/** * Artifact Dependency Graph * * Traverses the artifact dependency graph built from @-mention relationships. * Shows upstream (what this depends on) and downstream (what depends on this). * * @implements #417 * @source @src/artifacts/types.ts * @tests @test/unit/artifacts/dep-graph.test.ts */ import type { GraphType } from './types.js'; export interface DepsOptions { direction?: 'upstream' | 'downstream' | 'both'; depth?: number; json?: boolean; graph?: GraphType; edgeType?: string; } /** * Show dependencies for an artifact */ export declare function showDeps(cwd: string, artifactPath: string, options?: DepsOptions): Promise<void>; //# sourceMappingURL=dep-graph.d.ts.map