Clawhub Publisher
by @shepherd217
Automate skill publishing to ClawHub with versioning, changelog generation, asset bundling, metadata validation, and one-command deployment.
clawhub install clawhub-publisherπ About This Skill
ClawHub Publisher
Version: 1.0.0 Author: Midas Skills License: MIT
Description
Automated skill publishing to ClawHub. Version management, changelog generation, asset bundling, one-command deploy.Value Proposition
Automated skill publishing to ClawHub. Version management, changelog generation, asset bundling, instant deployment.Category
developer-toolsTags
publishing, automation, ci-cd, versioning, deploymentSkill Type
developer-toolPricing
Key Features
Use Cases
Installation
npm install clawhub-publisher
or
pip install clawhub-publisher
Quick Start
const Publisher = require('clawhub-publisher');const publisher = new Publisher({
apiKey: process.env.CLAWHUB_API_KEY,
author: 'Your Name',
gumroadLink: 'https://gumroad.com/your-product'
});
const result = await publisher.publish({
skillPath: './my-skill',
version: '1.0.0',
changelog: 'Initial release with core features'
});
console.log('Published to:', result.clawHubUrl);
Repository
https://github.com/midas-skills/clawhub-publisherSupport
π§ support@midas-skills.com π Docs: https://docs.midas-skills.com/clawhub-publisherβ‘ When to Use
π‘ Examples
const Publisher = require('clawhub-publisher');const publisher = new Publisher({
apiKey: process.env.CLAWHUB_API_KEY,
author: 'Your Name',
gumroadLink: 'https://gumroad.com/your-product'
});
const result = await publisher.publish({
skillPath: './my-skill',
version: '1.0.0',
changelog: 'Initial release with core features'
});
console.log('Published to:', result.clawHubUrl);