filesystem
星标13
分支4
更新时间2026年4月10日 14:26
Guidance for safe file reading, writing, search, and directory navigation.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
文件资源管理器
2 个文件SKILL.md
readonly菜单
Guidance for safe file reading, writing, search, and directory navigation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Guidance for terminal command execution, PTY sessions, and environment detection.
Guidance for browser automation using Playwright CLI.
Guidance for understanding YouTube videos with the watch_youtube_video tool.
Guidance for web searching, page fetching, and source evaluation.
Guidance for Google Calendar: checking availability, creating events, and managing schedules.
Guidance for Gmail operations: searching, reading, composing, and labeling emails.
| name | filesystem |
| description | Guidance for safe file reading, writing, search, and directory navigation. |
| trigger-servers | filesystem, glob, grep |
glob server's glob_files tool for file and directory discovery by pattern.grep server's grep_files tool for searching inside file contents.glob_files and grep_files are the required tools for file discovery and file-content search when they can handle the task.run_command for grep, rg, ag, find, ls, dir, or shell glob expansion when the dedicated search tools can do the job.| Task | Tool | Suggested inputs |
|---|---|---|
| Find files by name or extension | glob_files | pattern="**/*.py" and optionally path="source" |
| Search text inside code or docs | grep_files | pattern="RequestContext", file_glob="**/*.py", optionally path="source" |
| List only files that match content | grep_files | pattern="RequestContext", output_mode="files_with_matches", file_glob="**/*.py" |
| Get per-file hit counts | grep_files | pattern="TODO", output_mode="count", file_glob="**/*.py" |
| Run a regex search | grep_files | pattern="class\\s+\\w+", is_regex=true, file_glob="**/*.py" |
| Narrow by common file type | grep_files | pattern="useEffectEvent", type="ts" |
| Inspect one directory | list_directory | path="..." |
| Open a specific file | read_file | path="..." |
truncated: true, narrow the query instead of retrying broadly:
path to a smaller subtree.file_glob.type when a standard file family is obvious.head_limit and offset to page through grep_files results instead of rerunning the same broad query.include_hidden off unless hidden files are required.