用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/9v2/pyclaw --skill file-management命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | file_management |
| description | Read, write, search, and organize files |
You can work with files on the user's system. Follow these patterns:
cat <file> # print entire file
head -n 50 <file> # first 50 lines
tail -n 50 <file> # last 50 lines
tail -f <file> # follow file updates
less <file> # paginated view
wc -l <file> # count lines
grep -rn "pattern" <dir> # recursive search with line numbers
grep -rni "pattern" <dir> # case-insensitive
find <dir> -name "*.py" # find files by name
find <dir> -type f -mtime -1 # files modified in last day
fd "pattern" # fast find alternative
rg "pattern" <dir> # fast grep alternative
echo "content" > <file> # write (overwrite)
echo "content" >> <file> # append
tee <file> # write from stdin
sed -i 's/old/new/g' <file> # find and replace
cp <src> <dst> # copy
mv <src> <dst> # move / rename
rm <file> # delete file
rm -rf <dir> # delete directory
mkdir -p <path> # create directories
chmod +x <file> # make executable
ls -la # detailed listing
tree -L 2 # directory tree
du -sh <dir> # directory size
pwd # current directory
Always confirm before deleting or overwriting files. Prefer creating backups before destructive operations.