小红书自动排版发布---一键安装
Analysis
This is a purpose-aligned Xiaohongshu publishing skill, but it deserves careful review because it saves a reusable Xiaohongshu login session and can automate public posting through persistent local agents and scripts.
Findings (5)
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.
console.log('⚠️ 即将提交发布,请在浏览器中确认内容后按 Enter 继续...'); ... await publishBtn.click();The script can click the publish button in Xiaohongshu after filling content, but it includes an explicit user confirmation pause before submission.
execSync(args.join(' '), { encoding: 'utf-8', stdio: ['pipe', 'pipe', 'pipe'], shell: true })The setup script executes shell commands to check OpenClaw, list agents, check Playwright, and register new agents.
openclaw agents add lingge ... openclaw agents add xinglan ... --workspace "~/.openclaw/workspace-xiaohongshu-publisher/..."
The skill registers two persistent OpenClaw agents with workspaces under the user's ~/.openclaw directory.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
const SESSION_FILE = path.join(SESSION_DIR, 'state.json'); ... await context.storageState({ path: SESSION_FILE });The script saves Playwright browser storage state, which can include Xiaohongshu cookies/session data, for later reuse by login checks, publishing, and analytics commands.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
读取 MEMORY.md 获取长期记忆(历史发布数据规律、最佳发布时段等) ... 数据规律(最佳发布时段、高效话题类型等)更新到 MEMORY.md
The agent is instructed to use and update persistent memory containing publishing history, performance patterns, and account-related operating context.
