claudes-office
Version:
CLI tool to initialize Claude's office in your project
25 lines (24 loc) • 723 B
TypeScript
/**
* Update command for claudes-office
* This command updates an existing office installation
*/
/**
* Options for the update command
*/
export interface UpdateOptions {
/** Create a backup before updating */
backup?: boolean;
/** Components to update (e.g., 'roles', 'references') */
components?: string[];
/** Force update even if there are conflicts */
force?: boolean;
/** Show what would be updated without making changes */
dryRun?: boolean;
/** Enable debug mode for detailed logging */
debug?: boolean;
}
/**
* Update an existing office installation
* @param options - Update options
*/
export declare function executeUpdate(options?: UpdateOptions): Promise<void>;