بنقرة واحدة
code-skill
代码库发现与导航。提供 grep(内容搜索)、glob(文件名匹配)、list(目录列表),与 base_skill 的 read/edit/write 配合使用。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
代码库发现与导航。提供 grep(内容搜索)、glob(文件名匹配)、list(目录列表),与 base_skill 的 read/edit/write 配合使用。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Create a new monoU agent and connect it to Gateway. Use when the user asks to create/new/spawn an agent (本地或远程). Supports one-command local creation, remote deploy, Windows persistent startup, and skill/persona customization.
Minimal terminal coding harness. Use when the user wants coding-agent behavior: read files, run bash commands, edit files with exact replace, write new files; prefer read-before-edit, grep/find/ls for discovery; concise responses with clear paths.
定时任务管理:列出、创建、更新、删除、立即运行与查看状态。调度类型支持 at(一次性时间)、every(固定间隔)、cron(cron 表达式)。不依赖 openclaw;任务持久化在 .first_paramecium/cron/jobs.json。
工作区长期记忆的检索、读取与写入,持久化在 ./.first_paramecium 下。工具:memory_search、memory_get、memory_store、memory_recall、memory_forget、memory_sync。短期/多轮由 state.messages 提供;跨会话用 memory_store 或 write 写入后用 memory_search 回忆。
Minimal terminal and file harness. Use when the agent needs to read files, run bash commands, edit or write files; prefer read-before-edit; concise responses with clear paths.
Export solution content to a standard Word document (.docx). Use when the user says '输出word文档' / '导出Word' / '生成Word' / '下载Word'. Call generate_word_document with the current solution content, client name, and optional date.
| name | code_skill |
| description | 代码库发现与导航。提供 grep(内容搜索)、glob(文件名匹配)、list(目录列表),与 base_skill 的 read/edit/write 配合使用。 |
在 base_skill 的 read / edit / write / bash 之外,提供代码发现类工具,便于按模式查找文件与内容。
| Tool | Use |
|---|---|
| grep | 按正则搜索文件内容,返回路径与行号。用于找函数、常量、错误码等。 |
| glob | 按 glob 模式匹配文件名(如 **/*.tsx),返回文件路径列表。 |
| list | 列出目录结构,可忽略 node_modules 等。不了解结构时先用 list 或 glob。 |