metacoding
Version:
Cross-agent workflow skill for modern coding agents with gated planning, testing, verification, and handoff defaults
14 lines • 370 B
TypeScript
export declare class ProjectDetector {
detectProject(): Promise<{
name: string;
type: string;
hasGit: boolean;
techStack: string[];
}>;
private detectProjectType;
private detectTechStack;
private collectDependencies;
private readPackageJson;
private hasAnyFile;
}
//# sourceMappingURL=project-detector.d.ts.map