feat: enhance role-tier structure for models and update related configurations

This commit is contained in:
Lauren ten Hoor
2026-02-11 01:18:13 +08:00
parent f2e71a35d8
commit b249217bc1
5 changed files with 94 additions and 22 deletions

View File

@@ -23,12 +23,25 @@ const plugin = {
properties: {
models: {
type: "object",
description: "Model mapping per developer tier",
description: "Model mapping per role and tier",
properties: {
junior: { type: "string" },
medior: { type: "string" },
senior: { type: "string" },
qa: { type: "string" },
dev: {
type: "object",
description: "Developer tier models",
properties: {
junior: { type: "string" },
medior: { type: "string" },
senior: { type: "string" },
},
},
qa: {
type: "object",
description: "QA tier models",
properties: {
"qa-engineer": { type: "string" },
"manual-tester": { type: "string" },
},
},
},
},
projectExecution: {