trpc-group / user-file-ops
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/user-file-ops && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/2421" && unzip -o skill.zip -d .claude/skills/user-file-ops && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/user-file-ops/ 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 operations on user-provided text files including summarization.
0 views
0 installs
Skill Content
---
name: user-file-ops
description: Simple operations on user-provided text files including summarization.
---
Overview
Summarize text files that come from the user or from other skills.
This skill can compute basic statistics (lines, words, bytes) and
capture a short preview of the file.
User-provided files are typically exposed under `work/inputs/` (for
example, when a host directory is mounted as inputs, or when the user
uploads a file into the conversation and `skill_run` stages it into
the workspace). Files produced by other skills are usually written
under `out/` and can be
summarized directly from there.
Examples
1) Summarize a text file already present in the workspace
Command:
bash scripts/summarize_file.sh \
work/inputs/example.txt \
out/example_summary.txt
2) Summarize a different file
Command:
bash scripts/summarize_file.sh \
work/inputs/notes.txt \
out/notes_summary.txt
3) Summarize a file produced by another skill
Command:
bash scripts/summarize_file.sh \
out/sample_fib.txt \
out/sample_fib_summary.txt
Output Files
- out/example_summary.txt
- out/notes_summary.txt
- out/sample_fib_summary.txt