skill-quick-publish
/install skill-quick-publish
Skill Quick Publish
Automate the full skill publishing pipeline: duplicate check → Bear dev-log sync → GitHub push → ClawHub publish.
Prerequisites
clawhubCLI installed and authenticated (clawhub whoami)gitCLI available with push access to target repo- (Optional)
grizzlyCLI for Bear notes sync on macOS
Workflow
Run the main orchestrator script:
bash SKILL_DIR/scripts/publish.sh \x3Cskill-path> [options]
Options
| Flag | Description | Default |
|---|---|---|
--repo \x3Cowner/repo> |
GitHub repo to push to | (required or set SKILL_GH_REPO) |
--branch \x3Cname> |
Target branch | main |
--skip-bear |
Skip Bear notes sync | false |
--skip-github |
Skip GitHub push | false |
--dry-run |
Preview all steps without executing | false |
--changelog \x3Cmsg> |
Changelog message for ClawHub publish | "Automated publish" |
--version \x3Csemver> |
Version for ClawHub publish | Auto from SKILL.md or 0.1.0 |
Environment Variables
SKILL_GH_REPO— Default GitHub repo (e.g.,user/skills)SKILL_BEAR_TAG— Bear note tag for dev logs (default:skill-dev)GRIZZLY_TOKEN_FILE— Path to Bear API token (default:~/.config/grizzly/token)
Steps in Detail
1. Duplicate Check
Validates skill name uniqueness against:
- Locally installed skills (
~/.openclaw/skills/) - ClawHub registry (
clawhub search)
Exits with error if a conflicting skill exists, unless --force is passed.
2. Bear Notes Sync
Creates or appends a dev-log note in Bear:
- Title:
[Skill Dev] \x3Cskill-name> - Tag: value of
SKILL_BEAR_TAG - Content: timestamp, version, changelog summary
On non-macOS or when grizzly is unavailable, prints a structured log line to stdout instead (so the pipeline continues).
3. GitHub Push
Commits and pushes the skill directory to the configured GitHub repo:
- Clones/pulls the target repo to a temp directory
- Copies skill files into the repo under
skills/\x3Cskill-name>/ - Commits with message:
feat(skill): publish \x3Cskill-name> v\x3Cversion> - Pushes to the target branch
4. ClawHub Publish
Runs clawhub publish with the skill path, slug, name, version, and changelog.
Error Handling
- Each step logs
✅on success,❌on failure - The pipeline stops on the first failure unless
--continue-on-erroris set - Bear sync failure is non-fatal by default (warns and continues)
Examples
# Full publish
bash scripts/publish.sh ./my-skill --repo user/skills --version 1.0.0
# Dry run
bash scripts/publish.sh ./my-skill --repo user/skills --dry-run
# Skip Bear and GitHub, only ClawHub
bash scripts/publish.sh ./my-skill --repo user/skills --skip-bear --skip-github
# Using env var for repo
SKILL_GH_REPO=user/skills bash scripts/publish.sh ./my-skill
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install skill-quick-publish - After installation, invoke the skill by name or use
/skill-quick-publish - Provide required inputs per the skill's parameter spec and get structured output
What is skill-quick-publish?
One-click skill publishing automation covering duplicate check, Bear notes sync, and GitHub push. Use when publishing a new or updated skill to ClawHub and G... It is an AI Agent Skill for Claude Code / OpenClaw, with 36 downloads so far.
How do I install skill-quick-publish?
Run "/install skill-quick-publish" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is skill-quick-publish free?
Yes, skill-quick-publish is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does skill-quick-publish support?
skill-quick-publish is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created skill-quick-publish?
It is built and maintained by terrycarter1985 (@terrycarter1985); the current version is v0.1.0.