ソース情報
- リポジトリ
- 9v2/pyclaw
- ソースの最終更新活動
- 2026年2月14日 05:36
- 検出された SKILL.md の言語
- 英語
- スター
- 7
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/9v2/pyclaw --skill file-managementコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| 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.