hataraku
Version:
An autonomous coding agent for building AI-powered development tools. The name "Hataraku" (働く) means "to work" in Japanese.
13 lines (12 loc) • 560 B
TypeScript
import { Command } from 'commander';
import { registerProfileCommands } from './profile';
import { registerTaskCommands } from './task';
import { registerConfigCommands } from './config';
import { registerToolCommands } from './tools';
/**
* Register all CLI commands with the program
* @param program Commander program instance
* @returns Program with all commands registered
*/
export declare function registerAllCommands(program: Command): Command;
export { registerProfileCommands, registerTaskCommands, registerConfigCommands, registerToolCommands };