Files
oh-my-opencode/dist/shared/migration/agent-names.d.ts
T
2026-03-14 04:56:50 +00:00

7 lines
258 B
TypeScript

export declare const AGENT_NAME_MAP: Record<string, string>;
export declare const BUILTIN_AGENT_NAMES: Set<string>;
export declare function migrateAgentNames(agents: Record<string, unknown>): {
migrated: Record<string, unknown>;
changed: boolean;
};