[codex] Move internal development notes to maintainers (#57316)

* docs: move internal notes to maintainers

* docs: drop internal notes agent guidance
This commit is contained in:
Onur Solmaz
2026-03-30 00:15:08 +02:00
committed by GitHub
parent d82d6ba0c4
commit 2da61e6553
26 changed files with 6 additions and 4369 deletions

View File

@@ -65,15 +65,7 @@ for (const item of docsConfig.redirects || []) {
}
const allFiles = walk(DOCS_DIR);
function isIgnoredDocsPath(relPath) {
return relPath.startsWith("internal/");
}
const relAllFiles = new Set(
allFiles
.map((abs) => normalizeSlashes(path.relative(DOCS_DIR, abs)))
.filter((rel) => !isIgnoredDocsPath(rel)),
);
const relAllFiles = new Set(allFiles.map((abs) => normalizeSlashes(path.relative(DOCS_DIR, abs))));
function isGeneratedTranslatedDoc(relPath) {
return relPath.startsWith("zh-CN/");
@@ -84,7 +76,7 @@ const markdownFiles = allFiles.filter((abs) => {
return false;
}
const rel = normalizeSlashes(path.relative(DOCS_DIR, abs));
return !isGeneratedTranslatedDoc(rel) && !isIgnoredDocsPath(rel);
return !isGeneratedTranslatedDoc(rel);
});
const routes = new Set();