← 返回 Skills 市场
fyi0329-pixel

Noodle Create Writing

作者 fyi0329-pixel · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
395
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install noodle-create-writing
功能描述
自媒体文章生成技能 - 根据关键词自动搜索、汇总数据、生成抖音/小红书/微博文章,特别擅长美食(面食)主题
安全使用建议
What to check before installing or running this skill: 1) Credential mismatch: SKILL.md asks you to set TAVILY_API_KEY but the registry metadata does not declare any required env vars. Ask the publisher why this is missing, and only supply API keys to code you trust. 2) Command execution risk: search-content.js uses execSync to run a node script in a sibling tavily-search directory and places the user query directly into a shell command string without escaping. That can lead to command injection if the query contains quotes or shell metacharacters. Do not run this on untrusted inputs. Prefer running only after patching to use execFile/spawn with argument arrays or proper escaping. 3) External-skill dependency: the code expects a local ../../tavily-search installation and will execute it. Verify that tavily-search is the official package you expect and inspect its code before allowing execution. If that directory is missing or replaced by an attacker, arbitrary code could run. 4) Prompt-injection indicator: the SKILL.md contains unicode-control-chars which may be an attempt to hide or confuse content. Inspect the raw SKILL.md for hidden characters and sanitize before use. 5) Run in a sandbox: until you audit and/or fix the issues above, run the skill in an isolated environment (container or VM) with no sensitive credentials and limited filesystem/network access. 6) Remediations: (a) add TAVILY_API_KEY to the registry metadata if required; (b) avoid shelling out to sibling skill directories—use a documented API or invoke the tavily-search skill through the platform's official mechanism; (c) fix execSync usage to pass args safely; (d) remove unexpected unicode-control characters from SKILL.md. Given the combination of undocumented credentials, shell execution of sibling code, lack of escaping, and prompt-injection signals, treat this package as suspicious until the above concerns are addressed.
功能分析
Type: OpenClaw Skill Name: noodle-create-writing Version: 1.0.0 The skill is classified as suspicious due to a shell injection vulnerability found in `scripts/search-content.js`. The `executeTavilySearch` function uses `child_process.execSync` to execute an external `node` command, constructing the command string with user-controlled input (`query` derived from `topic` and `keywords`). Although the `query` is wrapped in double quotes, this is insufficient to prevent shell injection if the user input contains crafted characters (e.g., `" || evil_command #`) that could break out of the quoted string and execute arbitrary commands on the host system. This represents a Remote Code Execution (RCE) risk, which is a critical vulnerability, but without evidence of intentional malicious exploitation, it is classified as suspicious rather than malicious.
能力评估
Purpose & Capability
The skill claims to use the Tavily search API and SKILL.md instructs users to set TAVILY_API_KEY, but the registry metadata lists no required environment variables or primary credential. The code does not itself call an HTTP Tavily API; instead it shells out to a sibling 'tavily-search' skill directory. The declaration/requirements in metadata are therefore inconsistent with the documented runtime behavior.
Instruction Scope
SKILL.md and scripts instruct the agent to run search by executing an external tavily-search script via child_process.execSync. The command string includes user-supplied query text without escaping, which creates a command-injection risk. The README also contains detected unicode-control-chars (prompt-injection signal) which could be used to confuse evaluators or tooling. The scripts read and write local files (expected) but also attempt to execute code outside the package (../../tavily-search), which expands runtime scope beyond the skill's own files.
Install Mechanism
There is no formal install spec, but the SKILL.md tells users to run npm install and package.json lists reasonable dependencies. The risky part is runtime execSync of a node script in a sibling 'tavily-search' directory (../../tavily-search). That pattern assumes and will run code outside the package; if an attacker can place or control that sibling directory, arbitrary code could be executed. No external downloads are present in the manifest, but the inter-skill exec pattern increases attack surface.
Credentials
SKILL.md requires a TAVILY_API_KEY, but the skill metadata shows no required environment variables. The code does not directly read process.env.TAVILY_API_KEY (it delegates to the tavily-search script), so the credential requirement is indirect and undocumented in the registry. Requiring an API key for an external search service is reasonable in principle, but the omission from metadata and the delegation to an external script make the credential request disproportionate/untracked.
Persistence & Privilege
The skill does not request always:true, does not alter other skills' configs, and writes outputs only to a local ./output directory by default. Autonomous invocation (disable-model-invocation:false) is the platform default and not flagged here. No elevated or persistent system-wide privileges are requested.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install noodle-create-writing
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /noodle-create-writing 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
noodle-create-writing 1.0.0 初始发布: - 一键生成美食(面食)类自媒体文章,支持抖音、小红书、微博三大平台独特格式 - 智能整合关键词,自动搜索、提取数据、整理成各平台适用文案 - 提供面食文化知识、配料、吃法、习俗等主题关键词补全 - 丰富脚本选项:限定搜索数量/时段、深度搜索、多平台输出、详细过程展示 - 内置平台文章模板和示例,帮助用户快速上手
元数据
Slug noodle-create-writing
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Noodle Create Writing 是什么?

自媒体文章生成技能 - 根据关键词自动搜索、汇总数据、生成抖音/小红书/微博文章,特别擅长美食(面食)主题. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 395 次。

如何安装 Noodle Create Writing?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install noodle-create-writing」即可一键安装,无需额外配置。

Noodle Create Writing 是免费的吗?

是的,Noodle Create Writing 完全免费(开源免费),可自由下载、安装和使用。

Noodle Create Writing 支持哪些平台?

Noodle Create Writing 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Noodle Create Writing?

由 fyi0329-pixel(@fyi0329-pixel)开发并维护,当前版本 v1.0.0。

💬 留言讨论