@kya-os/create-xmcpi-app
Version:
Bootstrap XMCP applications with identity features
23 lines • 634 B
TypeScript
interface CreateProjectOptions {
projectPath: string;
projectName: string;
packageManager: string;
transports: string[];
packageVersion: string;
useLocalXmcp?: boolean;
deployToVercel?: boolean;
skipInstall?: boolean;
agentName?: string;
agentDescription?: string;
agentRepository?: string;
skipIdentity?: boolean;
skipAnimation?: boolean;
fastAnimation?: boolean;
spinner?: any;
}
/**
* Create a new xmcp project with identity features
*/
export declare function createProject(options: CreateProjectOptions): Promise<void>;
export {};
//# sourceMappingURL=create.d.ts.map