ZeeLin 小红书自动发布
Analysis
The skill fits its Xiaohongshu automation purpose, but it can use a logged-in browser session to publish and confirm public posts automatically, so it needs careful review before installation.
Findings (3)
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.
echo "Clicking 发布: $PUBLISH_REF" $CLI click "$PUBLISH_REF" ... echo "Clicking 确认发布: $CONFIRM_REF" $CLI click "$CONFIRM_REF"
The browser automation script clicks the Xiaohongshu publish button and any confirmation dialog, creating a live public-posting action rather than only preparing a draft.
RESP_JSON="$(openclaw agent --agent main --message "$PROMPT" --json)" TEXT="$(printf "%s" "$RESP_JSON" | jq -r '.result.payloads[0].text // empty')"
The script depends on external local tools such as the OpenClaw CLI and jq, while the registry declares no required binaries or install specification.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
Requires Chrome started with --remote-debugging-port=9222 and user logged into https://creator.xiaohongshu.com
The script is designed to act through a logged-in Xiaohongshu creator browser session, giving it delegated authority over the user's social account.
