بنقرة واحدة
code-search
Advanced code search with text, AST, and semantic capabilities
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Advanced code search with text, AST, and semantic capabilities
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Display interactive HTML content, visualizations, dashboards, or games on connected OpenClaw nodes (Mac, iOS, Android). Supports live reloading, remote navigation, JS execution, and canvas snapshots for development, testing, and presentation scenarios.
Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm-installed clawhub CLI.
Execute shell commands and scripts on the user's local machine.
多模态 AI 图片理解工具。将图片发送给支持 vision 的 LLM 模型,获取图片的语义理解和详细描述。可分析截图、设计稿、图表、报错信息等。
Unified memory search and management system for retrieving, storing, and organizing information across daily logs, persistent memory, SOPs, and execution traces. Use this skill to recall past events, manage knowledge bases, update important notes, or filter historical data by tags and time ranges.
智能 OCR 文字提取工具。从图片中识别文字,支持中英文混排、图像预处理(灰度化+二值化提升识别率)、表格结构还原为 Markdown 格式。
| name | code-search |
| description | Advanced code search with text, AST, and semantic capabilities |
| version | 1.0.0 |
| author | DunCrew |
| executable | execute.py |
| runtime | python |
| dangerLevel | safe |
| tools | [{"toolName":"search_codebase","description":"Search code using text patterns, AST analysis, or semantic similarity","inputs":{"query":{"type":"string","required":true,"description":"Search query (natural language or keywords)"},"scope":{"type":"string","required":false,"description":"Directory to search in (default: project root)"},"language":{"type":"string","required":false,"description":"Filter by language (e.g., typescript, python)"},"limit":{"type":"integer","required":false,"default":10,"description":"Maximum number of results"},"mode":{"type":"string","required":false,"enum":["text","semantic","auto"],"default":"auto","description":"Search mode: text (ripgrep), semantic (embedding), or auto"}},"keywords":["搜索","查找","代码","search","find","code","grep","函数","类","定义"]},{"toolName":"search_symbol","description":"Find function/class/variable definitions and their references","inputs":{"symbol":{"type":"string","required":true,"description":"Symbol name to search for"},"relation":{"type":"string","required":false,"enum":["definition","calls","called_by","references","implements"],"default":"definition","description":"Type of relationship to find"},"scope":{"type":"string","required":false,"description":"Directory to search in"}},"keywords":["符号","定义","引用","调用","symbol","definition","reference","call"]},{"toolName":"search_files","description":"Search for files by name pattern","inputs":{"pattern":{"type":"string","required":true,"description":"File name pattern (glob syntax, e.g., *.ts, **/*.py)"},"path":{"type":"string","required":false,"description":"Directory to search in"}},"keywords":["文件","目录","file","directory","glob","find"]}] |
| metadata | {"openclaw":{"emoji":"🔍","primaryEnv":"python"}} |
Advanced code search with text, AST, and semantic capabilities.
Search code using text patterns, AST analysis, or semantic similarity.
{"tool": "search_codebase", "args": {"query": "function name", "limit": 10}}
Find function/class/variable definitions and their references.
{"tool": "search_symbol", "args": {"symbol": "MyClass", "relation": "definition"}}
Search for files by name pattern.
{"tool": "search_files", "args": {"pattern": "**/*.ts"}}