guidance

GitHub

处理 QwenPaw 安装配置等用户提问,优先读取本地文档,不足时回退至官网。

src/qwenpaw/agents/skills/guidance-en/SKILL.md agentscope-ai/QwenPaw

触发场景

QwenPaw 安装问题 环境配置咨询 依赖需求查询

安装

npx skills add agentscope-ai/QwenPaw --skill guidance -g -y
更多选项

非标准路径

npx skills add https://github.com/agentscope-ai/QwenPaw/tree/main/src/qwenpaw/agents/skills/guidance-en -g -y

不安装直接使用

npx skills use agentscope-ai/QwenPaw@guidance

指定 Agent (Claude Code)

npx skills add agentscope-ai/QwenPaw --skill guidance -a claude-code -g -y

安装 repo 全部 skill

npx skills add agentscope-ai/QwenPaw --all -g -y

预览 repo 内 skill

npx skills add agentscope-ai/QwenPaw --list

SKILL.md

Frontmatter
{
    "name": "guidance",
    "metadata": {
        "qwenpaw": {
            "emoji": "🧭",
            "requires": []
        },
        "builtin_skill_version": "1.3"
    },
    "description": "Answer user questions about QwenPaw installation and configuration: first locate and read local documentation, then distill the answer; if local information is insufficient, fall back to the official website documentation."
}

QwenPaw Installation and Configuration Q&A Guide

Use this skill when the user asks about QwenPaw installation, initialization, environment configuration, dependency requirements, or common configuration options.

Core principles:

  • Check local documentation first, then answer
  • Base answers on what has actually been read, do not speculate
  • Answer in the same language the user used to ask

Standard Flow

Step 1: Locate the Documentation Directory

Use built-in path resolution (works for all install methods)

DOCS_DIR=$(python3 -c "from qwenpaw.constant import DOCS_DIR; print(DOCS_DIR or '')" 2>/dev/null)

If the above returns a non-empty path and the directory exists, use it directly and skip to Step 2.

If it fails (e.g., older version without DOCS_DIR), fall back in the following order:

Check for documentation directory in memory

First, check whether there is a documentation directory in memory. If found, use it directly; otherwise, proceed to the next step.

# Get the documentation directory from memory
DOCS_DIR=$(find ~/.qwenpaw/memory/ -type d -name "docs")

If there is no documentation directory in memory, continue with the following logic.

Check the documentation directory in the project source code

Run the following script logic to obtain the variable $QWENPAW_ROOT:

# Get the absolute path of the binary
QWENPAW_PATH=$(which qwenpaw 2>/dev/null || whereis qwenpaw | awk '{print $2}')

# Logical deduction: if the path contains .qwenpaw/bin/qwenpaw, the root is three levels up
# Example: /path/to/QwenPaw/.qwenpaw/bin/qwenpaw -> /path/to/QwenPaw
if [[ "$QWENPAW_PATH" == *".qwenpaw/bin/qwenpaw" ]]; then
    QWENPAW_ROOT=$(echo "$QWENPAW_PATH" | sed 's/\/\.qwenpaw\/bin\/qwenpaw//')
else
    # Fallback: try to get the parent of the parent directory
    QWENPAW_ROOT=$(dirname $(dirname "$QWENPAW_PATH") 2>/dev/null || echo ".")
fi

echo "Detected QwenPaw Root: $QWENPAW_ROOT"

Verify and list the documentation directory: Use the derived $QWENPAW_ROOT to locate the documentation:

# Construct the standard documentation path
DOCS_DIR="$QWENPAW_ROOT/website/public/docs/"

# Check if the path exists and list files
if [ -d "$DOCS_DIR" ]; then
    find "$DOCS_DIR" -type f -name "*.md" | head -n 100
else
    # If the derived path is incorrect, perform a global fuzzy search
    find "$QWENPAW_ROOT" -type d -name "docs" | grep "website/public/docs"
fi

If project documentation does not exist, search the working directory

If documentation is still not found, search for available documentation content under the qwenpaw installation path:

# Look for characteristic files such as faq.en.md or config.zh.md
FILE_PATH=$(find . -type f -name "faq.en.md" -o -name "config.zh.md" | head -n 1)
if [ -n "$FILE_PATH" ]; then
    # Use dirname to get the directory containing the file
    DOCS_DIR=$(dirname "$FILE_PATH")
fi

If a documentation directory is found, save it in memory in this format:

# Documentation Directory
$DOCS_DIR = <doc_path>

Step 2: Documentation Search and Matching

