Loading...
Loading...
File system operations guidance - read, write, search, and manage files using Claude Code's built-in tools.
npx skill4agent add oimiragieo/agent-studio filesystemRead file_path="/path/to/file.txt"offsetlimitGlob pattern="**/*.ts"**/*.tssrc/**/*.tsx**/test*.jspnpm search:code "query"Skill({ skill: 'ripgrep' })pnpm search:codeGrep pattern="function myFunc" path="/src"output_mode-A-B-CWrite file_path="/path/to/file.txt" content="..."Edit file_path="/path/to/file.txt" old_string="..." new_string="..."# List directory
ls -la /path/to/dir
# Create directory
mkdir -p /path/to/new/dir
# Move/rename
mv /old/path /new/path# Read files in parallel (multiple Read calls in one message)
Read file_path="/src/app.ts"
Read file_path="/src/config.ts"
Read file_path="/src/utils.ts"# 1. Find files
Glob pattern="**/*.config.ts"
# 2. Read matching files
Read file_path="/path/from/glob/result"# 1. Search for pattern
Grep pattern="oldFunction" path="/src"
# 2. Edit each file
Edit file_path="/src/file.ts" old_string="oldFunction" new_string="newFunction"findpnpm search:codeSkill({ skill: 'ripgrep' })Glob pattern="src/**/*.ts"
# Then read the results
Read file_path="/src/app.ts"Grep pattern="export function oldName" path="/src"
# Found in /src/utils.ts:23
Edit file_path="/src/utils.ts" old_string="export function oldName" new_string="export function newName"cat .claude/context/memory/learnings.md.claude/context/memory/learnings.md.claude/context/memory/issues.md.claude/context/memory/decisions.mdASSUME INTERRUPTION: Your context may reset. If it's not in memory, it didn't happen.