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

17 lines 626 B
export interface Jwk { kty: string; crv?: string; x?: string; kid?: string; alg?: string; use?: string; } export interface JwkSet { keys: Jwk[]; } export declare function findJwkByKid(set: JwkSet | null | undefined, kid: string): Jwk | null; export declare function jwkThumbprint(jwk: Jwk): string; export declare function loadJwkSet(json: string): JwkSet; export declare function verifyJwsCompact(jws: string, expectedPayload: Uint8Array | null, jwk: Jwk): void; export declare function verifyAgentCardSignature(cardJson: string | Uint8Array, jwks: JwkSet): void; //# sourceMappingURL=jws.d.ts.map