用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zeenie-ai/OpenCompany --skill fs-search-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill to generate well-branded interfaces and assets for OpenCompany (opencompany.sh), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Read, search, and write raw local data (files, CSV, JSON, PDF, HTML, XLSX, images) across the workspace and operator-mounted folders. Use when the user asks about local files, documents, spreadsheets, logs, or data on disk.
Understand images (describe content, answer questions about them, extract text/OCR) via a vision model. Use when the user asks what an image, screenshot, chart, scan, or photo contains.
基于 SOC 职业分类
正在显示 SKILL.md
| 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 the workspace-contained native 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 |
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"}
Find all config files:
{"mode": "glob", "path": "/etc", "pattern": "*.conf"}
ls mode:
{
"path": "/",
"entries": [
{
"path": "/src/",
"is_dir": true,
"size": 0,
"modified_at": "2026-07-24T10:30:00"
},
{
"path": "/README.md",
"is_dir": false,
"size": 1234,
"modified_at": "2026-07-24T10:31:00"
}
],
"count": 2
}
glob mode:
{
"path": "/",
"pattern": "**/*.py",
"matches": [
{
"path": "/src/main.py",
"is_dir": false,
"size": 1200,
"modified_at": "2026-07-24T10:31:00"
},
{
"path": "/tests/test_main.py",
"is_dir": false,
"size": 850,
"modified_at": "2026-07-24T10:32:00"
}
],
"count": 2
}
grep mode:
{
"path": "/",
"pattern": "def main",
"matches": [
{"path": "/src/main.py", "line": 42, "text": "def main():"}
],
"count": 1
}
path values in entries and matches are normalized virtual paths rooted at
the workflow workspace. size and modified_at are best-effort metadata and
may be absent if the backend cannot stat an entry.
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)path; there is no
file_filter parameter