From fc53b66d18eff3735e43f60b52b85e8e2e116a8b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2026 03:18:19 +0000 Subject: [PATCH] =?UTF-8?q?Update=20rig.ts=20agentic=20file-summary=20head?= =?UTF-8?q?er=20(c9fc374=20=E2=86=92=20083ec24)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Bump @last-analyzed from c9fc374 to 083ec24 - Update @edit-time to 2026-08-02T16:16:12Z - Remove [NEW] tag from T:PromptIntentOptions (now current) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- skills/rig/rig.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skills/rig/rig.ts b/skills/rig/rig.ts index e00e988..48199e5 100644 --- a/skills/rig/rig.ts +++ b/skills/rig/rig.ts @@ -1,5 +1,5 @@ /** - * @file skills/rig/rig.ts @last-analyzed c9fc374 @edit-time 2026-08-01T20:08:51Z + * @file skills/rig/rig.ts @last-analyzed 083ec24 @edit-time 2026-08-02T16:16:12Z * @purpose Minimal TypeScript multi-agent harness: typed input/output schemas, prompt intents, sub-agent delegation, workflow orchestration, Copilot SDK runtime * @deps @github/copilot-sdk (CopilotClient,RuntimeConnection,approveAll); node:path,url,os,fs,fs/promises,child_process,util,async_hooks * T:Json type null|bool|num|str|Json[]|{[k]:Json} @@ -53,7 +53,7 @@ * T:UntilOptions type {max,noProgressRounds?} loop control for until() * T:UntilStep type (state,round)=>Promise<{state,done?,progressKey?}> step function * T:PipelineStage type (prev,item,next)=>Promise pipeline step - * T:PromptIntentOptions type {cwd?,env?,timeout?,purpose?,signal?} options shared by all p.* helpers [NEW] + * T:PromptIntentOptions type {cwd?,env?,timeout?,purpose?,signal?} options shared by all p.* helpers * s.string/number/integer/boolean/null SchemaHelperFactory primitives; call as value or fn(desc) * s.int alias for s.integer; s.nonEmptyString string with minLength:1; s.url string with format:"uri"; s.path string with format:"path"; s.date string with format:"date" validated as YYYY-MM-DD * s.positiveInt integer with minimum:1; s.nonNegativeInt integer with minimum:0; s.percent number with minimum:0,maximum:100; NumberSchema/IntegerSchema support minimum/maximum constraints