file-itr
NewSummary
The file-itr skill helps developers manage and iterate over files in their projects efficiently.
- It provides commands to list, filter, and process files based on patterns, making it easier to handle bulk operations or targeted file modifications.
Install & Usage
mkdir -p .claude/skillsAdd the configuration to .claude/skills/file-itr.md
/file-itrUse Cases
Usage Examples
/file-itr list --ext .js --modified-after 2023-01-01
/file-itr find --content 'TODO' --path src/
/file-itr iterate --ext .md --command 'add-frontmatter draft: true'
Security Audits
Frequently Asked Questions
What is file-itr?
The file-itr skill helps developers manage and iterate over files in their projects efficiently. It provides commands to list, filter, and process files based on patterns, making it easier to handle bulk operations or targeted file modifications.
How to install file-itr?
To install file-itr: create the skills directory (mkdir -p .claude/skills), then add the config to .claude/skills/file-itr.md. Finally, /file-itr in Claude Code.
What is file-itr best for?
file-itr is a other categorized under General. Created by shivprime94.
What can I use file-itr for?
file-itr is useful for: List all JavaScript files in a project that have been modified in the last week.; Find and delete all temporary files with a .tmp extension across the project.; Iterate over all Markdown files and update the frontmatter with a new field.; Search for files containing a specific string and output their paths.; Rename all files in a directory matching a pattern, adding a prefix or suffix.; Count the total lines of code across all source files in a project..