trpc-group / file-tools
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/file-tools && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/1313" && unzip -o skill.zip -d .claude/skills/file-tools && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/file-tools/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Simple shell utilities for files and archives.
0 views
0 installs
Skill Content
--- name: file-tools description: Simple shell utilities for files and archives. --- Overview Use these examples to explore basic shell commands inside a skill workspace. The assistant can run them and return results and files. Examples 1) List files in the workspace Command: ls -la 2) Write a sample file to out/sample.txt Command: bash scripts/write_sample.sh "Hello from skill" out/sample.txt 3) Create a tar.gz archive of the out/ folder Command: tar -czf out/sample.tgz -C out . Output Files - out/sample.txt - out/sample.tgz