小红书发布
Analysis
The skill largely matches its stated purpose of posting to Xiaohongshu, but it can publish publicly through a logged-in account and depends on undeclared external MCP/login components.
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.
name: 'publish_content',
arguments: {
title: config.title,
content: config.content,
images: config.images,
tags: config.tags || []
}The script directly calls the MCP publish tool with the supplied title, content, images, and tags after checking login; the artifacts do not show a separate user confirmation step before mutating a public social account.
文件:`xiaohongshu-mcp-windows-amd64.exe` - 端口:18060 - 启动方式:运行 exe 文件 2. **mcporter CLI** ```bash npm install -g mcporter ```
The skill requires an external MCP executable and a global npm package, but the install spec and required binaries are empty and the executable is not included in the reviewed files.
title: 'MiniMax + OpenClay 打造AI助手',
...
publish(config).then(result => {A standalone included script immediately publishes a predefined promotional-style post if executed; this is visible in source but not highlighted in the main skill documentation.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
首次使用需要先登录: ```bash node scripts/publish.js --check ``` ... 3. 检查 cookies 文件是否存在
The skill depends on a logged-in Xiaohongshu account and cookie/session state, but the registry metadata declares no primary credential, environment variable, or required config path.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
hostname: 'localhost',
port: 18060,
path: '/mcp',
method: 'POST'The client sends MCP tool calls and post data to a local HTTP service on port 18060 without identity verification in the included code.
