hataraku
Version:
An autonomous coding agent for building AI-powered development tools. The name "Hataraku" (働く) means "to work" in Japanese.
12 lines (11 loc) • 820 B
TypeScript
export { getConfigPaths, createConfigDirectories } from './config-paths';
export { ProfileManager } from './ProfileManager';
export { Profile, ProfileSchema, ProfilesConfig, ProfilesConfigSchema, ProfileOptions, ProfileOptionsSchema } from './profileConfig';
export { ToolManager } from './ToolManager';
export { ToolSetConfig, ToolsConfig, ToolSetConfigSchema, ToolsConfigSchema } from './toolConfig';
export { AgentManager } from './agent-manager';
export { AgentConfig, ModelConfig, ModelParameters, AgentConfigSchema, ModelConfigSchema } from './agent-config';
export { TaskManager } from './TaskManager';
export { TaskConfig, TaskTemplate, TaskConfigSchema, TaskTemplateSchema } from './taskConfig';
export { ConfigLoader, CliOptions } from './config-loader';
export { FirstRunManager } from './first-run-manager';