ワンクリックで
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 職業分類に基づく
| 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":"machina","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 scopeDrive the user's real Chrome over raw CDP by writing Python against browser-harness helpers - screenshot, coordinate clicks, JS evaluation, form fill, tabs. For tasks needing full freedom or the user's own logins.
Work with GitHub via the gh CLI — clone repositories, create/list/merge pull requests, create/list issues, and run any other gh command (API calls, workflow runs, releases, repo administration). List operations return parsed JSON.
Deploy sites and apps to Vercel, inspect deployments, stream logs, and manage projects/env/domains via the Vercel CLI. Deploy a directory and get back the live deployment URL; everything else the CLI supports is available through the custom command passthrough.
Use this skill to generate well-branded interfaces and assets for MachinaOS (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Run AI-generated Python in a hard sandbox (Pydantic Monty) with enforced time + memory limits and opt-in capabilities. Use for untrusted code; supports a Python subset.
Interactive browser automation - navigate, click, type, fill forms, take screenshots, get accessibility snapshots. Supports system Chrome/Edge via auto-detection.