원클릭으로
copaw-source-index
将用户问题中的主题、关键词映射到 CoPaw 官方文档路径与常见源码入口,减少盲目搜索。适用于内置 QA Agent 在回答安装、配置、技能、MCP、多智能体、记忆、CLI 等问题时快速选定要读的文件。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
将用户问题中的主题、关键词映射到 CoPaw 官方文档路径与常见源码入口,减少盲目搜索。适用于内置 QA Agent 在回答安装、配置、技能、MCP、多智能体、记忆、CLI 等问题时快速选定要读的文件。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
当用户明确希望连接到已运行的 Chrome 浏览器(connect_cdp)、扫描本地 CDP 端口、或以暴露 CDP 端口的方式启动浏览器(start + cdp_port)时,使用本 skill。用户没有明确提到 CDP、共享浏览器或远程调试时,启动浏览器不得携带 cdp_port,也不得使用 connect_cdp。CDP 模式会暴露浏览器历史、Cookies 等敏感信息,使用前须告知用户;同一 workspace 同时只能运行或连接一个浏览器。
当用户希望打开真实可见的浏览器窗口(而非后台无头模式)时,使用 browser_use 的 headed 参数启动浏览器,随后可正常 open/snapshot/click 等。适用于用户想亲眼看到页面、演示或调试场景。
Use this skill to proactively send a one-way message to a user/session/channel, usually only when the user explicitly asks to send to a channel/session or when proactive notification is needed. First query sessions with copaw chats list, then push with copaw channels send. | 当需要主动向用户/会话/频道单向推送消息时使用,通常仅在用户明确要求发往某个 channel / 会话,或需要主动通知时使用;先用 copaw chats list 查 session,再用 copaw channels send 推送
Use this skill only for scheduled or recurring tasks. Manage cron jobs with copaw cron list/create/get/state/pause/resume/delete/run. Always pass --agent-id explicitly. | 仅在需要未来定时执行或周期执行时使用本 skill。用 copaw cron list/create/get/state/pause/resume/delete/run 管理任务;必须显式传 --agent-id
使用可视浏览器自动完成 CoPaw 的钉钉频道接入。适用于用户提到钉钉、DingTalk、开发者后台、Client ID、Client Secret、机器人、Stream 模式、绑定或配置 channel 的场景;支持遇到登录页时暂停,等待用户登录后继续。
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of "Word doc", "word document", ".docx", or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a "report", "memo", "letter", "template", or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.
| name | copaw_source_index |
| description | 将用户问题中的主题、关键词映射到 CoPaw 官方文档路径与常见源码入口,减少盲目搜索。适用于内置 QA Agent 在回答安装、配置、技能、MCP、多智能体、记忆、CLI 等问题时快速选定要读的文件。 |
| metadata | {"builtin_skill_version":"1.1","copaw":{"emoji":"🗂️","requires":{}}} |
回答 安装、配置、行为原理 类问题时,先 按关键词归类,再按下表 打开 1~2 个最可能命中的路径 阅读,避免长时间无目的遍历。
$COPAW_ROOT:以 which copaw 得到可执行路径,若为 …/.copaw/bin/copaw 则源码根为其上三级目录(与 guidance skill 一致);否则结合用户给出的安装路径判断。website/public/docs/<专题>.<语言>.md(语言取与用户一致:zh / en / ru 等),仍不足再读表中 源码入口。| 主题或关键词(示例) | 优先文档(website/public/docs/) | 常见源码入口(相对 $COPAW_ROOT) |
|---|---|---|
| 安装、依赖、首次使用 | quickstart、intro | src/copaw/cli/、pyproject.toml |
| 配置、config.json、环境变量 | config | src/copaw/config/config.py、src/copaw/constant.py |
| 技能、SKILL、skill_pool、内置技能 | skills | src/copaw/agents/skills_manager.py、src/copaw/agents/skills/ |
| MCP、插件 | mcp | src/copaw/app/routers/(按需 grep mcp) |
| 多智能体、工作区、agent、内置 QA | multi-agent | src/copaw/app/routers/agents.py、src/copaw/app/migration.py、src/copaw/constant.py(BUILTIN_QA_AGENT_ID 等) |
| 记忆、MEMORY、memory_search | memory | src/copaw/agents/memory/memory_manager.py、src/copaw/agents/tools/memory_search.py |
| 控制台、前端 | console | console/ |
| 命令行、子命令、init | cli | src/copaw/cli/(如 init_cmd.py) |
| 频道、会话 | channels | 在 src/copaw 下按 channels 关键词检索 |
| 上下文、窗口 | context | config 文档 + src/copaw/agents/ 相关逻辑 |
| 模型、API Key | models | src/copaw/config/config.py |
| 心跳、HEARTBEAT | heartbeat | 在 src/copaw 下检索 heartbeat / HEARTBEAT |
| 桌面客户端 | desktop | desktop/(若仓库中存在) |
| 安全 | security | 先读 security.<lang>.md |
| 报错、常见问题 | faq | 先 faq.<lang>.md,再针对性看源码 |
| 命令与斜杠指令 | commands | src/copaw 下与 CLI/命令注册相关的模块(按需检索) |
$COPAW_ROOT/website/public/docs/<专题>.<语言>.md(无对应语言时用 .en.md 兜底)。read_file 或局部 grep 缩小到具体符号,不要一次性通读大目录 listing。read_file:锁定候选路径后应立即读取并核对。