feat: publish Git collaboration and AI development research

This commit is contained in:
wuyang6
2026-08-10 02:49:12 +08:00
parent 8bd96c892a
commit 64ad40c9c6
15 changed files with 1339 additions and 8 deletions
+15 -1
View File
@@ -2,7 +2,21 @@ import { access, readFile, readdir } from "node:fs/promises";
import { join } from "node:path";
const root = new URL("../dist/", import.meta.url);
const required = ["index.html", "archive/index.html", "method/index.html", "articles/research-publishing-method/index.html", "rss.xml", "sitemap.xml"];
const required = [
"index.html",
"archive/index.html",
"method/index.html",
"articles/research-publishing-method/index.html",
"articles/git-collaboration-ai-development/index.html",
"articles/git-collaboration-ai-development/git-collaboration-flow.png",
"articles/git-collaboration-ai-development/ai-responsibility-lanes.png",
"articles/git-collaboration-ai-development/ai-project-workflow-positions.png",
"articles/git-collaboration-ai-development/change-evidence-state.svg",
"articles/git-collaboration-ai-development/test-selection-funnel.svg",
"articles/git-collaboration-ai-development/agent-trust-boundary.svg",
"rss.xml",
"sitemap.xml"
];
for (const path of required) await access(new URL(path, root));
async function walk(path) {