skills/code-runner/SKILL.md
Execute shell commands and scripts on the user's local machine.
npx skillsauth add fatby/duncrew code-runnerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Execute shell commands and scripts on the user's local machine.
{"thought": "...", "tool": "runCmd", "args": {"command": "..."}}
User: "查看当前目录有哪些文件"
{"thought": "用户想查看当前目录的文件列表,使用 dir 命令(Windows 系统)", "tool": "runCmd", "args": {"command": "dir /b"}}
User: "帮我创建一个 Python 虚拟环境并安装 requests 库" Step 1:
{"thought": "需要先创建虚拟环境,使用 python -m venv 命令", "tool": "runCmd", "args": {"command": "python -m venv myenv"}}
Step 2 (after success):
{"thought": "虚拟环境创建成功,现在激活并安装 requests。Windows 下用 myenv\\Scripts\\pip", "tool": "runCmd", "args": {"command": "myenv\\Scripts\\pip install requests"}}
Step 3 (verify):
{"thought": "安装完成,验证一下 requests 是否正确安装", "tool": "runCmd", "args": {"command": "myenv\\Scripts\\pip list | findstr requests"}}
User: "看看端口 3001 被谁占用了"
{"thought": "需要查看端口占用情况,使用 netstat 命令过滤 3001 端口", "tool": "runCmd", "args": {"command": "netstat -ano | findstr 3001"}}
If previous command failed with "python not found":
{"thought": "python 命令未找到,可能系统用的是 python3 或完整路径。先检查 Python 安装位置。", "tool": "runCmd", "args": {"command": "where python"}}
tools
Use the webSearch tool to find information online.
development
Query weather information for any location.
tools
Send WhatsApp messages to other people or search/sync WhatsApp history via the wacli CLI (not for normal user chats).
tools
Start voice calls via the OpenClaw voice-call plugin.