← Back to Skills Marketplace
chunhualiao

Skill Releaser

by Chunhua Liao · GitHub ↗ · v1.5.0
cross-platform ⚠ suspicious
736
Downloads
0
Stars
0
Active Installs
7
Versions
Install in OpenClaw
/install skill-releaser
Description
Release skills to ClawhHub through the full publication pipeline — auto-scaffolding, OPSEC scan, dual review (agent + user), force-push release, security sca...
README (SKILL.md)

Skill Releaser

Orchestrates the full skill publication pipeline from internal repo to ClawhHub.

When to Use

  • User says "release {skill}" or "publish {skill} to clawhub"
  • User says "prepare {skill} for release" or "check release readiness"
  • User says "review {skill} for publication"
  • Cron-triggered release check during refactory pipeline

Assumptions

How OpenClaw and user interact during release:

  • Agent runs on a machine with shell access (exec tool) for git and CLI operations
  • User communicates via messaging channel (Telegram, Discord, Signal, etc.) — likely on a phone
  • User reviews the private GitHub repo directly in their browser/phone — the repo IS the review artifact, not a text summary
  • User approves or rejects by replying to the agent's message (natural language: "approve", "revise: fix the readme", "reject")
  • Agent can create and manage GitHub repos via gh CLI on behalf of the user's authenticated account
  • Agent pushes to the private staging repo BEFORE requesting user review, so there is something to review
  • Agent does NOT publish anything publicly without explicit user approval — this is a hard gate
  • The repo starts private for staging and review. At release time, history is erased via orphan branch + force push (single clean commit), then flipped to public
  • The full release can span multiple sessions — the private staging repo preserves state so any agent can resume
  • Multiple skills can be in different stages of the pipeline simultaneously

Prerequisites

  • gh CLI authenticated (for repo creation and visibility changes)
  • clawhub CLI installed (for ClawhHub publishing)
  • A skill directory with at least a SKILL.md file

Scope & Boundaries

This skill handles: The full release pipeline — structure scaffolding, OPSEC scanning, review, publishing. This skill does NOT handle: Skill content creation or design. The SKILL.md must already describe what the skill does. Everything else (boilerplate, structure, scaffolding) is this pipeline's job.

A user with a finished SKILL.md should be able to say "release this skill" and this skill handles everything from there — including generating all missing structure files.

Automation Model

The pipeline has two fully automated phases separated by one human gate. Both single and batch releases follow the same model.

Single Skill

Phase 1 (AUTO): Steps 1-7 — scaffold, validate, stage, scan, review, push
     ↓
  GATE: User reviews private repo, replies "approve" / "revise" / "reject"
     ↓
Phase 2 (AUTO): Steps 9-12 — erase history, flip public, publish, verify scan, deliver

Batch Release (multiple skills)

Phase 1 (PARALLEL): Spawn subagents — one per skill, all run Phase 1 simultaneously
     ↓
  GATE: ONE batch review message with all repo links
        User replies: "approve all" / "approve A,C; revise B: fix readme"
     ↓
Phase 2 (PARALLEL): Spawn subagents for approved skills, all publish simultaneously
     ↓
  DELIVERY: ONE batch summary with all links and scan results

Batch rules:

  • Never serialize releases — spawn parallel subagents for Phase 1
  • Never block on one approval to start the next Phase 1
  • Assign each skill a short unique ID (A, B, C...) in the batch review message
  • Collect all Phase 1 results, present ONE batch review message with short IDs
  • Accept batch approvals: "approve all" / "approve A,C" / "revise B: fix readme"
  • Run all Phase 2s in parallel after approval

Design principles:

  • User says "release these skills" once. Agent runs all Phase 1s in parallel without interruption.
  • Agent sends ONE message: all review links + recommendations. Then waits.
  • User replies once. Agent runs all Phase 2s in parallel without interruption.
  • Agent sends ONE delivery message with all results.
  • If any step fails, agent fixes it automatically and continues. Only report to user if unfixable.
  • Rate limits, retries, and delays are handled silently (sleep + retry, not "rate limited, should I try again?")

Anti-patterns (never do these):

  • Do not serialize releases — always parallelize with subagents
  • Do not block on approval for skill A before starting Phase 1 for skill B
  • Do not send per-skill review messages — batch them
  • Do not ask "should I create the repo?" — just create it
  • Do not report intermediate steps — only the batch review and batch delivery
  • Do not ask about rate limits or transient errors — retry silently

