一键导入
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 职业分类
Web browser automation with AI-optimized snapshots for claude-flow agents
Production pipeline for ASCII art video — any format. Converts video/audio/images/generative input into colored ASCII character video output (MP4, GIF, image sequence). Covers: video-to-ASCII conversion, audio-reactive music visualizers, generative ASCII art animations, hybrid video+audio reactive, text/lyrics overlays, real-time terminal rendering. Use when users request: ASCII video, text art video, terminal-style video, character art animation, retro text visualization, audio visualizer in ASCII, converting video to ASCII art, matrix-style effects, or any animated ASCII output.
Production pipeline for mathematical and technical animations using Manim Community Edition. Creates 3Blue1Brown-style explainer videos, algorithm visualizations, equation derivations, architecture diagrams, and data stories. Use when users request: animated explanations, math animations, concept visualizations, algorithm walkthroughs, technical explainers, 3Blue1Brown style videos, or any programmatic animation with geometric/mathematical content.
Production pipeline for interactive and generative visual art using p5.js. Creates browser-based sketches, generative art, data visualizations, interactive experiences, 3D scenes, audio-reactive visuals, and motion graphics — exported as HTML, PNG, GIF, MP4, or SVG. Covers: 2D/3D rendering, noise and particle systems, flow fields, shaders (GLSL), pixel manipulation, kinetic typography, WebGL scenes, audio analysis, mouse/keyboard interaction, and headless high-res export. Use when users request: p5.js sketches, creative coding, generative art, interactive visualizations, canvas animations, browser-based visual art, data viz, shader effects, or any p5.js project.
Gmail, Calendar, Drive, Contacts, Sheets, and Docs integration via Python. Uses OAuth2 with automatic token refresh. No external binaries needed — runs entirely with Google's Python client libraries in the Hermes venv.
Monitor AI/Agent tech news and generate inspiration. Use when user says 研究/继续研究.
| name | copaw_source_index |
| description | 将用户问题中的主题、关键词映射到 CoPaw 官方文档路径与常见源码入口,减少盲目搜索。适用于内置 QA Agent 在回答安装、配置、技能、MCP、多智能体、记忆、CLI 等问题时快速选定要读的文件。 |
| metadata | {"builtin_skill_version":"1.0","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、active_skills、内置技能 | 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:锁定候选路径后应立即读取并核对。