UNPKG

hataraku

Version:

An autonomous coding agent for building AI-powered development tools. The name "Hataraku" (働く) means "to work" in Japanese.

16 lines (15 loc) 549 B
import { Profile } from './profileConfig'; export declare class ProfileManager { private configPath; private config; constructor(); private loadConfig; private saveConfig; listProfiles(): Promise<string[]>; getProfile(name: string): Promise<Profile>; createProfile(profile: Profile): Promise<void>; updateProfile(name: string, updates: Partial<Profile>): Promise<void>; deleteProfile(name: string): Promise<void>; getActiveProfile(): Promise<Profile>; setActiveProfile(name: string): Promise<void>; }