From 74db08abc5c06afac4f11e9a64e15001585db348 Mon Sep 17 00:00:00 2001 From: Lauren ten Hoor Date: Fri, 13 Feb 2026 20:43:06 +0800 Subject: [PATCH] docs: remove outdated auto-tick references from work_finish (#159) --- lib/tools/work-finish.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/tools/work-finish.ts b/lib/tools/work-finish.ts index eff4ac8..3df3f3c 100644 --- a/lib/tools/work-finish.ts +++ b/lib/tools/work-finish.ts @@ -1,8 +1,8 @@ /** * work_finish — Complete a task (DEV done, QA pass/fail/refine/blocked). * - * Delegates side-effects to pipeline service, then ticks the project queue - * to fill free slots, sends notifications, and logs to audit. + * Delegates side-effects to pipeline service: label transition, state update, + * issue close/reopen, notifications, and audit logging. */ import type { OpenClawPluginApi } from "openclaw/plugin-sdk"; import { jsonResult } from "openclaw/plugin-sdk"; @@ -16,7 +16,7 @@ export function createWorkFinishTool(api: OpenClawPluginApi) { return (ctx: ToolContext) => ({ name: "work_finish", label: "Work Finish", - description: `Complete a task: DEV done/blocked, QA pass/fail/refine/blocked. Handles label transition, state update, issue close/reopen, notifications, audit, and auto-ticks the queue to fill free slots.`, + description: `Complete a task: DEV done/blocked, QA pass/fail/refine/blocked. Handles label transition, state update, issue close/reopen, notifications, and audit logging.`, parameters: { type: "object", required: ["role", "result", "projectGroupId"],