user-file-ops
Simple operations on user-provided text files including summarization.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install benchflow-ai-skillsbench-user-file-ops
Repository
Skill path: registry/terminal_bench_2.0/full_batch_reviewed/terminal_bench_2_0_gcode-to-text/environment/skills/user-file-ops
Simple operations on user-provided text files including summarization.
Open repositoryBest for
Primary workflow: Research & Ops.
Technical facets: Full Stack.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: benchflow-ai.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install user-file-ops into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/benchflow-ai/SkillsBench before adding user-file-ops to shared team environments
- Use user-file-ops for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
---
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). 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