- Updated WorkerState type to use 'level' instead of 'tier'. - Modified functions related to worker state management, including parseWorkerState, emptyWorkerState, getSessionForLevel, activateWorker, and deactivateWorker to reflect the new terminology. - Adjusted health check logic to utilize 'level' instead of 'tier'. - Refactored tick and setup tools to accommodate the change from 'tier' to 'level', including model configuration and workspace scaffolding. - Updated tests to ensure consistency with the new 'level' terminology. - Revised documentation and comments to reflect the changes in terminology from 'tier' to 'level'.
90 lines
2.5 KiB
TypeScript
90 lines
2.5 KiB
TypeScript
/**
|
|
* Developer level definitions and model resolution.
|
|
*
|
|
* Level names are plain: "junior", "senior", "reviewer", etc.
|
|
* Role context (dev/qa) is always provided by the caller or parent structure.
|
|
*/
|
|
|
|
export const DEV_LEVELS = ["junior", "medior", "senior"] as const;
|
|
export const QA_LEVELS = ["reviewer", "tester"] as const;
|
|
|
|
export type DevLevel = (typeof DEV_LEVELS)[number];
|
|
export type QaLevel = (typeof QA_LEVELS)[number];
|
|
export type Level = DevLevel | QaLevel;
|
|
|
|
/** Default models, nested by role. */
|
|
export const DEFAULT_MODELS = {
|
|
dev: {
|
|
junior: "anthropic/claude-haiku-4-5",
|
|
medior: "anthropic/claude-sonnet-4-5",
|
|
senior: "anthropic/claude-opus-4-5",
|
|
},
|
|
qa: {
|
|
reviewer: "anthropic/claude-sonnet-4-5",
|
|
tester: "anthropic/claude-haiku-4-5",
|
|
},
|
|
};
|
|
|
|
/** Emoji used in announcements, nested by role. */
|
|
export const LEVEL_EMOJI = {
|
|
dev: {
|
|
junior: "⚡",
|
|
medior: "🔧",
|
|
senior: "🧠",
|
|
},
|
|
qa: {
|
|
reviewer: "🔍",
|
|
tester: "👀",
|
|
},
|
|
};
|
|
|
|
/** Check if a level belongs to the dev role. */
|
|
export function isDevLevel(value: string): value is DevLevel {
|
|
return (DEV_LEVELS as readonly string[]).includes(value);
|
|
}
|
|
|
|
/** Check if a level belongs to the qa role. */
|
|
export function isQaLevel(value: string): value is QaLevel {
|
|
return (QA_LEVELS as readonly string[]).includes(value);
|
|
}
|
|
|
|
/** Determine the role a level belongs to. */
|
|
export function levelRole(level: string): "dev" | "qa" | undefined {
|
|
if (isDevLevel(level)) return "dev";
|
|
if (isQaLevel(level)) return "qa";
|
|
return undefined;
|
|
}
|
|
|
|
/** Get the default model for a role + level. */
|
|
export function defaultModel(role: "dev" | "qa", level: string): string | undefined {
|
|
return (DEFAULT_MODELS[role] as Record<string, string>)[level];
|
|
}
|
|
|
|
/** Get the emoji for a role + level. */
|
|
export function levelEmoji(role: "dev" | "qa", level: string): string | undefined {
|
|
return (LEVEL_EMOJI[role] as Record<string, string>)[level];
|
|
}
|
|
|
|
/**
|
|
* Resolve a level to a full model ID.
|
|
*
|
|
* Resolution order:
|
|
* 1. Plugin config `models.<role>.<level>`
|
|
* 2. DEFAULT_MODELS[role][level]
|
|
* 3. Passthrough (treat as raw model ID)
|
|
*/
|
|
export function resolveModel(
|
|
role: "dev" | "qa",
|
|
level: string,
|
|
pluginConfig?: Record<string, unknown>,
|
|
): string {
|
|
const models = (pluginConfig as { models?: Record<string, unknown> })?.models;
|
|
|
|
if (models && typeof models === "object") {
|
|
const roleModels = models[role] as Record<string, string> | undefined;
|
|
if (roleModels?.[level]) return roleModels[level];
|
|
}
|
|
|
|
return defaultModel(role, level) ?? level;
|
|
}
|