agents-repo--agents-repo-package-creation--full-package-creation-flow

Orchestrates registry package creation through scaffold, authoring, validation, build, and artifact gate stages.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Creating a new registry package involves many coordinated steps—requirements capture, scaffolding, authoring, review, validation, build, and artifact gating—and doing them manually is error-prone and inconsistent. This Skill orchestrates the entire flow end to end, delegating to specialized agents and using project npm scripts as the authoritative execution path. ## Core Features & Use Cases - Script-driven pipeline: Runs package:create, package:validate, package:build, and package:validate-artifacts in the correct order with revision loops between stages. - Multi-agent delegation: Coordinates requirements analyst, package creator, submission reviewer, script runner, and release gate agents with clear escalation rules. - Structured error handling: Covers invalid IDs, namespace/owner mismatches, flat-path metadata URLs, and repeated script failures with defined recovery paths. - Use Case: Describe a new package you want in the agents registry, and the flow produces a fully authored, reviewed, validated, built, and artifact-gated package source tree. ## Quick Start Ask the assistant to create a new registry package from your description, for example by saying you want to scaffold, validate, build, and release-gate a new package under a given namespace.

Frequently Asked Questions about agents-repo--agents-repo-package-creation--full-package-creation-flow

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

FAQPage Schema
How do I create a new package in the agents registry?▼

Provide a free-form description of your package goals. The flow captures requirements, scaffolds with npm run package:create, authors definitions, validates, builds, and runs the artifact release gate before presenting the finished package source tree.

What scripts does the package creation flow run?▼

It runs npm run package:create for scaffolding, package:validate for structural validation, package:build for the build snapshot, and package:validate-artifacts as the release gate. Scripts are the authoritative execution path; files are never authored manually to bypass scaffolding.

What happens if package validation or build fails?▼

Validation or build failures are routed back to the package-creator agent for fixes, then validation and build are re-run. If the same script stage fails twice with unchanged errors, the command output is surfaced and the user decides whether to retry.

What naming rules apply to package and namespace IDs?▼

Package, agent, and flow IDs must match the pattern ^[a-z0-9]+(?:-[a-z0-9]+)*$ and must not collide across agents and flows. The namespace argument must also match metadata.owner, otherwise the blueprint is sent back for correction.

Can I start the package flow at a later step?▼

Yes. You can provide a partial blueprint, draft file contents, or revision instructions to enter at a later step, and you can exit after any step to invoke specialist agents such as the reviewer or release gate directly.