# Send Bailian Search to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bailian-search",
    "name": "Bailian Search",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/zengxi/bailian-search",
    "canonicalUrl": "https://clawhub.ai/zengxi/bailian-search",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/bailian-search",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bailian-search",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "package.json",
      "search.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/bailian-search"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bailian-search",
    "downloadUrl": "https://openagent3.xyz/downloads/bailian-search",
    "agentUrl": "https://openagent3.xyz/skills/bailian-search/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bailian-search/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bailian-search/agent.md"
  }
}
```
## Documentation

### Bailian Search

Real-time web search powered by Alibaba Cloud Bailian (DashScope) MCP service.

### Overview

This skill integrates with Alibaba Cloud Bailian's Web Search MCP (Model Context Protocol) service, enabling AI assistants to retrieve real-time information from the internet, improving response accuracy and timeliness.

### Features

🔍 Real-time web search
🌐 Global information coverage
⚡ Fast response via SSE (Server-Sent Events)
🔒 Secure API key management
🛠️ Easy integration with OpenClaw

### Prerequisites

Alibaba Cloud Account: Register at Alibaba Cloud Bailian
API Key: Obtain a DashScope API Key from the console

### Using ClawHub (Recommended)

openclaw skill install bailian-search
# or
clawhub install bailian-search

### Manual Installation

# Clone to OpenClaw workspace
git clone <repository-url> ~/.openclaw/workspace/skills/bailian-search

# Or download and extract to:
# ~/.openclaw/workspace/skills/bailian-search/

### Set Environment Variable

Option 1: Temporary (current session)

export DASHSCOPE_API_KEY="your-dashscope-api-key"

Option 2: Permanent (recommended)

Add to your shell profile (~/.zshrc or ~/.bashrc):

echo 'export DASHSCOPE_API_KEY="your-dashscope-api-key"' >> ~/.zshrc
source ~/.zshrc

Option 3: OpenClaw Config

openclaw config set env.DASHSCOPE_API_KEY "your-dashscope-api-key"

### Command Line

# After setting environment variable
./search.sh "latest tech news"

# Or one-liner
DASHSCOPE_API_KEY="your-key" ./search.sh "OpenAI GPT-5 release"

### Via AI Assistant

Once configured, simply ask your AI assistant:

"Search for today's tech news"
"Find OpenAI's latest announcements"
"Look up 2025 China EV sales data"

The AI will automatically use this skill to fetch real-time information.

### How It Works

This skill connects to Alibaba Cloud Bailian's MCP SSE (Server-Sent Events) service:

Receives user search query
Establishes SSE connection to Bailian MCP server
Retrieves real-time search results
Returns structured content to the AI

### MCP Configuration (Advanced)

For use with other MCP-compatible clients (Claude Desktop, Cursor, etc.):

{
  "mcpServers": {
    "WebSearch": {
      "type": "sse",
      "name": "Alibaba Cloud Bailian Web Search",
      "description": "Real-time web search powered by Tongyi Lab's Text-Embedding, GTE-reRank, Query Rewriting, and Search Judgment models.",
      "baseUrl": "https://dashscope.aliyuncs.com/api/v1/mcps/WebSearch/sse",
      "headers": {
        "Authorization": "Bearer ${DASHSCOPE_API_KEY}"
      }
    }
  }
}

### Environment Variables

VariableRequiredDescriptionDASHSCOPE_API_KEYYesAlibaba Cloud DashScope API Key

### Command Arguments

./search.sh <query>

ArgumentTypeRequiredDescriptionquerystringYesSearch query string

### Troubleshooting

Error: "DASHSCOPE_API_KEY environment variable is not set"

Solution: Ensure the environment variable is set:

export DASHSCOPE_API_KEY="your-key"

Empty results or timeout

Verify your API key is valid
Check network connectivity
Bailian service may take time to respond, please be patient

How to get DashScope API Key?

Visit Alibaba Cloud Bailian Console
Register/login with Alibaba Cloud account
Create an API Key in the console
Copy the key and set it as environment variable

### Privacy & Security

Your API key is never hardcoded in the skill files
API key is read from environment variables only
No data is stored or logged by this skill
All requests go directly to Alibaba Cloud servers

### License

MIT License - See LICENSE file for details

### Contributing

Contributions are welcome! Please submit issues or pull requests via ClawHub.

### Acknowledgments

Alibaba Cloud Bailian (DashScope) for providing the MCP service
OpenClaw team for the skill framework
MCP community for the protocol specification

### Links

Alibaba Cloud Bailian
DashScope Documentation
OpenClaw Documentation
ClawHub Registry
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: zengxi
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/bailian-search)
- [Send to Agent page](https://openagent3.xyz/skills/bailian-search/agent)
- [JSON manifest](https://openagent3.xyz/skills/bailian-search/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/bailian-search/agent.md)
- [Download page](https://openagent3.xyz/downloads/bailian-search)