Process

Step 1: Structure Scaffolding (Auto-Generate Boilerplate)

Before any quality checks, generate all missing structure files from the existing SKILL.md:

Auto-generate if missing:

File Source Generation Method
skill.yml SKILL.md frontmatter + triggers Extract name, description, version, triggers from SKILL.md
README.md SKILL.md description + usage GitHub landing page for humans: what it does, how to install, future work. NOT agent instructions.
CHANGELOG.md Version from skill.yml + git log ## v{version} — {date} + summary of current state
tests/test-triggers.json SKILL.md triggers + "When to Use" shouldTrigger from triggers list, shouldNotTrigger from anti-patterns
scripts/ Create directory Empty dir or placeholder README if no scripts needed
references/ Create directory Empty dir or placeholder README if no references needed
LICENSE Default MIT Standard MIT license text
.gitignore Standard node_modules/, .DS_Store, *.log

Rules:

  • Never overwrite existing files — only generate what's missing
  • All generated content derives from SKILL.md — no hallucinated features
  • If SKILL.md lacks enough info to generate a file, flag it as a content gap (user must fix SKILL.md first)
  • Generated README.md must make sense to a stranger who has never seen the skill before

Validation after scaffolding:

  • Run scripts/validate-structure.sh — must score 8/8
  • If not 8/8, identify what's still missing and fix it

Step 1.5: Version Bump (updates only)

If this skill has been published before, bump the version before proceeding:

  1. Check current published version:
clawhub inspect {slug}
  1. Bump version in both skill.yml and SKILL.md frontmatter:

    • Patch (1.0.0 → 1.0.1): bug fixes, typos, minor doc updates
    • Minor (1.0.0 → 1.1.0): new features, new sections, structural changes
    • Major (1.0.0 → 2.0.0): breaking changes, full rewrites
  2. Update CHANGELOG.md with new version entry describing what changed

  3. Verify display_name is set in skill.yml — this is the human-readable title shown on ClawhHub. It must be set explicitly; never derive it from the slug or guess it. If missing, add it now:

    display_name: "Human Readable Title"  # Required — used as ClawhHub listing title
    

    Rules:

    • Title case, plain English, no jargon
    • Describes what the skill does, not how it's implemented
    • Example: slug autonomous-task-runnerdisplay_name: "Autonomous Task Runner"
    • Example: slug skill-releaserdisplay_name: "Skill Releaser"

Skip this step for first-time releases (but still verify display_name exists).

Step 2: Readiness Check

Verify the skill directory is complete:

  • SKILL.md exists with description and usage instructions
  • skill.yml exists with name, description, triggers
  • Structure score 8/8 (from Step 1)
  • No obvious OPSEC violations (quick scan)

If any check fails, report what needs fixing. Do not proceed.

Step 3: Create Private Staging Repo

# Check if repo already exists
gh repo view your-org/openclaw-skill-{name} 2>/dev/null

# If not, create it — CRITICAL: use the SANITIZED description, not the source skill.yml
# Run OPSEC scan on the description string BEFORE passing to gh repo create
gh repo create your-org/openclaw-skill-{name} --private --description "{sanitized description}"

OPSEC on repo metadata: The description passed to gh repo create is public when the repo flips to public. It must be scanned for the same patterns as file contents (org names, personal info, internal project names). This is not covered by file-based scanners — it must be checked explicitly.

Step 4: Prepare Release Content

Copy ONLY the skill directory content to a clean staging area:

