agp-cli
Version:
Agentic Programming Project CLI - Standardized knowledge layer for AI-assisted development
25 lines • 626 B
TypeScript
export interface AgpInitOptions {
force: boolean;
templateUrl?: string;
}
export interface AgpPushOptions {
message?: string;
}
export interface AgpConnectOptions {
tool: string;
configPath?: string;
}
export interface ProjectInfo {
type: 'react' | 'nextjs' | 'vue' | 'express' | 'nestjs' | 'unknown';
hasPackageJson: boolean;
hasGitRepo: boolean;
framework?: string | undefined;
buildTool?: string | undefined;
}
export interface AgpConfig {
version: string;
templateUrl: string;
lastSync: string;
projectType: ProjectInfo['type'];
}
//# sourceMappingURL=index.d.ts.map