Documentation files follow the naming format <topic>.<lang>.md (e.g., config.zh.md, config.en.md, quickstart.zh.md).

Use the find command to list all matching documents in the target directory, and identify the target as <doc_path> based on filename keywords (e.g., install, env, setup).

# List all matching documents
find $DOCS_DIR -type f -name "*.md"

If no suitable document is found, read all documentation contents in the next step.

Step 3: Read the Documentation Content

After finding candidate documents, read and identify the paragraphs relevant to the question. You can use:

  • cat <doc_path>
  • file_reader skill (recommended for longer documents or paginated reading)

If the documentation is long, prioritize reading the sections most relevant to the question (installation steps, configuration options, example commands, notes, version requirements).

Step 4: Extract Information and Respond

Extract key information from the documentation and organize it into an actionable answer:

  • Give the direct conclusion first
  • Then provide steps / commands / configuration examples
  • Include necessary prerequisites and common pitfalls

Language requirement: the answer language must match the language of the user's question (answer in Chinese if asked in Chinese, answer in English if asked in English).

Step 5 (Optional): Official Website Lookup

If the previous steps cannot be completed (no local documentation, missing documentation, or insufficient information), use the official website as a fallback:

Answer based on the content available from the official website, and clearly state in the answer that the conclusion comes from the official website documentation.

Output Quality Requirements

  • Do not fabricate non-existent configuration options or commands
  • When there are version differences, clearly note "please refer to the current documentation version"
  • For paths, commands, and configuration keys, provide copy-pasteable original snippets whenever possible
  • If information is still insufficient, clearly state the gaps and tell the user what additional information is needed (e.g., operating system, installation method, error logs)

版本历史

  • d744922 当前 2026-08-20 07:41

同 Skill 集合

plugins/bundle/cloudpaw/skills/alicloud_cli/SKILL.md
plugins/bundle/cloudpaw/skills/terraform-cli-setup/SKILL.md
plugins/bundle/cloudpaw/skills/terraform-skill/SKILL.md
plugins/bundle/computer-use/skills/computer_use/SKILL.md
src/qwenpaw/agents/skills/browser-en/SKILL.md
src/qwenpaw/agents/skills/browser-zh/SKILL.md
src/qwenpaw/agents/skills/channel_message-en/SKILL.md
src/qwenpaw/agents/skills/channel_message-zh/SKILL.md
src/qwenpaw/agents/skills/chat_with_agent-en/SKILL.md
src/qwenpaw/agents/skills/chat_with_agent-zh/SKILL.md
src/qwenpaw/agents/skills/cron-en/SKILL.md
src/qwenpaw/agents/skills/cron-zh/SKILL.md
src/qwenpaw/agents/skills/dingtalk_channel-en/SKILL.md
src/qwenpaw/agents/skills/dingtalk_channel-zh/SKILL.md
src/qwenpaw/agents/skills/docx-zh/SKILL.md
src/qwenpaw/agents/skills/file_reader-en/SKILL.md
src/qwenpaw/agents/skills/file_reader-zh/SKILL.md
src/qwenpaw/agents/skills/guidance-zh/SKILL.md
src/qwenpaw/agents/skills/mailbox-en/SKILL.md
src/qwenpaw/agents/skills/mailbox-zh/SKILL.md
src/qwenpaw/agents/skills/make_plan-en/SKILL.md
src/qwenpaw/agents/skills/make_plan-zh/SKILL.md
src/qwenpaw/agents/skills/make-skill-en/SKILL.md
src/qwenpaw/agents/skills/make-skill-zh/SKILL.md
src/qwenpaw/agents/skills/multi_agent_collaboration-en/SKILL.md
src/qwenpaw/agents/skills/multi_agent_collaboration-zh/SKILL.md
src/qwenpaw/agents/skills/pdf-en/SKILL.md
src/qwenpaw/agents/skills/pdf-zh/SKILL.md
src/qwenpaw/agents/skills/pptx-zh/SKILL.md
src/qwenpaw/agents/skills/QA_source_index-en/SKILL.md
src/qwenpaw/agents/skills/QA_source_index-zh/SKILL.md
src/qwenpaw/agents/skills/xlsx-zh/SKILL.md
src/qwenpaw/agents/skills/docx-en/SKILL.md
src/qwenpaw/agents/skills/pptx-en/SKILL.md
src/qwenpaw/agents/skills/xlsx-en/SKILL.md

元信息

文件数
0
版本
5072269
Hash
f07e74a8
收录时间
2026-08-20 07:41

首页 - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-09-04 13:24
浙ICP备14020137号-1 $访客地图$