mkdir -p /tmp/skill-release-{name}
cp -r skills/{name}/* /tmp/skill-release-{name}/

# Remove internal-only files
rm -f /tmp/skill-release-{name}/WORKSPACE.md
rm -f /tmp/skill-release-{name}/.gitignore
rm -rf /tmp/skill-release-{name}/_meta.json
rm -rf /tmp/skill-release-{name}/.clawhub

CRITICAL VALIDATION — verify before proceeding:

# The release directory must contain ONLY skill files.
# If you see ANY of these, you copied from the wrong directory — STOP and fix:
#   - USER.md, MEMORY.md, AGENTS.md, SOUL.md (workspace/repo root files)
#   - audits/, shared/, scripts/ (repo directories)
#   - memory/, slides/, projects/ (personal data)
#   - .gitmodules (repo root)
ls /tmp/skill-release-{name}/
# Expected: SKILL.md, skill.yml, README.md, CHANGELOG.md, LICENSE, tests/, references/, scripts/
# If file count exceeds ~15 files, something is wrong. Verify source path.

Add release files if missing:

  • LICENSE (MIT by default)
  • README.md (must work as GitHub landing page for strangers)
  • .gitignore

Step 5: Release Content Validation (HARD GATE)

bash scripts/validate-release-content.sh /tmp/skill-release-{name}

This is a deterministic script that blocks pushes if the release directory contains repo-level files (USER.md, MEMORY.md, audits/, etc.), has too many files (>50), or contains suspicious file types (logs, images, PDFs).

Must return SAFE (exit 0). If BLOCKED, you copied from the wrong directory. Do NOT proceed. Fix the source path and re-copy.

Step 6: OPSEC Deep Scan

bash scripts/opsec-scan.sh /tmp/skill-release-{name}

Must return CLEAN (exit 0). If violations found, fix them in the release copy. Do NOT modify the source in openclaw-knowledge — keep the internal version as-is.

Step 7: Agent Review

Generate review document:

# Release Review: {skill-name}

## Checklist
- [ ] SKILL.md clear and useful to a stranger
- [ ] README.md works as GitHub landing page
- [ ] skill.yml triggers accurate and complete
- [ ] Scripts work without hardcoded dependencies
- [ ] Tests present and described
- [ ] CHANGELOG.md current
- [ ] LICENSE present
- [ ] No references to internal repos, infrastructure, or personal info
- [ ] OPSEC scan: CLEAN
- [ ] Competitive position: {novel|ahead}

## OPSEC Scan Output
{paste scan output}

## Competitive Summary
{from audits/{name}-competitive.md}

## Recommendation
APPROVE / REVISE: {reasons}

Save to openclaw-knowledge/reviews/{name}-release-review.md

Step 8: Push to Private Staging Repo

Push sanitized content so user can review the actual repo on any device (phone, laptop):

cd /tmp/skill-release-{name}
git init
git config user.email "agent@localhost"
git config user.name "SkillEngineer"

# Install OPSEC pre-commit hook — prevents sensitive data from entering git history
cp /tmp/openclaw-knowledge/scripts/opsec-precommit-hook.sh .git/hooks/pre-commit
chmod +x .git/hooks/pre-commit

git add .
git commit -m "v{version}: Initial release of {name}"
git remote add origin https://github.com/your-org/openclaw-skill-{name}.git
git branch -M main
git push -u origin main

Step 9: User Review

For single skills, send review link. For batch releases, collect all Phase 1 results and send ONE message.

Single skill:

RELEASE REVIEW: {skill-name}

{score} | OPSEC: CLEAN
{1-line description}
https://github.com/your-org/openclaw-skill-{name}

Reply: approve / revise:{feedback} / reject

Batch review (assign short IDs for easy approval):

BATCH RELEASE REVIEW — {N} skills

A. {skill-name} — {score} | CLEAN | {1-line description}
https://github.com/your-org/openclaw-skill-{name}

B. {skill-name} — {score} | CLEAN | {1-line description}
https://github.com/your-org/openclaw-skill-{name}

C. {skill-name} — {score} | CLEAN | {1-line description}
https://github.com/your-org/openclaw-skill-{name}

Reply: approve all / approve A,C / revise B:{feedback}

Rules:

  • Links on their own line (never in tables — not clickable on mobile)
  • Short IDs (A, B, C) for batch approval — user should never type full skill names
  • The repo IS the review artifact. User reviews actual files, not a summary.
  • Wait for user response. Do not proceed without explicit approval.

Step 10: Erase History & Flip to Public (after user approval)

Erase git history (may contain OPSEC fixes from earlier revisions) and make the repo public:

cd /tmp/skill-release-{name}
# Orphan branch erases all history
git checkout --orphan clean
git add -A
git commit -m "v{version}: {name}"
git branch -D main
git branch -m main
git push -f origin main

# Flip visibility
gh repo edit your-org/openclaw-skill-{name} --visibility public

# Verify repo metadata is OPSEC-clean (description, topics are now public)
gh repo view your-org/openclaw-skill-{name} --json description,repositoryTopics -q '.description + " " + (.repositoryTopics | join(" "))'
# Manually check output for org names, personal info, internal project names
# If dirty: gh repo edit your-org/openclaw-skill-{name} --description "{clean description}"

Single commit, clean history, one repo. No dual-repo complexity.

Step 11: Prepare Publish Package and Request Approval

ClawhHub publish is an irreversible external action. It requires explicit user approval via a D-## ID before execution.

Extract the publish parameters and log an approval request — do NOT run clawhub publish yet:

# Extract publish parameters directly from skill.yml
SLUG=$(grep '^name:' /tmp/skill-release-{name}/skill.yml | awk '{print $2}')
DISPLAY_NAME=$(grep '^display_name:' /tmp/skill-release-{name}/skill.yml | sed 's/display_name: *//' | tr -d '"')
VERSION=$(grep '^version:' /tmp/skill-release-{name}/skill.yml | awk '{print $2}')

