From 19a6b68a6ef19995e0710f22d1d3f8bf8954f777 Mon Sep 17 00:00:00 2001 From: AgentRun Codex Date: Thu, 16 Jul 2026 07:50:02 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0=20Artificer=20AgentRu?= =?UTF-8?q?n=20Skill=20=E5=BC=95=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/aipods/artificer.yaml | 2 +- src/runner/run-once.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/aipods/artificer.yaml b/config/aipods/artificer.yaml index 48720b5..be5d554 100644 --- a/config/aipods/artificer.yaml +++ b/config/aipods/artificer.yaml @@ -147,7 +147,7 @@ spec: - name: git-spec - name: unidesk-trans - name: unidesk-gh - - name: unidesk-code-queue + - name: unidesk-agentrun - name: unidesk-cicd - name: unidesk-subagent - name: unidesk-decision diff --git a/src/runner/run-once.ts b/src/runner/run-once.ts index cd66c10..763b28d 100644 --- a/src/runner/run-once.ts +++ b/src/runner/run-once.ts @@ -205,7 +205,7 @@ function requiresBundledWorkReadyTools(run: RunRecord): boolean { const toolCredentials = run.executionPolicy.secretScope.toolCredentials ?? []; if (toolCredentials.some((item) => item.tool === "unidesk-ssh" || item.tool === "github")) return true; const requiredSkills = run.resourceBundleRef?.requiredSkills ?? []; - return requiredSkills.some((item) => item.name === "unidesk-trans" || item.name === "unidesk-gh" || item.name === "unidesk-code-queue" || item.name === "unidesk-cicd" || item.name === "dad-dev"); + return requiredSkills.some((item) => item.name === "unidesk-trans" || item.name === "unidesk-gh" || item.name === "unidesk-agentrun" || item.name === "unidesk-cicd" || item.name === "dad-dev"); } function withResourceAssembly(options: RunnerOnceOptions, resourceEnv: NodeJS.ProcessEnv | undefined, initialPrompt: InitialPromptAssembly | undefined): RunnerOnceOptions {