From fe6bc0c2d675f8635e499cb3b445383a8aeb7017 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Mon, 27 Apr 2026 07:25:33 -0400 Subject: [PATCH] fix(config): remove instructionsFilePath from UI config schema Handled by the framework via instructionsPathKey/supportsInstructionsBundle. Surfacing it as an editable field in the config schema was redundant. Co-Authored-By: Claude Sonnet 4.6 --- package.json | 2 +- src/server/config-schema.ts | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/package.json b/package.json index bff51f2..fdf2282 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "paperclip-adapter-opencode-k8s", - "version": "0.1.37", + "version": "0.1.38", "description": "Paperclip adapter plugin that runs OpenCode agents as Kubernetes Jobs", "license": "MIT", "type": "module", diff --git a/src/server/config-schema.ts b/src/server/config-schema.ts index 5de12ad..241439e 100644 --- a/src/server/config-schema.ts +++ b/src/server/config-schema.ts @@ -11,13 +11,6 @@ export function getConfigSchema(): AdapterConfigSchema { hint: "Provider-specific reasoning/profile variant passed as --variant", group: "Core", }, - { - key: "instructionsFilePath", - label: "Instructions File Path", - type: "text", - hint: "Absolute path to a markdown file (e.g. AGENTS.md) prepended as system instructions before the task prompt", - group: "Core", - }, { key: "dangerouslySkipPermissions", label: "Skip Permission Checks",