Merge branch 'harness/C-verification' into harness/A-integration

This commit is contained in:
DongHyeonka
2026-09-10 11:07:35 +09:00
12 changed files with 415 additions and 15 deletions
@@ -22,7 +22,11 @@ const withRepo = flags.includes("--repo");
const root = execSync("git rev-parse --show-toplevel", { encoding: "utf8" }).trim();
const base = join(root, "docs", project);
const treePath = join(base, "tech-log-studio", "tech-log-tree.json");
if (!existsSync(treePath)) { console.error(`${project}: tech-log-tree.json 이 없다`); process.exit(2); }
// 대상이 성립하지 않는다 — CLAUDE.md 「검사」 절의 표. exit 2 로 error 로 센다
if (!existsSync(treePath)) {
console.error(`대상이 성립하지 않는다 — ${project}: tech-log-tree.json 이 없다`);
process.exit(2);
}
const tree = JSON.parse(readFileSync(treePath, "utf8"));
const ssotRel = tree.ssot || "final/document.md";
const norm = s => s.replace(/\s+/g, " ").trim();