원클릭으로
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