Npm publish config
Skill a5c-ai/babysitter/library/specializations/cli-mcp-development/skills/npm-publish-config
Babysitter enforces obedience on agentic workforces and enables them to manage extremely complex tasks and workflows through deterministic, hallucination-free self-orchestration
npx -y skills add a5c-ai/babysitter --skill npm-publish-configAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Configure npm publishing with proper bin entry, files, and registry settings.
SKILL.md
1.1 KB, as published. Nobody here has run it
NPM Publish Config
Configure npm publishing for CLI packages.
Generated Patterns
{
"name": "@myorg/mycli",
"version": "1.0.0",
"bin": { "mycli": "./dist/index.js" },
"files": ["dist", "README.md", "LICENSE"],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": { "node": ">=18" },
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"prepublishOnly": "npm run build && npm test"
}
}
Target Processes
- package-manager-publishing
- cli-binary-distribution