const assert = require("assert"); const fs = require("fs"); const path = require("path"); const { classifyChangeRecords, classifyChangedFiles, classifyPathPolicy, classifyShadowImpact, extractChangelogSection, getDirectDerivedChanges, hasIssueLink, hasQualityChecklist, requiresReferencesValidation, } = require("../../lib/workflow-contract"); const ZERO_OID = "0".repeat(40); const OLD_OID = "1".repeat(40); const NEW_OID = "2".repeat(40); function addedRecord(filePath, overrides = {}) { return { status: "A", old_path: null, new_path: filePath, old_mode: "000000", new_mode: "100644", old_oid: ZERO_OID, new_oid: NEW_OID, new_size: 128, ...overrides, }; } function modifiedRecord(filePath, overrides = {}) { return { status: "M", old_path: filePath, new_path: filePath, old_mode: "100644", new_mode: "100644", old_oid: OLD_OID, new_oid: NEW_OID, old_size: 128, new_size: 256, ...overrides, }; } const contract = { derivedFiles: [ "CATALOG.md", "skills_index.json", "data/skills_index.json", "data/catalog.json", "data/bundles.json", "data/plugin-compatibility.json", "data/aliases.json", ".agents/plugins/", ".claude-plugin/plugin.json", ".claude-plugin/marketplace.json", "plugins/", ], mixedFiles: ["README.md"], releaseManagedFiles: ["CHANGELOG.md", "package.json", "package-lock.json", "README.md"], }; assert.deepStrictEqual( classifyShadowImpact([modifiedRecord("skills/example/SKILL.md")], contract), { profile: "narrow-skill", reasons: [] }, ); assert.deepStrictEqual( classifyShadowImpact([modifiedRecord("docs/users/guide.md")], contract), { profile: "narrow-docs", reasons: [] }, ); assert.strictEqual( classifyShadowImpact([modifiedRecord("skills/example/SKILL.md"), modifiedRecord("docs/users/guide.md")], contract).profile, "full", ); assert.strictEqual( classifyShadowImpact([modifiedRecord("tools/scripts/pr_preflight.cjs")], contract).profile, "full", ); assert.strictEqual( classifyShadowImpact([addedRecord("walkthrough.md")], contract).profile, "full", ); assert.deepStrictEqual( classifyShadowImpact([modifiedRecord("unclassified.bin")], contract), { profile: "unknown", reasons: ["unclassified_path"] }, ); const repositoryRoot = path.resolve(__dirname, "..", "..", ".."); const agentInstructions = fs.readFileSync(path.join(repositoryRoot, "AGENTS.md"), "utf8"); const maintenanceGuide = fs.readFileSync(path.join(repositoryRoot, ".github", "MAINTENANCE.md"), "utf8"); for (const instructions of [agentInstructions, maintenanceGuide]) { assert.match(instructions, /current[- ]base/i); assert.match(instructions, /must exist on the current task base/i); assert.match(instructions, /do not|never import/i); assert.match(instructions, /another branch, worktree, stash, installed copy, or historical commit/i); } assert.doesNotMatch(agentInstructions, /review:skills:local|local-skill-reviewer-policy/); assert.doesNotMatch(maintenanceGuide, /review:skills:local|local-skill-reviewer-policy/); const maintainerSkill = fs.readFileSync( path.join(repositoryRoot, "skills", "antigravity-maintainer-batch-release", "SKILL.md"), "utf8", ); const mergeBatchGuide = fs.readFileSync(path.join(repositoryRoot, "docs", "maintainers", "merge-batch.md"), "utf8"); const mergingGuide = fs.readFileSync(path.join(repositoryRoot, "docs", "maintainers", "merging-prs.md"), "utf8"); const autonomyGuide = fs.readFileSync(path.join(repositoryRoot, "docs", "maintainers", "pr-autonomy.md"), "utf8"); const maintainerSkillUi = fs.readFileSync( path.join(repositoryRoot, "skills", "antigravity-maintainer-batch-release", "agents", "openai.yaml"), "utf8", ); for (const contractText of [maintainerSkill, maintenanceGuide, mergeBatchGuide, mergingGuide, autonomyGuide]) { assert.match(contractText, /skills\/\*\*|skills\/\/\*\*/); } assert.match(maintainerSkill, /entire tracked `skills\/\/\*\*` subtree/); assert.match(maintainerSkill, /authored by the repository owner/); assert.match(maintainerSkill, /exactly one merged release PR/); assert.match(maintenanceGuide, /canonical-repo-state` PR owns that state/); assert.match(autonomyGuide, /complete nearest skill-directory fingerprint/); for (const contractText of [maintainerSkill, maintenanceGuide, mergeBatchGuide, autonomyGuide]) { assert.doesNotMatch(contractText, /may normalize the PR body|close\/reopen the PR|retries `Base branch was modified`/); assert.match(contractText, /does not (?:rewrite|mutate).*PR (?:body|metadata)|PR-body rewriting or normalization/); assert.match(contractText, /does not retry base drift|does not .*retry base drift|no automatic retry/); } assert.doesNotMatch(maintenanceGuide, /runs the mandatory post-merge `sync:contributors`/); assert.match(maintenanceGuide, /hands contributor\/generated drift to the protected canonical-sync lane/); assert.match(maintenanceGuide, /`npm run chain` already includes catalog generation/); assert.doesNotMatch(maintenanceGuide, /npm run chain\n\s+npm run catalog/); assert.match(autonomyGuide, /explicitly dispatches main CI and CodeQL/); assert.match(autonomyGuide, /Pages remains release-only/); for (const contractText of [maintainerSkill, maintenanceGuide, mergeBatchGuide, autonomyGuide]) { assert.match(contractText, /protected[- ]base|protected base/); assert.match(contractText, /impact_profile.*shadow|shadow-only.*impact_profile/s); assert.match(contractText, /source-validation.*lightweight/s); assert.match(contractText, /required CI.*(?:complete|full).*unsharded/is); } assert.match(maintenanceGuide, /merge:batch.*only fork-run approval and merge authority/); assert.match(mergeBatchGuide, /merge:batch.*only command allowed to approve fork runs or merge/s); assert.match(autonomyGuide, /merge:batch.*sole authority for fork-run approval and merge/s); assert.match(maintainerSkill, /merge:batch.*recompute the current trusted decision/s); for (const contractText of [maintenanceGuide, mergeBatchGuide, autonomyGuide]) { assert.match(contractText, /source-validation.*(?:refresh|generate|generated-state).*once|(?:refresh|generate|generated-state).*once.*source-validation/s); assert.match(contractText, /artifact-preview.*(?:verif(?:y|ies).*manifest|manifest.*verif(?:y|ies))/s); assert.match(contractText, /final (?:CI and CodeQL|`main` CI and CodeQL)/i); } assert.match(autonomyGuide, /timing telemetry/); assert.match(autonomyGuide, /npm run test:local -- --shard-index N --shard-count M/); assert.match(mergingGuide, /No local-integration exception/); assert.doesNotMatch(mergingGuide, /Rare exception: local squash|`gh pr merge /); assert.match(maintainerSkillUi, /\$antigravity-maintainer-batch-release/); assert.doesNotMatch(maintainerSkillUi, /frozen matrix|product, verifier, and gold|recommend|rank/i); assert.match(maintainerSkill, /discover every already-configured local AAS MCP host from its real configuration and update each one to the exact same package version/); assert.match(maintainerSkill, /Pin `agentic-awesome-skills@X\.Y\.Z` and `--version X\.Y\.Z`; never use `latest`/); assert.match(maintainerSkill, /real MCP `initialize` plus `tools\/list` handshake reports catalog package version `X\.Y\.Z`/); assert.match(maintainerSkill, /Every stable or prerelease version requires full release alignment/); assert.match(maintainerSkill, /npm run sync:release-state`, `npm run plugin-compat:check`, and `npm run bundles:check`/); assert.match(maintainerSkill, /every published Codex\/Claude plugin mirror and editorial-bundle manifest/); assert.match(maintainerSkill, /explicitly dispatched release-only Pages build/); assert.match(maintainerSkill, /final generator pass must be idempotent/); assert.match(agentInstructions, /Every stable or prerelease version must finish with the full-release-alignment gate/); assert.match(maintenanceGuide, /Run the mandatory full-release-alignment gate/); const releaseProcess = fs.readFileSync( path.join(repositoryRoot, "docs", "maintainers", "release-process.md"), "utf8", ); assert.match(releaseProcess, /Complete the mandatory full-release-alignment gate/); assert.match(releaseProcess, /Any mismatch, inaccessible configured host, or stale public surface keeps the release incomplete/); const publishWorkflow = fs.readFileSync( path.resolve(__dirname, "..", "..", "..", ".github", "workflows", "publish-npm.yml"), "utf8", ); assert.match(publishWorkflow, /name: Verify release identity/); assert.match(publishWorkflow, /GITHUB_REF_TYPE" = "tag/); assert.match(publishWorkflow, /expected_tag="v\$\(node -p/); const pagesWorkflow = fs.readFileSync( path.resolve(__dirname, "..", "..", "..", ".github", "workflows", "pages.yml"), "utf8", ); assert.match(pagesWorkflow, /^on:\s*\n\s+workflow_dispatch:/m); assert.doesNotMatch(pagesWorkflow, /^\s+push:/m); assert.match(pagesWorkflow, /permissions:\s*\n\s+contents: read\s*\n\s+pages: write\s*\n\s+id-token: write/); const pagesCheckoutIndex = pagesWorkflow.indexOf("- name: Checkout"); const pagesProvenanceIndex = pagesWorkflow.indexOf("- name: Verify release provenance"); const pagesSetupIndex = pagesWorkflow.indexOf("- name: Setup Node"); assert.ok( pagesCheckoutIndex >= 0 && pagesCheckoutIndex < pagesProvenanceIndex && pagesProvenanceIndex < pagesSetupIndex, "Pages must fail closed on release provenance immediately after checkout and before setup/install work", ); for (const provenanceContract of [ /GH_TOKEN: \$\{\{ github\.token \}\}/, /GITHUB_REF_TYPE[^\n]+tag/, /GITHUB_REF_NAME[^\n]+\^v\[0-9\]\+\\\.\[0-9\]\+\\\.\[0-9\]\+\$/, /expected_tag="v\$\{package_version\}"/, /refs\/tags\/\$\{GITHUB_REF_NAME\}\^\{commit\}/, /tag_commit[^\n]+GITHUB_SHA[^\n]+head_commit[^\n]+GITHUB_SHA/, /gh api --method GET "repos\/\$\{GITHUB_REPOSITORY\}\/releases\/tags\/\$\{GITHUB_REF_NAME\}"/, /\.draft == false/, /\.published_at/, ]) { assert.match(pagesWorkflow, provenanceContract); } for (const command of [ "npm run validate:strict", "npm run validate:glossary", "npm run validate:references", "npm run audit:consistency", "npm run security:scan:strict", "npm run plugin-compat:check", "npm run bundles:check", "npm run test", "npm run app:test:coverage", ]) { assert.match(pagesWorkflow, new RegExp(command.replace(/[.*+?^${}()|[\\]\\]/g, "\\$&"))); } assert.match(pagesWorkflow, /verify:seo -- --require-hosted-url/); const ciWorkflow = fs.readFileSync( path.resolve(__dirname, "..", "..", "..", ".github", "workflows", "ci.yml"), "utf8", ); const latestHeadConcurrency = [ "concurrency:", " group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && format('pr-{0}', github.event.pull_request.number) || format('run-{0}', github.run_id) }}", " cancel-in-progress: ${{ github.event_name == 'pull_request' }}", ].join("\n"); for (const workflowPath of [ ".github/workflows/ci.yml", ".github/workflows/codeql.yml", ".github/workflows/dependency-review.yml", ".github/workflows/skill-review.yml", ".github/workflows/aas-agent-first-preview.yml", ".github/workflows/actionlint.yml", ]) { const workflow = fs.readFileSync(path.resolve(__dirname, "..", "..", "..", workflowPath), "utf8"); assert.ok( workflow.includes(latestHeadConcurrency), `${workflowPath} must cancel superseded PR heads while keeping every non-PR run in a unique concurrency group`, ); } assert.doesNotMatch( ciWorkflow, /ENABLE_NETWORK_TESTS:\s*["']1["']/, "PR and push CI must not depend on mutable upstream network clones", ); assert.match(ciWorkflow, /^permissions:\n contents: read$/m); assert.match( ciWorkflow, /source-validation:[\s\S]*?- name: Refresh ephemeral derived sources for tests\n\s+if: env\.IS_TRUSTED_CANONICAL_SYNC_PR != 'true'\n\s+run: npm run plugin-compat:sync && npm run index && npm run bundles:sync && npm run sync:metadata && npm run catalog && npm run build:aas-v1-catalog && npm run sync:web-assets\n[\s\S]*?- name: Run tests\n\s+if: env\.IS_TRUSTED_CANONICAL_SYNC_PR != 'true'\n\s+run: npm run test/, "source-only skill PRs must refresh uncommitted mirrors and indexes before tests read them", ); assert.doesNotMatch( ciWorkflow, /build:aas-v1-review-queue|metadata-overrides\.v1\.json|review-queue\.v1\.json/, "CI should not rebuild retired Core policy or review assets", ); assert.match(ciWorkflow, /name: pr-evidence-/); assert.doesNotMatch(ciWorkflow, /pull_request_target:/); assert.match(ciWorkflow, /actions\/download-artifact@[0-9a-f]{40}/); const prEvidenceJob = ciWorkflow.match(/^ pr-evidence:\n([\s\S]*?)(?=^ artifact-preview:)/m)?.[0] || ""; assert.ok(prEvidenceJob, "pr-evidence job must exist"); assert.doesNotMatch(prEvidenceJob, /(?:contents|pull-requests|actions): write/); assert.doesNotMatch(prEvidenceJob, /secrets\./); for (const stepName of ["Set up Python", "Set up Node", "Install trusted dependencies", "Fetch base branch"]) { assert.match( prEvidenceJob, new RegExp(`- name: ${stepName}\\n\\s+if: env\\.IS_TRUSTED_CANONICAL_SYNC_PR != 'true'`), `${stepName} must be skipped for canonical-sync evidence`, ); } assert.match( prEvidenceJob, /- uses: actions\/checkout@[0-9a-f]{40}[^\n]*\n\s+if: env\.IS_TRUSTED_CANONICAL_SYNC_PR != 'true'/, "canonical-sync evidence must not perform an unused checkout", ); assert.match( prEvidenceJob, /- name: Record canonical-sync evidence boundary\n\s+if: env\.IS_TRUSTED_CANONICAL_SYNC_PR == 'true'/, "canonical-sync evidence must retain its explicit successful boundary record", ); const sourceValidationJob = ciWorkflow.match(/^ source-validation:\n([\s\S]*?)(?=^ pr-evidence:)/m)?.[0] || ""; assert.match(sourceValidationJob, /needs: pr-policy/, "source validation should not wait for independent PR evidence"); assert.doesNotMatch(sourceValidationJob, /needs:.*pr-evidence/); assert.match( sourceValidationJob, /actions\/checkout@[0-9a-f]{40}[\s\S]*?ref: \$\{\{ github\.event\.pull_request\.head\.sha \}\}/, "source validation must generate its preview from the exact PR head instead of GitHub's synthetic merge commit", ); assert.match(sourceValidationJob, /preview_manifest_digest: \$\{\{ steps\.preview_manifest\.outputs\.manifest_digest \}\}/); assert.match(sourceValidationJob, /ci_artifact_preview\.cjs create/); assert.match(sourceValidationJob, /actions\/upload-artifact@[0-9a-f]{40}/); assert.match( sourceValidationJob, /- name: Record canonical source-validation boundary\n\s+if: env\.IS_TRUSTED_CANONICAL_SYNC_PR == 'true'/, "canonical source validation should become a lightweight boundary record after pr-policy exact-tree reproduction", ); const artifactPreviewJob = ciWorkflow.match(/^ artifact-preview:\n([\s\S]*?)(?=^ main-validation-and-sync:)/m)?.[0] || ""; assert.match(artifactPreviewJob, /needs: \[pr-policy, source-validation\]/); assert.match(artifactPreviewJob, /ref: \$\{\{ github\.event\.pull_request\.head\.sha \|\| github\.sha \}\}/); assert.match( artifactPreviewJob, /- name: Download exact-head artifact preview manifest[\s\S]*?actions\/download-artifact@[0-9a-f]{40}[\s\S]*?- name: Verify and report exact-head artifact preview[\s\S]*?ci_artifact_preview\.cjs" verify-summary/, "artifact preview should consume and verify the source-validation manifest instead of regenerating the same tree", ); assert.doesNotMatch( artifactPreviewJob, /npm run chain|Generate canonical artifacts preview/, "artifact preview must not regenerate normal source-PR artifacts", ); assert.match(artifactPreviewJob, /- name: Reproduce canonical-sync PR from main\n\s+if: env\.IS_TRUSTED_CANONICAL_SYNC_PR == 'true'/); assert.match(artifactPreviewJob, /- name: Report generated drift\n\s+if: env\.IS_TRUSTED_CANONICAL_SYNC_PR == 'true'/); const decisionModule = fs.readFileSync( path.resolve(__dirname, "..", "..", "lib", "pr-decision.js"), "utf8", ); assert.match(decisionModule, /untrusted_advisory: true/); const skillReviewWorkflow = fs.readFileSync( path.resolve(__dirname, "..", "..", "..", ".github", "workflows", "skill-review.yml"), "utf8", ); assert.match(skillReviewWorkflow, /^permissions:\n contents: read$/m); assert.match(skillReviewWorkflow, /^ review-attempt:$/m); assert.match(skillReviewWorkflow, /^ review:$/m); assert.match(skillReviewWorkflow, /^ manual-review-required:$/m); assert.doesNotMatch(skillReviewWorkflow, /^ missing-review-credentials:$/m); assert.match( skillReviewWorkflow, /needs\.review-attempt\.outputs\.outcome != 'reviewed'/, "every non-passing Tessl outcome must route to exact-head manual review", ); assert.match(skillReviewWorkflow, /paths:\s*\n\s+- 'skills\/\*\*'\s*\n\s+- 'plugins\/\*\*\/skills\/\*\*'/); assert.match(skillReviewWorkflow, /steps\.plan\.outputs\.requires-manual != 'true'/); assert.match(skillReviewWorkflow, /REQUIRES_MANUAL: \$\{\{ steps\.plan\.outputs\.requires-manual \}\}/); assert.match(skillReviewWorkflow, /result=manual/); assert.match(skillReviewWorkflow, /needs\.review-state\.outputs\.configured != 'true'/); assert.match(skillReviewWorkflow, /ref: \$\{\{ github\.event\.pull_request\.base\.sha \}\}/); assert.match(skillReviewWorkflow, /review_changed_skills\.cjs --plan/); assert.match(skillReviewWorkflow, /actions\/cache\/restore@[0-9a-f]{40}/); assert.match(skillReviewWorkflow, /actions\/cache\/save@[0-9a-f]{40}/); assert.match(skillReviewWorkflow, /tessl-review-v2-\$\{\{ steps\.plan\.outputs\.fingerprint \}\}/); assert.match(skillReviewWorkflow, /steps\.review-cache\.outputs\.cache-hit != 'true'/); assert.match(skillReviewWorkflow, /needs\.review-attempt\.outputs\.outcome == 'reviewed'/); assert.ok( skillReviewWorkflow.indexOf("- name: Checkout pull request content") < skillReviewWorkflow.indexOf("- name: Checkout trusted base scripts"), "trusted-base checkout must happen after the root checkout so it cannot be cleaned away", ); assert.doesNotMatch(skillReviewWorkflow, /pull_request_target:/); assert.doesNotMatch(skillReviewWorkflow, /(?:contents|pull-requests|actions): write/); const skillOnly = classifyChangedFiles(["skills/example/SKILL.md"], contract); assert.deepStrictEqual(skillOnly.categories, ["skill"]); assert.strictEqual(skillOnly.primaryCategory, "skill"); assert.strictEqual(requiresReferencesValidation(["skills/example/SKILL.md"], contract), false); const docsOnly = classifyChangedFiles(["README.md", "docs/users/faq.md"], contract); assert.deepStrictEqual(docsOnly.categories, ["docs"]); assert.strictEqual(docsOnly.primaryCategory, "docs"); assert.strictEqual(requiresReferencesValidation(["README.md"], contract), true); const infraChange = classifyChangedFiles([".github/workflows/ci.yml", "tools/scripts/pr_preflight.cjs"], contract); assert.deepStrictEqual(infraChange.categories, ["infra"]); assert.strictEqual(infraChange.primaryCategory, "infra"); assert.strictEqual(requiresReferencesValidation(["tools/scripts/pr_preflight.cjs"], contract), true); const mixedChange = classifyChangedFiles(["skills/example/SKILL.md", "README.md"], contract); assert.deepStrictEqual(mixedChange.categories, ["skill", "docs"]); assert.strictEqual(mixedChange.primaryCategory, "skill"); assert.deepStrictEqual( getDirectDerivedChanges(["skills/example/SKILL.md", "data/catalog.json"], contract), ["data/catalog.json"], ); assert.deepStrictEqual( getDirectDerivedChanges( [ "plugins/agentic-awesome-skills/skills/docx-official/ooxml/scripts/unpack.py", ".agents/plugins/marketplace.json", "skills/example/SKILL.md", ], contract, ), [ "plugins/agentic-awesome-skills/skills/docx-official/ooxml/scripts/unpack.py", ".agents/plugins/marketplace.json", ], ); const changelog = [ "## [7.7.0] - 2026-03-13 - \"Merge Friction Reduction\"", "", "- Line one", "", "## [7.6.0] - 2026-03-01 - \"Older Release\"", "", "- Older line", "", ].join("\n"); assert.strictEqual( extractChangelogSection(changelog, "7.7.0"), "## [7.7.0] - 2026-03-13 - \"Merge Friction Reduction\"\n\n- Line one\n", ); assert.strictEqual(hasQualityChecklist("## Quality Bar Checklist\n- [x] Standards"), true); assert.strictEqual(hasQualityChecklist("No template here"), false); assert.strictEqual(hasIssueLink("Fixes #123"), true); assert.strictEqual(hasIssueLink("Related to #123"), false); for (const [filePath, expectedKind] of [ ["skills/example/SKILL.md", "canonical_skill"], ["skills/design-it/glassmorphism/SKILL.md", "canonical_skill"], ["skills/example/references/guide.md", "skill_support"], ["skills/design-it/glassmorphism/references/guide.md", "skill_support"], ["skills/example/assets/screenshot.png", "skill_support"], ["README.md", "documentation"], ["docs/users/faq.md", "documentation"], ]) { const policy = classifyPathPolicy(filePath); assert.strictEqual(policy.approvalSafe, true, filePath); assert.strictEqual(policy.kind, expectedKind, filePath); } for (const [filePath, reason] of [ [".github/workflows/ci.yml", "unapproved_path"], ["tools/scripts/check.js", "unapproved_path"], ["skills/example/references/run.py", "unknown_extension"], ["skills/example\\references\\guide.md", "backslash_path"], ["skills/example/references/../SKILL.md", "noncanonical_path"], ["skills/design-it/glassmorphism/references/../../escape.md", "noncanonical_path"], ["/skills/example/SKILL.md", "absolute_path"], ["skills/example/references/guide\n.md", "control_character_path"], ]) { const policy = classifyPathPolicy(filePath); assert.strictEqual(policy.approvalSafe, false, filePath); assert.ok(policy.reasons.includes(reason), `${filePath}: ${policy.reasons.join(",")}`); } { const policy = classifyChangeRecords([addedRecord("skills/example/SKILL.md")]); assert.strictEqual(policy.approvalSafe, true); assert.strictEqual(policy.requiresHumanReview, true); assert.deepStrictEqual(policy.canonicalSkillChanges, ["skills/example/SKILL.md"]); } { const record = addedRecord("docs/users/no-size.md"); delete record.new_size; assert.strictEqual(classifyChangeRecords([record]).approvalSafe, false); assert.strictEqual( classifyChangeRecords([record], { requireBlobSizes: false }).approvalSafe, true, ); } { const policy = classifyChangeRecords([ modifiedRecord("skills/example/references/guide.md"), ]); assert.strictEqual(policy.approvalSafe, true); assert.strictEqual(policy.requiresHumanReview, true); assert.deepStrictEqual(policy.canonicalSkillChanges, []); assert.deepStrictEqual(policy.skillContentChanges, ["skills/example/references/guide.md"]); } { const policy = classifyChangeRecords([ { status: "R", old_path: "skills/example/references/old.md", new_path: "skills/example/references/new.md", old_mode: "100644", new_mode: "100644", old_oid: OLD_OID, new_oid: NEW_OID, old_size: 100, new_size: 100, }, { status: "C", old_path: "docs/users/faq.md", new_path: "docs/users/faq-copy.md", old_mode: "100644", new_mode: "100644", old_oid: OLD_OID, new_oid: NEW_OID, old_size: 100, new_size: 100, }, ]); assert.strictEqual(policy.approvalSafe, true); } { const policy = classifyChangeRecords([{ status: "R", old_path: "skills/design-it/old-style/SKILL.md", new_path: "skills/design-it/new-style/SKILL.md", old_mode: "100644", new_mode: "100644", old_oid: OLD_OID, new_oid: NEW_OID, old_size: 100, new_size: 100, }]); assert.strictEqual(policy.approvalSafe, true); assert.strictEqual(policy.requiresHumanReview, true); assert.deepStrictEqual(policy.canonicalSkillChanges, [ "skills/design-it/new-style/SKILL.md", "skills/design-it/old-style/SKILL.md", ]); } { const policy = classifyChangeRecords([{ status: "D", old_path: "docs/users/obsolete.md", new_path: null, old_mode: "100644", new_mode: "000000", old_oid: OLD_OID, new_oid: ZERO_OID, old_size: 42, }]); assert.strictEqual(policy.approvalSafe, true); } for (const [label, record, reason] of [ ["executable", modifiedRecord("skills/example/references/guide.md", { new_mode: "100755" }), "new_executable_mode"], ["symlink", addedRecord("skills/example/references/link.md", { new_mode: "120000" }), "new_symlink_mode"], ["gitlink", addedRecord("skills/example/references/vendor.md", { new_mode: "160000" }), "new_gitlink_mode"], ["unknown mode", addedRecord("skills/example/references/guide.md", { new_mode: "100664" }), "new_unknown_mode"], ["oversized", addedRecord("skills/example/assets/large.pdf", { new_size: 1024 * 1024 + 1 }), "new_oversized_blob"], ["unknown extension", addedRecord("skills/example/references/run.sh"), "new_unknown_extension"], ["sensitive path", addedRecord("tools/scripts/check.md"), "new_unapproved_path"], ["mode only", modifiedRecord("skills/example/references/guide.md", { new_mode: "100755", new_oid: OLD_OID }), "new_executable_mode"], ["unknown status", modifiedRecord("skills/example/SKILL.md", { status: "X" }), "unknown_status"], ]) { const policy = classifyChangeRecords([record]); assert.strictEqual(policy.approvalSafe, false, label); assert.ok(policy.reasons.some((entry) => entry.includes(reason)), `${label}: ${policy.reasons.join(",")}`); } { const policy = classifyChangeRecords([ modifiedRecord("skills/example/references/guide.md"), addedRecord(".github/workflows/steal.yml"), ]); assert.strictEqual(policy.approvalSafe, false); assert.strictEqual(policy.sensitive, true); } { const records = [ modifiedRecord("docs/users/one.md"), modifiedRecord("docs/users/two.md"), ]; const tooMany = classifyChangeRecords(records, { maxChangeRecords: 1 }); assert.ok(tooMany.reasons.includes("too_many_change_records")); const tooLarge = classifyChangeRecords(records, { maxTotalBlobBytes: 700 }); assert.ok(tooLarge.reasons.includes("oversized_total_diff")); }