From ae7adb08473b32b8b87bcde7ece37760b4ca2f4b Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Fri, 24 Apr 2026 00:01:57 +0000 Subject: [PATCH] docs: add enableRtk, rtkMaxOutputBytes, reattachOrphanedJobs to config doc (N6) Co-Authored-By: Claude Sonnet Co-Authored-By: Paperclip --- src/index.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/index.ts b/src/index.ts index d7e558f..0580420 100644 --- a/src/index.ts +++ b/src/index.ts @@ -30,6 +30,11 @@ Kubernetes fields: - labels (object, optional): extra labels added to Job metadata - ttlSecondsAfterFinished (number, optional): auto-cleanup delay; default 300 - retainJobs (boolean, optional): skip cleanup on completion for debugging +- reattachOrphanedJobs (boolean, optional): when true (default), attach to a running orphaned Job that matches the current agent/task/session instead of blocking; when false, any non-terminal orphan blocks the new run + +Output filtering fields: +- enableRtk (boolean, optional): truncate oversized tool outputs before they reach the model via a PostToolUse hook; default false +- rtkMaxOutputBytes (number, optional): byte threshold for tool output truncation when enableRtk is true; default 50000 Operational fields: - timeoutSec (number, optional): run timeout in seconds; 0 means no timeout