@kya-os/cli
Version:
CLI for MCP-I setup and management
22 lines • 657 B
TypeScript
import type { Receipt } from "@kya-os/contracts/registry";
interface ReceiptsOptions {
json?: boolean;
path?: string;
verify?: boolean;
}
/**
* List and manage stored receipts
*/
export declare function receipts(options?: ReceiptsOptions): Promise<void>;
/**
* Legacy registry receipts do not carry the signed KYA-OS audit envelopes
* required by the core verifier. Never promote structural well-formedness to
* cryptographic verification.
*/
export declare function verifyReceipt(receipt: Receipt): Promise<{
status: "invalid" | "unsupported";
valid: false;
error: string;
}>;
export {};
//# sourceMappingURL=receipts.d.ts.map