memorybank
Version:
A command-line tool for parsing and displaying memory bank status from markdown files, with support for Roo Code's Memory Bank
30 lines • 1.03 kB
TypeScript
#!/usr/bin/env node
/**
* Convert a path with ~ to absolute path
* @param inputPath Path that may contain ~
* @returns Absolute path with ~ expanded
*/
export declare function toTildePath(inputPath: string): string;
/**
* Get the Git executable path based on OS
* @returns Path to Git executable
*/
export declare function getGitPath(): string;
/**
* Get the docs path from command line arguments
* @param args Command line arguments
* @returns Docs path if provided
*/
export declare function getDocsPathValue(args: string[]): string | undefined;
/**
* Validate that required repositories exist
* @param docsPath Path to docs directory
*/
export declare function validateRepositories(docsPath: string): Promise<void>;
/**
* Process all markdown files in docs directory
* @param docsPath Path to docs directory
* @param showIncomplete Only show incomplete items
*/
export declare function processDocsDirectory(docsPath: string, showIncomplete?: boolean): Promise<void>;
//# sourceMappingURL=memorybank-status.d.ts.map