What problem does it solve? Turning generated AI artifacts like SKILL.md files and AGENTS.md rules into a distributable, versioned npm package requires repetitive scaffolding of package.json, installer scripts, and manifest tracking. This Skill automates that packaging step so artifacts can be published to AWS CodeArtifact. ## Core Features & Use Cases - Package Scaffolding: Creates the packages/ai-toolkit directory with package.json, pack.yaml, install.js, uninstall.js, and a CLI entry point. - Installer Logic: Implements both npm install symlink mode and npx copy mode, with a manifest tracking installed files for clean uninstalls. - Safety Guardrails: Enforces idempotent operations, avoids hardcoded paths and credentials, and protects user-managed files with sentinel blocks. - Use Case: After generating a code-review skill with /create-skill, run this Skill to wrap it in the @10xdevs/ai-toolkit package ready for CodeArtifact publication. ## Quick Start Initialize the AI toolkit npm package from my generated skills and rules so it can be published to CodeArtifact.