feat: enhance review process and role management

- Refactor reviewPass function to identify states with review checks instead of specific review types.
- Introduce review policies (HUMAN, AGENT, AUTO) to control PR review processes based on developer levels.
- Update projectTick to handle review policies and step routing labels for reviewers and testers.
- Add detailed reviewer instructions to templates for clarity on review responsibilities.
- Implement role:level label management, allowing dynamic creation of labels based on project configuration.
- Enhance task_update tool to support state and level updates, ensuring at least one parameter is provided.
- Update work_finish tool to include reviewer actions (approve, reject) in task completion.
- Modify work_start tool to utilize role-level detection for better level assignment.
- Add tests for new functionalities, including review routing and level detection from labels.
This commit is contained in:
Lauren ten Hoor
2026-02-16 18:09:53 +08:00
parent 1464fa82d2
commit d87b9f68a2
25 changed files with 1134 additions and 294 deletions

View File

@@ -22,7 +22,16 @@ import {
export function detectLevelFromLabels(labels: string[]): string | null {
const lower = labels.map((l) => l.toLowerCase());
// Match role.level labels (e.g., "dev.senior", "qa.mid", "architect.junior")
// Priority 1: Match role:level labels (e.g., "developer:senior", "tester:junior")
for (const l of lower) {
const colon = l.indexOf(":");
if (colon === -1) continue;
const level = l.slice(colon + 1);
const all = getAllLevels();
if (all.includes(level)) return level;
}
// Priority 2: Match legacy role.level labels (e.g., "dev.senior", "qa.mid")
for (const l of lower) {
const dot = l.indexOf(".");
if (dot === -1) continue;
@@ -37,6 +46,36 @@ export function detectLevelFromLabels(labels: string[]): string | null {
return all.find((l) => lower.includes(l)) ?? null;
}
/**
* Detect role and level from colon-format labels (e.g. "developer:senior").
* Returns the first match found, or null if no role:level label exists.
*/
export function detectRoleLevelFromLabels(
labels: string[],
): { role: string; level: string } | null {
for (const label of labels) {
const colon = label.indexOf(":");
if (colon === -1) continue;
const role = label.slice(0, colon).toLowerCase();
const level = label.slice(colon + 1).toLowerCase();
const roleLevels = getLevelsForRole(role);
if (roleLevels.includes(level)) return { role, level };
}
return null;
}
/**
* Detect step routing from labels (e.g. "review:human", "test:skip").
* Returns the routing value for the given step, or null if no routing label exists.
*/
export function detectStepRouting(
labels: string[], step: string,
): string | null {
const prefix = `${step}:`;
const match = labels.find((l) => l.toLowerCase().startsWith(prefix));
return match ? match.slice(prefix.length).toLowerCase() : null;
}
/**
* Detect role from a label using workflow config.
*/