skills$openclaw/aliyun-search
bryant-ba1.2k

by bryant-ba

aliyun-search – OpenClaw Skill

aliyun-search is an OpenClaw Skills integration for coding workflows. Perform web searches using Alibaba Cloud UnifiedSearch API. Provides advanced search capabilities with configurable parameters.

1.2k stars3.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namealiyun-search
descriptionPerform web searches using Alibaba Cloud UnifiedSearch API. Provides advanced search capabilities with configurable parameters. OpenClaw Skills integration.
ownerbryant-ba
repositorybryant-ba/aliyun-search
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @bryant-ba/aliyun-search
last updatedFeb 7, 2026

Maintainer

bryant-ba

bryant-ba

Maintains aliyun-search in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
scripts
search.py
4.9 KB
_meta.json
281 B
SKILL.md
1.3 KB
SKILL.md

name: aliyun-search description: Perform web searches using Alibaba Cloud UnifiedSearch API. Provides advanced search capabilities with configurable parameters.

Alibaba Cloud UnifiedSearch Skill

This skill provides the ability to perform web searches using Alibaba Cloud UnifiedSearch API.

Features

  • Support multiple search engine types (Generic, GenericAdvanced, LiteAdvanced)
  • Configurable time range filtering
  • Category-specific search (finance, law, medical, etc.)
  • Location-based search (city/IP)
  • Rich result formatting

Usage

Basic Usage

python search.py "云栖大会"

Advanced Usage

python search.py "北京天气" --engine-type "Generic" --city "北京市"
python search.py "金融新闻" --category "finance" --time-range "OneWeek" --engine-type "GenericAdvanced"

Scripts

  • search.py: Python implementation of Alibaba Cloud UnifiedSearch API

Configuration

Before using, you need to:

  1. Obtain Alibaba Cloud AccessKey and Secret
  2. Set environment variables:
    export ALIBABA_CLOUD_ACCESS_KEY_ID="your_access_key_id"
    export ALIBABA_CLOUD_ACCESS_KEY_SECRET="your_access_key_secret"
    
  3. Ensure the required permissions are granted
  4. Install dependencies: pip install aliyun-python-sdk-core requests
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

Configuration

Before using, you need to: 1. Obtain Alibaba Cloud AccessKey and Secret 2. Set environment variables: ```bash export ALIBABA_CLOUD_ACCESS_KEY_ID="your_access_key_id" export ALIBABA_CLOUD_ACCESS_KEY_SECRET="your_access_key_secret" ``` 3. Ensure the required permissions are granted 4. Install dependencies: `pip install aliyun-python-sdk-core requests`

FAQ

How do I install aliyun-search?

Run openclaw add @bryant-ba/aliyun-search in your terminal. This installs aliyun-search into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/bryant-ba/aliyun-search. Review commits and README documentation before installing.