📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-21 00:03:13 +00:00
parent 2c00adccd5
commit 316c012df0
40 changed files with 614 additions and 280 deletions
@@ -76,6 +76,27 @@ for (const instructions of [agentInstructions, maintenanceGuide]) {
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",
);
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",