From 97f8e744a238baab5fa508731c6670cf675f24fb Mon Sep 17 00:00:00 2001 From: Tym Rabchuk Date: Tue, 19 May 2026 10:29:57 -0400 Subject: [PATCH 1/2] Correct LICENSE copyright year to 2026 The MIT block was added in 0cc6e27 with year 2025, but the repo's public history begins in 2026. --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 4ef6e66..c016545 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2025 Tym Rabchuk +Copyright (c) 2026 Tym Rabchuk Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal From 9a45faff5fac4f9288c00ba45ff1ffeaa75cf2cb Mon Sep 17 00:00:00 2001 From: Tym Rabchuk Date: Tue, 19 May 2026 10:35:28 -0400 Subject: [PATCH 2/2] Fix SC2015 lint in agent-mapper tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub runner's shellcheck flags the `cd X && Y || true` pattern. The preceding `cd "$DEVKIT_ROOT" &&` is dead code anyway — agent-prompt.sh prefers the explicit DEVKIT_ROOT env var over pwd-based discovery. --- test/hooks_test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/hooks_test.sh b/test/hooks_test.sh index 981c2b4..5e26df7 100755 --- a/test/hooks_test.sh +++ b/test/hooks_test.sh @@ -99,14 +99,14 @@ else fail "slash bridge emitted output without DEVKIT_ROOT" fi -agent=$(cd "$DEVKIT_ROOT" && DEVKIT_ROOT="$DEVKIT_ROOT" bash "$ROOT/codex/agent-prompt.sh" researcher 2>/dev/null || true) +agent=$(DEVKIT_ROOT="$DEVKIT_ROOT" bash "$ROOT/codex/agent-prompt.sh" researcher 2>/dev/null || true) if printf '%s' "$agent" | grep -q 'Recommended Codex subagent type: explorer'; then pass "agent mapper works" else fail "agent mapper failed" fi -worker_agent=$(cd "$DEVKIT_ROOT" && DEVKIT_ROOT="$DEVKIT_ROOT" bash "$ROOT/codex/agent-prompt.sh" builder 2>/dev/null || true) +worker_agent=$(DEVKIT_ROOT="$DEVKIT_ROOT" bash "$ROOT/codex/agent-prompt.sh" builder 2>/dev/null || true) if printf '%s' "$worker_agent" | grep -q 'Recommended Codex subagent type: worker'; then pass "agent mapper handles multiline tools" else