Install
openclaw skills install openclaw-flow-kitFix 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).
openclaw skills install openclaw-flow-kitUse this when you hit:
python scripts/run_envelope.py -- cmd /c "echo hello"
Outputs JSON:
ok, exit_code, stdout, stderr, startedAt, endedAt, durationMspython scripts/moltx_engage_gate.py --mode minimal
Then run your post normally.
Use in scripts to find the real workspace root:
from scripts.ws_paths import find_workspace_root
WS = find_workspace_root(__file__)
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.