← Back to Skills Marketplace
Noodle Create Writing
by
fyi0329-pixel
· GitHub ↗
· v1.0.0
395
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install noodle-create-writing
Description
自媒体文章生成技能 - 根据关键词自动搜索、汇总数据、生成抖音/小红书/微博文章,特别擅长美食(面食)主题
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install noodle-create-writing - After installation, invoke the skill by name or use
/noodle-create-writing - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
noodle-create-writing 1.0.0 初始发布:
- 一键生成美食(面食)类自媒体文章,支持抖音、小红书、微博三大平台独特格式
- 智能整合关键词,自动搜索、提取数据、整理成各平台适用文案
- 提供面食文化知识、配料、吃法、习俗等主题关键词补全
- 丰富脚本选项:限定搜索数量/时段、深度搜索、多平台输出、详细过程展示
- 内置平台文章模板和示例,帮助用户快速上手
Metadata
Frequently Asked Questions
What is Noodle Create Writing?
自媒体文章生成技能 - 根据关键词自动搜索、汇总数据、生成抖音/小红书/微博文章,特别擅长美食(面食)主题. It is an AI Agent Skill for Claude Code / OpenClaw, with 395 downloads so far.
How do I install Noodle Create Writing?
Run "/install noodle-create-writing" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Noodle Create Writing free?
Yes, Noodle Create Writing is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Noodle Create Writing support?
Noodle Create Writing is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Noodle Create Writing?
It is built and maintained by fyi0329-pixel (@fyi0329-pixel); the current version is v1.0.0.
More Skills