metacoding
Version:
Cross-agent workflow skill for modern coding agents with gated planning, testing, verification, and handoff defaults
13 lines • 593 B
TypeScript
export declare class FileSystemService {
isMetaCodingSetup(): Promise<boolean>;
ensureDirectoryExists(dirPath: string): Promise<void>;
writeFile(filePath: string, content: string): Promise<void>;
readFile(filePath: string): Promise<string>;
fileExists(filePath: string): Promise<boolean>;
copyFile(source: string, destination: string): Promise<void>;
listFiles(dirPath: string): Promise<string[]>;
backupFile(filePath: string): Promise<string>;
getCurrentDirectory(): string;
getCurrentDirectoryName(): string;
}
//# sourceMappingURL=filesystem.d.ts.map