用自然语言描述需求 → 自动生成需求文档 → 打开编辑器
v1.0.0将自然语言需求转为需求文档生成requests.txt并自动用首选编辑器打开。
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
The name/description (generate a requirements file and open an editor) matches the code and SKILL.md. No unrelated binaries, env vars, or config paths are requested.
Instruction Scope
SKILL.md and agent.py are consistent: parse a task, write requests.txt in the specified project_path, and open an editor. Minor caveats: the skill will overwrite requests.txt in the target directory if present, and it launches a local editor process (subprocess.Popen / os.startfile / xdg-open). These behaviors are expected for the stated purpose but mean you should verify project_path before running to avoid accidental overwrites.
Install Mechanism
No install spec; this is instruction/code-only and does not download or install external packages or binaries.
Credentials
No credentials or secret environment variables are requested. The code queries PATH to detect editors, which is reasonable and proportional.
Persistence & Privilege
always is false and the skill does not modify other skills or system-wide agent settings. It only writes a single file in the target directory and opens a local app.
Assessment
This skill appears internally consistent and does not request secrets or network access. Before using it: (1) run it in a safe or project directory to avoid overwriting an existing requests.txt, (2) be aware it will launch a local editor application (which will execute normally installed editor behavior), and (3) if you have concerns, inspect the included agent.py (it's short and readable) or run it with a harmless test task/path first.Like a lobster shell, security has layers — review code before you run it.
latest
Coder Helper Skill
用自然语言描述需求,自动生成需求文档并打开编辑器。
触发
当用户想要:
- 写代码但不想自己动手
- 生成需求文档
- 用 AI 辅助编程
使用
帮我写个XXX
创建一个YY脚本
行为
- 解析用户需求
- 生成
requests.txt到当前项目目录 - 自动打开默认编辑器(可配置)
配置
编辑器优先级:
- Cursor
- VSCode
- Notepad++
- 默认文本编辑器
Comments
Loading comments...