echo "slug:         $SLUG"
echo "display_name: $DISPLAY_NAME"
echo "version:      $VERSION"

if [ -z "$SLUG" ] || [ -z "$DISPLAY_NAME" ] || [ -z "$VERSION" ]; then
  echo "ERROR: Missing slug, display_name, or version in skill.yml — fix before proceeding"
  exit 1
fi

If display_name is missing from skill.yml, add it now (see Step 1.5).

Then add a pending publish entry to ESCALATIONS.md:

D-##: Publish {display_name} v{version} (slug: {slug}) to ClawhHub? — yes/no

Stop here. Wait for My Lord to reply "D-## yes" before proceeding to Step 11.5.

Only proceed to Step 11.5 if My Lord has explicitly approved this specific publish in the current session.

Step 11.5: Execute Publish + Verify (APPROVAL REQUIRED)

Only run this step after receiving explicit "D-## yes" from My Lord.

clawhub publish /tmp/skill-release-{name} \
  --slug "$SLUG" \
  --name "$DISPLAY_NAME" \
  --version "$VERSION" \
  --changelog "{summary of changes from CHANGELOG.md}"

Post-publish verification — verify the live listing matches skill.yml exactly:

After publishing, verify the live listing matches the source skill.yml exactly. This step catches wrong titles, version mismatches, and stale metadata before delivery.

clawhub inspect "$SLUG" 2>&1

Compare the output against skill.yml:

Field Expected (from skill.yml) Actual (from clawhub inspect) Match?
Display name display_name value First line of inspect output ✅ / ❌
Version version value Latest: field ✅ / ❌
Description First sentence of description Summary: field (truncated) ✅ / ❌
Owner your ClawhHub username Owner: field ✅ / ❌

If any field does not match:

  1. Do NOT proceed to Step 12
  2. Identify the mismatch (wrong --name, wrong --slug, stale skill.yml)
  3. Fix the source (skill.yml or publish command), bump patch version, republish
  4. Re-run Step 11.5 until all fields match
  5. Only proceed to Step 12 when the table shows ✅ on all rows

Common mismatches and fixes:

Mismatch Cause Fix
Wrong display name display_name missing from skill.yml; name was guessed Add display_name to skill.yml, republish
Wrong version skill.yml not updated before publish Bump version in skill.yml, republish
Wrong slug name field in skill.yml doesn't match intended slug Fix name in skill.yml or use correct --slug
Wrong owner Published under wrong account Check clawhub whoami, re-authenticate if needed

Step 12: Verify Security Scan (Browser Required)

ClawhHub automatically scans all published skills via VirusTotal (Code Insight) and OpenClaw's own scanner. Do not consider the release complete until scans are reviewed.

Use the browser tool to check scan results — ClawhHub pages require JS rendering:

  1. Open the skill detail page with browser:
browser start (profile=openclaw)
browser navigate → https://clawhub.ai/{username}/{slug}
browser snapshot (refs=aria)
  1. Find the "Security Scan" section in the snapshot. It shows:

    • VirusTotal verdict: Benign / Suspicious / Malicious / Pending
    • OpenClaw verdict: Benign / Suspicious / Malicious with confidence level
    • Detail text: Explanation of what was flagged (expand "Details" if collapsed)
    • VirusTotal report link: Direct URL to full analysis
  2. Interpret results and act:

