@kya-os/cli
Version:
CLI for MCP-I setup and management
21 lines • 588 B
TypeScript
interface InitOptions {
name?: string;
description?: string;
repository?: string;
platform?: string;
skipRegistration?: boolean;
force?: boolean;
local?: boolean;
endpoint?: string;
verbose?: boolean;
skipClaimCheck?: boolean;
/** Set to false by --no-dco to skip the attribution prompt. */
dco?: boolean;
}
/**
* Initialize XMCP-I in the current project
* Requirements: 2.7 (init command), 4.1-4.4 (identity management)
*/
export declare function init(options?: InitOptions): Promise<void>;
export {};
//# sourceMappingURL=init.d.ts.map