agents-repo--agents-repo-package-creation--package-release-gate

Executes artifact validation scripts and reports release gate pass or fail status.

3|1|Updated May 2, 2026
One-click install
npx skills add https://github.com/agents-repo/registry --skill agents-repo-agents-repo-package-creation-package-release-gate-agents-repo
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agents-repo--agents-repo-package-creation--package-release-gate
Source: https://github.com/agents-repo/registry/tree/main/.cursor/skills/agents-repo/agents-repo-package-creation/agents-repo--agents-repo-package-creation--package-release-gate
Command: npx skills add https://github.com/agents-repo/registry --skill agents-repo-agents-repo-package-creation-package-release-gate-agents-repo

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Determining whether a built registry package is ready for release requires running artifact validation and interpreting the results consistently. This Skill runs the package artifact validation gate and returns a structured pass or fail report with explicit blocking issues, removing ambiguity from release decisions. ## Core Features & Use Cases - Artifact Gate Execution: Runs npm run package:validate-artifacts for a qualified package reference, with support for an explicit semver version override. - Structured Gate Reports: Returns the executed command, exit code, gate result (pass or fail), blocking artifact issues, and a recommended next step. - Strict Failure Handling: Never suppresses or reinterprets script failures as warnings, and never edits version artifacts, checksums, or detail.json files. - Use Case: After building a package like agents-repo/my-package, invoke this gate to confirm the versioned artifacts and checksums validate successfully before publishing a release. ## Quick Start Run the release gate for package agents-repo/my-package and tell me whether it passes or which artifact issues are blocking the release.

Frequently Asked Questions about agents-repo--agents-repo-package-creation--package-release-gate

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I validate package artifacts before a release?▼

Run the artifact validation gate with a qualified package reference in the form namespace/package-id. The gate executes npm run package:validate-artifacts and reports pass only when the script exits successfully, otherwise listing the blocking issues.

How do I run the release gate for a specific package version?▼

Pass an explicit semver version along with the qualified package reference. The gate then runs npm run package:validate-artifacts with the --version flag so the exact release candidate is validated instead of the default.

What does the release gate report contain?▼

The report includes the executed command, its exit code, the gate result as pass or fail, a summary of blocking artifact issues from script output, and a recommended next step for routing the package.

Can the release gate fix or edit failing artifacts?▼

No. The gate only executes validation and reports results. It does not edit versions/ contents, checksums, or detail.json, and it does not run scaffold, source-validate, or build scripts, which belong to the package-script-runner stage.

Why does the release gate report fail even for minor script warnings?▼

The gate marks pass only when artifact validation exits successfully. Script failures are never suppressed or reinterpreted as warnings, so any nonzero exit produces a fail result with the blocking issues listed.