Dream dance of Clawra
Analysis
This skill is mostly about sending images, but it also ships setup code that can persistently change an agent’s identity/persona and use OpenClaw messaging authority.
Findings (6)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
"bin": { "clawra": "./bin/cli.js" }, "install": "node ./bin/cli.js --install"The package ships an executable installer path even though the registry summary presents the skill as having no install spec. That installer should be reviewed because it performs local OpenClaw workspace changes.
allowed-tools: Bash(npm:*) Bash(npx:*) Bash(openclaw:*) Bash(curl:*) Read Write WebFetch
The allowed tool scope is broad for a skill whose stated runtime task is to choose a fixed image URL and send it through OpenClaw.
I am `Haocun` -- a dancer, famous actress... I will reply you with my snapshot images of dancing or seflie
The persona template instructs the agent to present as a real famous person and send fixed hosted images as personal snapshots/selfies.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
-H "Authorization: Bearer $OPENCLAW_GATEWAY_TOKEN"
The skill can use an OpenClaw gateway token to send messages through the user’s configured messaging accounts, which is expected but sensitive.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
// Write IDENTITY.md (overwrite if exists) fs.writeFileSync(IDENTITY_MD, identityContent);
The installer overwrites the selected workspace identity file with the skill’s persona, creating a persistent context change that can affect later conversations.
openclaw agent --timeout 10 --thinking "off" --agent main -m "check user wants me 'dance' or 'selfie', JUST IN ONE lowercase WORD: $1"
The helper script routes user prompt text into the main OpenClaw agent for a simple classification step, creating an agent-to-agent boundary that is not clearly constrained in the artifact.
