From cb40d62c89cf7bc58e0bc2c365e3549c044ec285 Mon Sep 17 00:00:00 2001 From: Seongho Bae Date: Mon, 31 Aug 2026 21:07:25 +0900 Subject: [PATCH 1/2] chore: ignore external agent-runtime scratch registries An external contextual-orchestrator agent runtime writes registered_agents.json and task_agent_mapping.json into whatever directory it is invoked from. When run against this checkout they surface as untracked files that any concurrent writer could commit by accident. They are not Inkspan source, contracts, or evidence, so ignore them at the repository root. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01RCDAt2v7kz4SFyaFDsSoyD --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 56fca8cbc..7787bfb47 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,9 @@ htmlcov/ # Storybook local build output storybook-static/ + +# Scratch registries written into the working tree by an external +# contextual-orchestrator agent runtime when it is invoked from this +# directory. They are not Inkspan source or contracts. +registered_agents.json +task_agent_mapping.json From c747e860eef56a0a564f2ab3818bcffb59e40036 Mon Sep 17 00:00:00 2001 From: Seongho Bae Date: Mon, 7 Sep 2026 14:38:16 +0900 Subject: [PATCH 2/2] fix(repo): scope agent scratch ignores to repository root Preserve nested source and fixture files with the same names while ignoring the two external runtime registries at the checkout root. Co-Authored-By: Codex Signed-off-by: Seongho Bae --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7787bfb47..c24bf88fc 100644 --- a/.gitignore +++ b/.gitignore @@ -30,5 +30,5 @@ storybook-static/ # Scratch registries written into the working tree by an external # contextual-orchestrator agent runtime when it is invoked from this # directory. They are not Inkspan source or contracts. -registered_agents.json -task_agent_mapping.json +/registered_agents.json +/task_agent_mapping.json