2026-07-02 23:12:25 -07:00
/**
2026-07-12 03:36:43 +08:00
* Enforce complete English/Chinese pairs, matching structure, and recorded git
2026-07-14 12:34:14 +08:00
* blob hashes under the bilingual manifest. Required files and date-named docs
* at or after `requiredSince` must be paired; excluded docs may have neither a
* counterpart nor sidecar. `--list` reports state and `--write` records both
* sides after human review. Translation quality remains a review responsibility.
* See `docs/i18n/README.md` for the owning contract.
2026-07-02 23:12:25 -07:00
*/
import { createHash } from 'node:crypto'
2026-07-06 12:16:31 +08:00
import { existsSync , globSync , readFileSync , writeFileSync } from 'node:fs'
2026-07-02 23:12:25 -07:00
import { basename , join , resolve } from 'node:path'
import { fromMarkdown } from 'mdast-util-from-markdown'
import { gfmFromMarkdown } from 'mdast-util-gfm'
import { gfm } from 'micromark-extension-gfm'
import type { Nodes } from 'mdast'
const root = resolve ( import . meta . dirname , '..' )
const listMode = process . argv . includes ( '--list' )
2026-07-03 07:41:24 -07:00
const writeMode = process . argv . includes ( '--write' )
2026-07-02 23:12:25 -07:00
2026-07-11 14:08:24 +08:00
/** Scope of the bilingual contract: the root README, the docs tree, and the Python SDK tree. */
const SCOPE_PATTERNS = [ 'README.md' , 'README.zh.md' , 'README.i18n.yaml' , 'docs/**/*.md' , 'docs/**/*.i18n.yaml' , 'python/**/*.md' , 'python/**/*.i18n.yaml' ]
2026-07-02 23:12:25 -07:00
/** The enforcement frontier and the never-paired set (docs/i18n/README.md § Scope). */
interface Manifest {
required : string [ ]
excluded : string [ ]
2026-07-04 05:41:18 -07:00
/** Date-named documents (yyyy-mm-dd-*.md, i.e. RFCs) dated on/after this day must merge bilingual. */
requiredSince : string
2026-07-02 23:12:25 -07:00
}
const manifest = JSON . parse ( readFileSync ( join ( root , 'scripts/translation-pairing.manifest.json' ) , 'utf8' ) ) as Manifest
2026-07-03 02:06:57 -07:00
/**
* An excluded entry ending in `/` excludes the whole directory. The trailing
* slash IS the path boundary — `docs/tool-catalog/` cannot prefix-match a
* sibling like `docs/tool-catalog-notes/x.md` — so directory entries in the
* manifest must keep their trailing slash.
*/
2026-07-02 23:12:25 -07:00
function isExcluded ( file : string ) : boolean {
return manifest . excluded . some ( entry = > ( entry . endsWith ( '/' ) ? file . startsWith ( entry ) : file === entry ) )
}
2026-07-03 07:41:24 -07:00
/** Full git blob hash (what `git hash-object` prints). */
2026-07-02 23:12:25 -07:00
function blobHash ( content : Buffer ) : string {
const hash = createHash ( 'sha1' )
hash . update ( ` blob ${ content . byteLength } \ 0 ` )
hash . update ( content )
2026-07-03 07:41:24 -07:00
return hash . digest ( 'hex' )
}
/** The three paths of a pair, derived from the English-file path. */
function pairPaths ( source : string ) : { zh : string ; meta : string } {
return { zh : source.replace ( /\.md$/ , '.zh.md' ) , meta : source.replace ( /\.md$/ , '.i18n.yaml' ) }
}
const META_LINE = /^([^:#]+\.md): ([0-9a-f]{40})$/
/** Parse a `foo.i18n.yaml` consistency record: basename → recorded blob hash. */
function parseMeta ( content : string ) : Map < string , string > | undefined {
const out = new Map < string , string > ( )
for ( const line of content . split ( '\n' ) ) {
if ( line === '' || line . startsWith ( '#' ) ) continue
const match = META_LINE . exec ( line )
if ( ! match ? . [ 1 ] || ! match [ 2 ] ) return undefined
out . set ( match [ 1 ] , match [ 2 ] )
}
return out
}
/** Render a `foo.i18n.yaml` consistency record. */
function renderMeta ( source : string , sourceHash : string , zh : string , zhHash : string ) : string {
return [
'# Bilingual-pair consistency record (docs/i18n/README.md): the git blob hash of each' ,
'# side as of the last confirmed-consistent state. Both languages carry equal authority;' ,
'# after editing either side, bring the other along and re-record with:' ,
'# pnpm run verify-translation-pairing --write' ,
` ${ basename ( source ) } : ${ sourceHash } ` ,
` ${ basename ( zh ) } : ${ zhHash } ` ,
'' ,
] . join ( '\n' )
2026-07-02 23:12:25 -07:00
}
2026-07-03 02:06:57 -07:00
/**
2026-07-03 07:41:24 -07:00
* The structural signature the two sides must share, as ordered sequences so
* a swap or a level change is caught, not just a count change. Prose is
* deliberately absent: the gate checks shape, never wording.
2026-07-03 02:06:57 -07:00
*/
interface Signature {
/** Heading depths in document order (h2 → 2). */
headings : number [ ]
/** Fenced code blocks verbatim: info string + content, in order. */
code : string [ ]
/** Column count of each table, in order. */
tables : number [ ]
/** Each list's kind (ordered vs bullet), in order. */
lists : string [ ]
/** Every link target in order, the language switcher's excluded. */
links : string [ ]
2026-07-02 23:12:25 -07:00
}
2026-07-03 02:06:57 -07:00
/** Whether the tree contains a link to exactly `target` (the switcher check). */
2026-07-02 23:12:25 -07:00
function linksTo ( tree : Nodes , target : string ) : boolean {
let found = false
const visit = ( node : Nodes ) : void = > {
if ( node . type === 'link' && node . url === target ) found = true
if ( 'children' in node ) for ( const child of node . children ) visit ( child )
}
visit ( tree )
return found
}
2026-07-03 02:06:57 -07:00
/** Collect the structural signature, skipping links to `switcherTarget`. */
function signatureOf ( tree : Nodes , switcherTarget : string ) : Signature {
const sig : Signature = { headings : [ ] , code : [ ] , tables : [ ] , lists : [ ] , links : [ ] }
2026-07-02 23:12:25 -07:00
const visit = ( node : Nodes ) : void = > {
2026-07-03 02:06:57 -07:00
switch ( node . type ) {
case 'heading' :
sig . headings . push ( node . depth )
break
case 'code' :
sig . code . push ( ` \` \` \` ${ node . lang ? ? '' } ${ node . meta ? ` ${ node . meta } ` : '' } \ n ${ node . value } ` )
break
case 'table' :
sig . tables . push ( node . children [ 0 ] ? . children . length ? ? 0 )
break
case 'list' :
sig . lists . push ( node . ordered ? 'ordered' : 'bullet' )
break
case 'link' :
if ( node . url !== switcherTarget ) sig . links . push ( node . url )
break
default :
// Every other node kind is prose or container — not part of the signature.
break
}
2026-07-02 23:12:25 -07:00
if ( 'children' in node ) for ( const child of node . children ) visit ( child )
}
visit ( tree )
2026-07-03 02:06:57 -07:00
return sig
}
/** Render a signature element for an error message, truncated for readability. */
function show ( value : string | number | undefined ) : string {
if ( value === undefined ) return 'nothing'
const text = JSON . stringify ( value )
return text . length > 72 ? ` ${ text . slice ( 0 , 72 ) } … ` : text
}
/** First divergence between two signatures, as messages; empty when identical. */
function signatureDiff ( source : Signature , zh : Signature ) : string [ ] {
const out : string [ ] = [ ]
const fields : [ string , ( string | number ) [ ] , ( string | number ) [ ] ] [ ] = [
[ 'heading (depth)' , source . headings , zh . headings ] ,
[ 'code block' , source . code , zh . code ] ,
[ 'table (column count)' , source . tables , zh . tables ] ,
[ 'list (kind)' , source . lists , zh . lists ] ,
[ 'link target' , source . links , zh . links ] ,
]
for ( const [ field , s , z ] of fields ) {
const length = Math . max ( s . length , z . length )
for ( let i = 0 ; i < length ; i ++ ) {
if ( s [ i ] !== z [ i ] ) {
2026-07-03 07:41:24 -07:00
out . push ( ` ${ field } # ${ i + 1 } diverges between the pair: ${ show ( s [ i ] ) } vs ${ show ( z [ i ] ) } ` )
2026-07-03 02:06:57 -07:00
break
}
}
}
return out
2026-07-02 23:12:25 -07:00
}
function parse ( content : string ) : Nodes {
return fromMarkdown ( content , { extensions : [ gfm ( ) ] , mdastExtensions : [ gfmFromMarkdown ( ) ] } )
}
2026-07-03 07:41:24 -07:00
// Enumerate the scope once.
2026-07-02 23:12:25 -07:00
const files = new Set < string > ( )
for ( const pattern of SCOPE_PATTERNS ) {
2026-07-06 12:16:31 +08:00
for ( const match of globSync ( pattern , { cwd : root } ) ) files . add ( match )
2026-07-02 23:12:25 -07:00
}
const translations = [ . . . files ] . filter ( f = > f . endsWith ( '.zh.md' ) ) . sort ( )
2026-07-03 07:41:24 -07:00
const metas = [ . . . files ] . filter ( f = > f . endsWith ( '.i18n.yaml' ) ) . sort ( )
const sources = [ . . . files ] . filter ( f = > f . endsWith ( '.md' ) && ! f . endsWith ( '.zh.md' ) ) . sort ( )
// --write: (re)record both hashes for every complete pair, creating missing records.
if ( writeMode ) {
let written = 0
for ( const source of sources ) {
if ( isExcluded ( source ) ) continue
const { zh , meta } = pairPaths ( source )
if ( ! existsSync ( join ( root , zh ) ) ) continue
const record = renderMeta ( source , blobHash ( readFileSync ( join ( root , source ) ) ) , zh , blobHash ( readFileSync ( join ( root , zh ) ) ) )
if ( existsSync ( join ( root , meta ) ) && readFileSync ( join ( root , meta ) , 'utf8' ) === record ) continue
writeFileSync ( join ( root , meta ) , record )
console . log ( ` verify-translation-pairing: recorded ${ meta } ` )
written ++
}
console . log ( ` verify-translation-pairing: ${ written } record(s) written; run the check to validate the pairs. ` )
process . exit ( 0 )
}
2026-07-02 23:12:25 -07:00
const errors : string [ ] = [ ]
2026-07-03 07:41:24 -07:00
const state = new Map < string , 'ok' | 'out-of-sync' | 'missing' > ( )
2026-07-02 23:12:25 -07:00
// 1. Required pairs exist.
for ( const req of manifest . required ) {
if ( ! existsSync ( join ( root , req ) ) ) {
errors . push ( ` ${ req } : listed in translation-pairing.manifest.json \` required \` but the file does not exist ` )
continue
}
2026-07-03 07:41:24 -07:00
const { zh } = pairPaths ( req )
2026-07-02 23:12:25 -07:00
if ( ! existsSync ( join ( root , zh ) ) ) {
errors . push ( ` ${ req } : required to have a translation, but ${ zh } does not exist ` )
state . set ( req , 'missing' )
}
}
2026-07-04 05:41:18 -07:00
// 2. Date-named documents (RFCs) dated on/after the requiredSince cutoff merge
// bilingual: a new RFC lands with its pair or not at all. Deterministic from
// the filename alone — no git history, so it holds on shallow CI checkouts.
2026-07-13 20:37:21 -07:00
const DATED = /(?:^|\/)(\d{4}-\d{2}-\d{2})-[^/]*\.md$/
2026-07-04 05:41:18 -07:00
for ( const source of sources ) {
if ( isExcluded ( source ) ) continue
const dated = DATED . exec ( source )
if ( ! dated ? . [ 1 ] || dated [ 1 ] < manifest . requiredSince ) continue
const { zh } = pairPaths ( source )
if ( ! existsSync ( join ( root , zh ) ) ) {
errors . push ( ` ${ source } : dated ${ dated [ 1 ] } — documents dated on/after ${ manifest . requiredSince } merge bilingual (docs/i18n/README.md); add the counterpart and record the pair ` )
state . set ( source , 'missing' )
}
}
// 3. Every pair that exists at all is complete and consistent. Anchor on the
2026-07-03 07:41:24 -07:00
// union of .zh.md files and .i18n.yaml records so a half-deleted pair is
// caught from either remnant.
const pairAnchors = new Set < string > ( )
for ( const zh of translations ) pairAnchors . add ( zh . replace ( /\.zh\.md$/ , '.md' ) )
for ( const meta of metas ) pairAnchors . add ( meta . replace ( /\.i18n\.yaml$/ , '.md' ) )
for ( const source of [ . . . pairAnchors ] . sort ( ) ) {
const { zh , meta } = pairPaths ( source )
const have = { source : existsSync ( join ( root , source ) ) , zh : existsSync ( join ( root , zh ) ) , meta : existsSync ( join ( root , meta ) ) }
2026-07-02 23:12:25 -07:00
if ( isExcluded ( source ) ) {
2026-07-03 07:41:24 -07:00
if ( have . zh ) errors . push ( ` ${ zh } : ${ source } is excluded from pairing (generated or bilingual-by-construction); this translation must not exist ` )
if ( have . meta ) errors . push ( ` ${ meta } : ${ source } is excluded from pairing; this consistency record must not exist ` )
2026-07-02 23:12:25 -07:00
continue
}
2026-07-03 07:41:24 -07:00
const missing = Object . entries ( have ) . filter ( ( [ , ok ] ) = > ! ok ) . map ( ( [ k ] ) = > ( k === 'source' ? source : k === 'zh' ? zh : meta ) )
if ( missing . length > 0 ) {
errors . push ( ` ${ source } : incomplete pair — missing ${ missing . join ( ', ' ) } (pairs merge whole: both languages plus the .i18n.yaml record) ` )
2026-07-02 23:12:25 -07:00
continue
}
2026-07-03 07:41:24 -07:00
const sourceContent = readFileSync ( join ( root , source ) )
const zhContent = readFileSync ( join ( root , zh ) )
const record = parseMeta ( readFileSync ( join ( root , meta ) , 'utf8' ) )
if ( ! record || record . size !== 2 || ! record . has ( basename ( source ) ) || ! record . has ( basename ( zh ) ) ) {
errors . push ( ` ${ meta } : malformed consistency record (expected exactly \` ${ basename ( source ) } : <40-hex> \` and \` ${ basename ( zh ) } : <40-hex> \` ) ` )
2026-07-02 23:12:25 -07:00
continue
}
2026-07-03 07:41:24 -07:00
let consistent = true
for ( const [ file , content ] of [ [ source , sourceContent ] , [ zh , zhContent ] ] as const ) {
const current = blobHash ( content )
if ( record . get ( basename ( file ) ) !== current ) {
errors . push ( ` ${ file } : out of sync — content no longer matches the pair's last confirmed-consistent state in ${ meta } (bring the other side along, then re-record with --write) ` )
consistent = false
}
}
if ( ! consistent ) {
state . set ( source , 'out-of-sync' )
2026-07-02 23:12:25 -07:00
continue
}
const sourceTree = parse ( sourceContent . toString ( 'utf8' ) )
2026-07-03 07:41:24 -07:00
const zhTree = parse ( zhContent . toString ( 'utf8' ) )
2026-07-02 23:12:25 -07:00
if ( ! linksTo ( zhTree , basename ( source ) ) ) {
errors . push ( ` ${ zh } : missing language switcher — no link to ${ basename ( source ) } ` )
}
if ( ! linksTo ( sourceTree , basename ( zh ) ) ) {
errors . push ( ` ${ source } : missing language switcher — no link back to ${ basename ( zh ) } ` )
}
2026-07-03 07:41:24 -07:00
for ( const divergence of signatureDiff ( signatureOf ( sourceTree , basename ( zh ) ) , signatureOf ( zhTree , basename ( source ) ) ) ) {
errors . push ( ` ${ source } ↔ ${ zh } : ${ divergence } ` )
2026-07-02 23:12:25 -07:00
}
if ( ! state . has ( source ) ) state . set ( source , 'ok' )
}
2026-07-03 07:41:24 -07:00
// Complete the state map for --list: any in-scope, non-excluded document with no pair yet is backlog.
2026-07-02 23:12:25 -07:00
for ( const source of sources ) {
if ( ! isExcluded ( source ) && ! state . has ( source ) ) state . set ( source , 'missing' )
}
if ( listMode ) {
2026-07-03 07:41:24 -07:00
const order = { 'out-of-sync' : 0 , missing : 1 , ok : 2 } as const
2026-07-02 23:12:25 -07:00
const rows = [ . . . state . entries ( ) ] . sort ( ( a , b ) = > order [ a [ 1 ] ] - order [ b [ 1 ] ] || a [ 0 ] . localeCompare ( b [ 0 ] ) )
for ( const [ file , status ] of rows ) {
const required = manifest . required . includes ( file )
2026-07-04 05:41:18 -07:00
const date = DATED . exec ( file ) ? . [ 1 ]
const tag = required ? ' (required)' : date && date >= manifest . requiredSince ? ' (required by date)' : ' (backlog)'
console . log ( ` ${ status . padEnd ( 11 ) } ${ file } ${ status === 'missing' ? tag : '' } ` )
2026-07-02 23:12:25 -07:00
}
2026-07-03 07:41:24 -07:00
const counts = { 'ok' : 0 , 'out-of-sync' : 0 , 'missing' : 0 }
2026-07-02 23:12:25 -07:00
for ( const status of state . values ( ) ) counts [ status ] ++
2026-07-03 07:41:24 -07:00
console . log ( ` verify-translation-pairing: ${ counts . ok } ok, ${ counts [ 'out-of-sync' ] } out-of-sync, ${ counts . missing } missing (of ${ state . size } in scope) ` )
2026-07-02 23:12:25 -07:00
process . exit ( 0 )
}
if ( errors . length === 0 ) {
2026-07-03 07:41:24 -07:00
console . log ( ` verify-translation-pairing: ${ pairAnchors . size } pair(s) checked against ${ manifest . required . length } required, all consistent. ` )
2026-07-02 23:12:25 -07:00
process . exit ( 0 )
}
console . error ( 'verify-translation-pairing: bilingual pairing contract violated (see docs/i18n/README.md):' )
for ( const message of errors ) console . error ( ` ${ message } ` )
process . exit ( 1 )