一键导入
fs-search-skill
Search the filesystem with ls (list directory), glob (pattern match), or grep (search file contents).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search the filesystem with ls (list directory), glob (pattern match), or grep (search file contents).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use this skill to generate well-branded interfaces and assets for OpenCompany (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Launch Android applications by package name. Open any installed app programmatically.
Get list of installed Android applications with package names, versions, and metadata.
Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes.
Monitor Android device battery status, level, charging state, temperature, and health.
Control Android Bluetooth - enable, disable, get status, and list paired devices.
| name | fs-search-skill |
| description | Search the filesystem with ls (list directory), glob (pattern match), or grep (search file contents). |
| allowed-tools | fs_search |
| metadata | {"author":"opencompany","version":"1.0","category":"filesystem"} |
Search the filesystem: list directories, glob pattern match files, or grep file contents. Uses deepagents filesystem backend.
Path sandbox: all paths resolve inside the per-workflow workspace root. Use workspace-relative paths; .. and ~ segments are rejected, and absolute paths are remapped into the workspace.
| Field | Type | Required | Description |
|---|---|---|---|
| mode | string | No | ls (list directory), glob (pattern match), grep (search contents). Default: ls |
| path | string | No | Directory path to search in (default: .) |
| pattern | string | If glob/grep | Glob pattern (e.g., **/*.py) or grep search text |
| file_filter | string | No | Glob to filter files for grep mode (e.g., *.py) |
List directory:
{"mode": "ls", "path": "/path/to/project"}
Find Python files:
{"mode": "glob", "path": ".", "pattern": "**/*.py"}
Search for a function:
{"mode": "grep", "path": ".", "pattern": "def my_function", "file_filter": "*.py"}
Find all config files:
{"mode": "glob", "path": "/etc", "pattern": "*.conf"}
ls mode:
{
"path": ".",
"entries": [
{"name": "src", "type": "dir", "size": null},
{"name": "README.md", "type": "file", "size": 1234}
],
"count": 2
}
glob mode:
{
"path": ".",
"pattern": "**/*.py",
"matches": [{"path": "src/main.py"}, {"path": "tests/test_main.py"}],
"count": 2
}
grep mode:
{
"path": ".",
"pattern": "def main",
"matches": [
{"path": "src/main.py", "line": 42, "text": "def main():"}
],
"count": 1
}
ls to explore directory structureglob to find files by name pattern (supports ** recursive, * wildcard, ? single char)grep to search file contents (literal text, not regex)grep with file_filter to limit search scope