agents-repo--agents-repo-package-creation--package-script-runner

Executes package creation, validation, and build scripts and returns structured stage reports.

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-script-runner-agents-repo
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agents-repo--agents-repo-package-creation--package-script-runner
Source: https://github.com/agents-repo/registry/tree/main/.cursor/skills/agents-repo/agents-repo-package-creation/agents-repo--agents-repo-package-creation--package-script-runner
Command: npx skills add https://github.com/agents-repo/registry --skill agents-repo-agents-repo-package-creation-package-script-runner-agents-repo

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Running package scaffold, validation, and build commands manually requires remembering exact npm script syntax and interpreting raw console output, which slows down multi-stage package workflows and makes automated flow branching unreliable. ## Core Features & Use Cases - Stage-Based Script Execution: Runs npm run package:create, package:validate, or package:build with the correct namespace and package-id arguments for the requested stage. - Structured Stage Reports: Returns the executed command, exit status (pass or fail), key output excerpts, and a recommended next action for deterministic flow branching. - Failure Routing: Classifies failures and routes them to the appropriate agent, such as package-requirements-analyst for argument issues or package-creator for source definition issues. - Use Case: During a package creation flow, request the validate stage for agents-repo/my-package and receive a structured pass/fail report with the exact command output and next routing step instead of parsing terminal logs yourself. ## Quick Start Run the validate stage for the package agents-repo/my-package and return the structured stage report.

Frequently Asked Questions about agents-repo--agents-repo-package-creation--package-script-runner

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

FAQPage Schema
How do I run package creation and validation scripts in a multi-agent workflow?▼

Submit a script stage request with the namespace, package-id, and stage name (create, validate, or build). The skill executes the matching npm script and returns a structured report with the command, exit status, and recommended next step.

What npm scripts does the package script runner execute?▼

It runs npm run package:create for scaffolding, npm run package:validate for source validation, and npm run package:build for snapshot builds. It does not run validate-artifacts, which is handled by the package-release-gate.

Can the script runner fix package source errors itself?▼

No. It only executes scripts and reports results. Failures are routed to package-requirements-analyst for argument or intent issues, or to package-creator for source definition issues.

What happens when a package build script exits non-zero?▼

The report marks the stage as failed, includes key output excerpts, and classifies the failure type. The skill never claims success for a non-zero exit code and never modifies package files to bypass the failure.

What are the limitations of the package script runner?▼

It cannot create or edit package files manually, cannot run stages outside create, validate, and build, and does not produce qualitative review feedback. It only reports execution results and actionable script errors.