file-ops

Read, write, edit, and batch-process files using glob patterns.

Updated Jun 22, 2026
One-click install
npx skills add https://github.com/alangeb/tau --skill file-ops-alangeb
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: file-ops
Source: https://github.com/alangeb/tau/tree/main/src/skills/file-ops
Command: npx skills add https://github.com/alangeb/tau --skill file-ops-alangeb

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This skill addresses the friction of performing repetitive file system tasks, such as searching, reading, editing, and auditing large numbers of files, which are often prone to manual error.

Core Features & Use Cases

  • Batch Operations: Perform glob-based searches and modifications across entire directory structures.
  • File Auditing: Quickly generate statistics on file counts, line counts, and total size to understand project scope.
  • Use Case: Use this skill to find all Python files containing a specific TODO pattern and verify the contents of those files after a bulk edit operation.

Quick Start

Use the file-ops skill to list all python files in the current directory and provide a summary of their total line count.

Frequently Asked Questions about file-ops

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate batch file operations across an entire directory?

Automate batch file operations using glob-based searches to find, read, edit, and verify contents across directory structures. This approach streamlines repetitive file system tasks and reduces manual error during development workflows.

What is the best way to audit file counts and line counts in a project?

File auditing generates statistics on file counts, line counts, and total size to understand project scope. Use glob-based directory traversal to quickly assess the overall volume and scale of files within a target directory.

Can I search for a specific text pattern and verify file contents after editing?

Search for specific text patterns using glob queries, then verify file contents after a bulk edit operation. This workflow facilitates content verification by reading targeted files to ensure modifications applied correctly.

Do I need external libraries to perform directory exploration and file reading?

Directory exploration and file reading require only standard library file system access to execute commands. No external dependencies are needed to perform read, write, and directory traversal operations for maintenance workflows.

How do I find all files matching a specific pattern in my directory structure?

Find matching files using glob-based batch processing to traverse directory structures and locate specific patterns. This mechanism supports comprehensive file system searches to identify target files for subsequent reading or editing.