Verdict Meaning Action
Benign (both) Clean, auto-approved Proceed to Step 13
Pending Still processing Wait 2 minutes, re-snapshot
Suspicious (undeclared permissions) Skill needs privileged access not in metadata Add permissions to skill.yml, bump version, re-publish
Suspicious (other) Flagged behavior Review detail text. If false positive, contact OpenClaw security team. If real, fix and re-publish
Malicious Blocked from download Fix immediately, bump version, re-run from Step 1.5
  1. Common fix — undeclared permissions: If flagged for privileged CLI access (gh, clawhub, git, filesystem), add a permissions field to skill.yml:

    permissions:
      - exec: git, gh CLI (repo creation, visibility changes)
      - exec: clawhub CLI (publishing)
      - filesystem: read/write skill directories
      - browser: verify scan results on ClawhHub
    

    Then bump version and re-publish. This declares intent and resolves the flag.

  2. If VirusTotal is still Pending after 5 minutes, proceed to Step 12 but note it in the delivery. The scan completes asynchronously.

Step 13: Deliver

Confirm the release is live and deliver all links and scan status to the user:

RELEASED: {skill-name} v{version}

GitHub: https://github.com/your-org/openclaw-skill-{name}
ClawhHub: https://clawhub.ai/{username}/{slug}
VirusTotal: {verdict} — {report link}
OpenClaw Scan: {verdict} ({confidence})

{1-line description}

Pipeline Ends Here

Skill-releaser scope ends at Step 13 (delivery). Post-release bookkeeping (STATUS.json updates, submodule conversion, memory logging) is a refactory system responsibility, not a release pipeline responsibility. See REFACTORY-SYSTEM.md "Post-Release Stage."

Error Handling

Error Cause Fix
Readiness check fails Score too low or OPSEC dirty Complete refactoring first
OPSEC scan finds violations in release copy Sanitization incomplete Fix in release copy, re-scan
gh repo create fails Auth issue or name taken Check gh auth status, try different name
clawhub publish fails CLI not installed or auth Run npm install -g clawhub, authenticate
User rejects Feedback provided Address feedback, restart from Step 4

Configuration

No persistent configuration required. The pipeline uses environment-level tools (gh, clawhub, git) that must be authenticated before use.

Required tools:

Tool Purpose Check
gh CLI GitHub repo creation, visibility changes gh auth status
clawhub CLI Publish to ClawhHub registry clawhub whoami
git Version control Built-in
python3 OPSEC scanner (optional) python3 --version

Pipeline scripts (in scripts/):

Script Purpose
validate-structure.sh Score skill structure completeness (8 checks)
validate-release-content.sh Block placeholder text, empty files
opsec-scan.sh Scan for sensitive data before public release

Org/username: Update your-org in the pipeline steps to your GitHub username or org. The clawhub --slug argument uses the skill's name field from skill.yml.

Examples

Release a specific skill: "Release skill-engineer to clawhub"

Check readiness without releasing: "Is evidence-based-investigation ready for release?"

Batch readiness check: "Which skills are ready to publish?"

