Install
openclaw skills install shrimp-skill-install-guardPerforms a five-step guarded skill install with checks for existence, local state, risk, execution, and post-install verification.
openclaw skills install shrimp-skill-install-guardUse this skill when the user wants safer, more consistent skill installation with clear go/no-go decisions and verifiable post-install results.
This skill enforces a fixed five-step installation guardrail:
Source check
Local-state check
Code review (MANDATORY)
Risk review
Install execution + post-install verification
python3 scripts/skill-install-guard.py --slug <skill-slug> [options]
Compatibility wrapper:
scripts/skill-install-guard.sh --slug <skill-slug> [options]
--slug <slug>: required target skill slug--source <source>: optional source (clawhub, local path, or URL)--install-cmd '<command>': real install command for execution phase (direct executable invocation only; no shell pipes/redirects/chaining)--expected-dir <path>: expected final install path--version <version>: optional version hint--dry-run: checks only--stop-before-install: end after review phase--allow-medium-risk: allow execution when risk is medium--report-json <path>: write machine-readable result--stop-before-install or --dry-run for non-destructive preflight.python3 scripts/skill-install-guard.py \
--slug some-skill \
--source clawhub \
--expected-dir skills/some-skill \
--stop-before-install \
--report-json tmp/skill-install-guard/some-skill-verify.json
python3 scripts/skill-install-guard.py \
--slug some-skill \
--source clawhub \
--install-cmd 'clawhub install some-skill' \
--expected-dir skills/some-skill \
--report-json tmp/skill-install-guard/some-skill-install.json
When using this skill, report at minimum: