| 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) |