Maps topics and keywords from user questions to QwenPaw official documentation paths and common source code entry points, reducing blind searching. Intended for
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-qa-source-index-en-73b86925a460 ,按照其中的说明把「QA_source_index」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
When answering questions about installation, configuration, or behavioral principles, first classify by keyword, then open 1–2 paths most likely to contain the answer from the table below, avoiding aimless directory traversal.
$QWENPAW_ROOT: use which qwenpaw to get the executable path. If it is …/.qwenpaw/bin/qwenpaw, the source root is three levels up (consistent with the guidance skill); otherwise, determine it from the user-provided installation path.$DOCS_DIR first (cross-install compatible): run python3 -c "from qwenpaw.constant import DOCS_DIR; print(DOCS_DIR or '')" 2>/dev/null. If it returns a valid path, use it directly. Otherwise, fallback to $QWENPAW_ROOT/website/public/docs/.$DOCS_DIR/<topic>.<language>.md (use the same language as the user: zh / en.). If that is insufficient, read the source entry points listed in the table.| Topic or Keywords (examples) | Preferred Documentation ($DOCS_DIR/) | Common Source Entry Points (relative to $QWENPAW_ROOT) |
|---|---|---|
| Installation, dependencies, getting started | quickstart, intro | src/qwenpaw/cli/, pyproject.toml |
| Configuration, config.json, environment variables | config | src/qwenpaw/config/config.py, src/qwenpaw/constant.py |
| Skills, SKILL, skill_pool, built-in skills | skills | src/qwenpaw/agents/skill_system/, src/qwenpaw/agents/skills/ |
| MCP, plugins | mcp | src/qwenpaw/app/routers/ (grep mcp as needed) |
| Multi-agent, workspace, agent, built-in QA | multi-agent | src/qwenpaw/app/routers/agents.py, src/qwenpaw/app/migration.py, src/qwenpaw/constant.py (BUILTIN_QA_AGENT_ID, etc.) |
| Memory, MEMORY, memory_search | memory | src/qwenpaw/agents/memory/memory_manager.py, src/qwenpaw/agents/tools/memory_search.py |
| Console, frontend | console | console/ |
| CLI, subcommands, init | cli | src/qwenpaw/cli/ (e.g., init_cmd.py) |
| Channels, sessions | channels | Search for channels keyword under src/qwenpaw |
| Context, window | context | config docs + related logic in src/qwenpaw/agents/ |
| Models, API Key | models | src/qwenpaw/config/config.py |
| Heartbeat, HEARTBEAT | heartbeat | Search for heartbeat / HEARTBEAT under src/qwenpaw |
| Desktop client | desktop | desktop/ (if present in the repository) |
| Security | security | Read security.<lang>.md first |
| Errors, FAQ | faq | Read faq.<lang>.md first, then examine source code as needed |
| Commands and slash commands | commands | CLI/command registration modules under src/qwenpaw (search as needed) |
$DOCS_DIR/<topic>.<language>.md (fall back to .en.md if the corresponding language file does not exist). Prefer DOCS_DIR from qwenpaw.constant; fallback to $QWENPAW_ROOT/website/public/docs/.read_file or targeted grep to narrow down to specific symbols — do not read through an entire large directory listing at once.read_file: after identifying candidate paths, you should immediately read and verify the content.