🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Clawhub Publisher

by @shepherd217

Automate skill publishing to ClawHub with versioning, changelog generation, asset bundling, metadata validation, and one-command deployment.

Versionv1.0.0
Downloads1,676
Installs5
TERMINAL
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-tools

Tags

publishing, automation, ci-cd, versioning, deployment

Skill Type

developer-tool

Pricing

  • Free: $0
  • Pro: $59.99
  • Key Features

  • βœ… One-command skill publishing
  • βœ… Automatic version bumping (major/minor/patch)
  • βœ… Git-powered changelog generation
  • βœ… Multi-file asset bundling
  • βœ… Metadata validation
  • βœ… README optimization
  • βœ… Gumroad link injection
  • βœ… Publishing history & rollback
  • βœ… Skill analytics
  • βœ… Team collaboration support
  • βœ… CI/CD integration (GitHub Actions, etc.)
  • Use Cases

  • Automatic skill versioning & deployment
  • One-command publish workflow
  • Changelog auto-generation
  • Multi-file asset bundling
  • Gumroad integration & upsell linking
  • Skill stats & analytics dashboard
  • Rolling back bad deployments
  • Team publishing workflows
  • 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-publisher

    Support

    πŸ“§ support@midas-skills.com πŸ”— Docs: https://docs.midas-skills.com/clawhub-publisher

    ⚑ When to Use

    TriggerAction
    - One-command publish workflow
    - Changelog auto-generation
    - Multi-file asset bundling
    - Gumroad integration & upsell linking
    - Skill stats & analytics dashboard
    - Rolling back bad deployments
    - Team publishing workflows

    πŸ’‘ 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);