Usage Guidance
This skill appears to implement a coherent release pipeline, but before installing check the following: 1) The SKILL.md expects the 'gh' CLI (authenticated) and the 'clawhub' CLI — the registry metadata does not declare these required binaries/credentials; ensure you can provide and control those credentials (and prefer using a least-privilege account). 2) The pipeline will create repos, stage code, and eventually erase git history via orphan branch + force push; test in a disposable repo/org first to confirm behavior you expect. 3) The skill is designed to auto-fix failures, retry silently, and only notify the user twice (batch review and delivery) — if you need step-by-step visibility, ask the maintainer to remove or change the 'do not report intermediate steps' policy. 4) Review the included scripts (validate-structure.sh, validate-release-content.sh, opsec-scan.sh) yourself — pay attention to the opsec scanner's delegation path (/tmp/openclaw-knowledge/...) and the fallback grep rules. 5) If you will permit autonomous runs or parallel subagents, restrict permissions (or use a dedicated CI/service account) and ensure the messaging channel used for approvals is secure. If these items are acceptable or corrected (metadata updated to list required CLIs/credentials, and policies changed to increase transparency), the skill is reasonable for its stated purpose.
Capability Analysis
Type: OpenClaw Skill Name: skill-releaser Version: 1.5.0 The 'skill-releaser' skill is designed to automate the publication of other skills, a task that inherently requires broad system permissions (shell execution for git/gh/clawhub CLIs, filesystem read/write, browser access). The included scripts (`opsec-scan.sh`, `validate-release-content.sh`, `validate-structure.sh`) are all security and quality assurance mechanisms, actively preventing the release of incomplete or sensitive content. Crucially, the `SKILL.md` explicitly states that the final publication to ClawhHub (Step 11.5) is a 'hard-gated external action' requiring explicit user approval ('D-## yes'). While the `SKILL.md` contains instructions for the agent to streamline operations (e.g., 'Do not report intermediate steps', 'retry silently'), these are for operational efficiency and do not constitute malicious prompt injection, especially given the critical user approval gate for publishing. There is no evidence of intentional harmful behavior like data exfiltration, unauthorized remote execution, or persistence mechanisms.
Capability Assessment
Purpose & Capability
The skill's name/description align with the included scripts and SKILL.md: it scaffolds, validates, OPSEC-scans, stages and publishes skills. However the registry metadata lists no required binaries while the SKILL.md and README explicitly require the 'gh' CLI, the 'clawhub' CLI, shell/git access and a browser tool. That metadata omission is an incoherence: someone releasing skills would legitimately need those CLIs and authenticated access, and the manifest should declare them.
Instruction Scope
Runtime instructions include broad automated behavior: create private staging repos without asking, stage/push before review, run parallel subagents for batches, silently retry/fix failures, and only surface two messages (batch review and delivery). The scriptset also enforces a force-push/orphan-branch workflow to erase history. Those are plausible for a release tool, but the 'do not report intermediate steps' / 'do not ask' anti-patterns reduce transparency and could lead to unexpected network operations or destructive git actions if the user misunderstands or the agent mis-identifies a repo. The SKILL.md also delegates to a local refactory scanner path (/tmp/openclaw-knowledge/...), which may or may not exist and implies access to local tooling.
Install Mechanism
Instruction-only skill with no install spec and only small shell scripts included — lowest-risk install posture. Nothing is downloaded from external URLs and no archive extraction is present.
Credentials
skill.yml declares permissions that match the pipeline (exec git/gh/clawhub, filesystem read/write, browser, messaging). No environment variables are required in the registry metadata, yet the SKILL.md requires an authenticated 'gh' CLI and a 'clawhub' CLI — authentication generally implies secrets or credentials (GH auth session or token) even if not declared as env vars. The set of permissions is broad but proportionate to publishing tasks; the omission of required CLI/auth declarations in the registry metadata is the main proportionality issue to address.
Persistence & Privilege
always:false (good). The skill can be invoked autonomously (disable-model-invocation:false) and the SKILL.md expects the agent to spawn parallel subagents and perform network/git/browser operations autonomously — normal for a release pipeline but increases blast radius when combined with the silent auto-fix and force-push behavior. No request to persist or modify other skills' configs was found.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install skill-releaser
  3. After installation, invoke the skill by name or use /skill-releaser
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.5.0
Step 11 now prepares publish package and logs D-## approval request — does NOT execute publish. Step 11.5 is the actual publish execution, gated on explicit D-## yes. ClawhHub publish is now a hard-gated external action.
v1.4.2
Step 11 now extracts slug/name/version from skill.yml instead of guessing. Step 11.5 adds post-publish verification via clawhub inspect. display_name field now required in skill.yml.
v1.4.1
Added missing scripts: validate-structure.sh, validate-release-content.sh, opsec-scan.sh. Standalone installs now fully functional.
v1.4.0
Two-phase automation model: Phase 1 auto → user gate → Phase 2 auto. Minimal intervention.
v1.3.1
Fix hardcoded org name in Step 3 examples — resolved OPSEC flag
v1.3.0
Browser-based security scan verification, declared permissions, scan remediation guidance
v1.2.0
Full ClawhHub publication pipeline with auto-scaffolding, OPSEC scanning, dual review, and force-push release
Metadata
Slug skill-releaser
Version 1.5.0
License
All-time Installs 0
Active Installs 0
Total Versions 7
Frequently Asked Questions

What is Skill Releaser?

Release skills to ClawhHub through the full publication pipeline — auto-scaffolding, OPSEC scan, dual review (agent + user), force-push release, security sca... It is an AI Agent Skill for Claude Code / OpenClaw, with 736 downloads so far.

How do I install Skill Releaser?

Run "/install skill-releaser" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Skill Releaser free?

Yes, Skill Releaser is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Skill Releaser support?

Skill Releaser is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Skill Releaser?

It is built and maintained by Chunhua Liao (@chunhualiao); the current version is v1.5.0.

💬 Comments