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

16 lines 659 B
/** * Deterministic cache key composition. * * The hash includes content hashes (not just artifact IDs) so file edits * invalidate the cache cleanly. Inputs are sorted by artifactId so caller * order does not affect the resulting hash. * * @implements #1203 * @see .aiwg/architecture/adr-rlm-index-features-impl-plan.md */ import type { CacheKey } from './types.js'; /** Compute a stable sha256 hex hash for a cache key. */ export declare function computeHash(key: CacheKey): string; /** Validate a cache key has the minimum required fields. */ export declare function isCacheKey(value: unknown): value is CacheKey; //# sourceMappingURL=hash.d.ts.map