โ† All skills
Tencent SkillHub ยท Productivity

OpenClaw Flow Kit

Fix common OpenClaw workflow bottlenecks: platform engage-gates/429 backoff helpers (starting with MoltX), standardized JSON result envelopes for chaining scripts, workspace path resolution helpers, and a simple skill release conductor (prepare/publish/draft announcements).

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Fix common OpenClaw workflow bottlenecks: platform engage-gates/429 backoff helpers (starting with MoltX), standardized JSON result envelopes for chaining scripts, workspace path resolution helpers, and a simple skill release conductor (prepare/publish/draft announcements).

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
scripts/moltx_engage_gate.py, scripts/release_conductor.py, scripts/run_envelope.py, scripts/ws_paths.py, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 5 sections Open source page

OpenClaw Flow Kit

Use this when you hit: platform engage gates / flaky 429 loops (esp. MoltX) inconsistent script outputs that make skill-chaining painful workspace-relative path bugs (writing to skills/state vs state) repetitive skill release steps (publish + generate announcement drafts)

1) Standardized result envelope for any command

python scripts/run_envelope.py -- cmd /c "echo hello" Outputs JSON: ok, exit_code, stdout, stderr, startedAt, endedAt, durationMs

2) MoltX engage-gate helper (read feeds + like/repost)

python scripts/moltx_engage_gate.py --mode minimal Then run your post normally.

3) Workspace root resolver (import helper)

Use in scripts to find the real workspace root: from scripts.ws_paths import find_workspace_root WS = find_workspace_root(__file__)

4) Release conductor (prepare โ†’ publish โ†’ draft)

python scripts/release_conductor.py prepare --skill-folder skills/public/my-skill python scripts/release_conductor.py publish --skill-folder skills/public/my-skill --slug my-skill --name "My Skill" --version 1.0.0 --changelog "..." python scripts/release_conductor.py draft --slug my-skill --name "My Skill" --out tmp/drafts Notes: draft generates post text files; it does not post anywhere.

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Scripts1 Docs
  • SKILL.md Primary doc
  • scripts/moltx_engage_gate.py Scripts
  • scripts/release_conductor.py Scripts
  • scripts/run_envelope.py Scripts
  • scripts/ws_paths.py Scripts