Automated skill publishing to ClawHub. Fix push error issue with acceptLicenseTerms support
Version: 1.0.0
Author: Midas Skills
License: MIT
Automated skill publishing to ClawHub. Version management, changelog generation, asset bundling, one-command deploy.
Automated skill publishing to ClawHub. Version management, changelog generation, asset bundling, instant deployment.
developer-tools
publishing, automation, ci-cd, versioning, deployment
developer-tool
npm install clawhub-publisher
# or
pip install clawhub-publisher
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);