From 55218fcbd667869c132d07ae0604cf09ffd7b8c7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 28 Jul 2026 16:15:34 +0000 Subject: [PATCH 1/2] Initial plan From 194a8211fc03245d37f4d34d58e8fc1353066098 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 28 Jul 2026 16:19:45 +0000 Subject: [PATCH 2/2] Apply remaining changes Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- skills/rig/samples/25-migration-guide.md | 2 +- skills/rig/samples/61-genaiscript-list-files-port.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/skills/rig/samples/25-migration-guide.md b/skills/rig/samples/25-migration-guide.md index 6c24740..825ad6a 100644 --- a/skills/rig/samples/25-migration-guide.md +++ b/skills/rig/samples/25-migration-guide.md @@ -9,7 +9,7 @@ const improve = agent({ message: s.string, explanation: s.string }), - instructions: `Rewrite the error to be actionable and precise.`, + instructions: `Rewrite the following error to be actionable and precise:\n\nTypeError: Cannot read properties of undefined (reading 'map') at Array.forEach ()\n at processItems (src/processor.ts:23:18)`, }); export default improve; diff --git a/skills/rig/samples/61-genaiscript-list-files-port.md b/skills/rig/samples/61-genaiscript-list-files-port.md index a697efa..60b08e3 100644 --- a/skills/rig/samples/61-genaiscript-list-files-port.md +++ b/skills/rig/samples/61-genaiscript-list-files-port.md @@ -4,7 +4,7 @@ import { agent, p, s } from "rig"; // Agent role: pick the most interesting rig sample files. const listFilesPort = agent({ - model: "nano", + model: "mini", instructions: p`Review ${p.bash("find skills/rig/samples -maxdepth 1 -name '*.md' | sort")}. Select the 3 most interesting sample files.`, output: s.object({ files: s.array(s.string) }), });