https://github.com/zhangtony239/get-searched-reply
A CLI skill for agents to get AI-generated search summaries using Alibaba Cloud's model-side search.
https://github.com/zhangtony239/get-searched-reply
cli-tools openclaw python skills
Last synced: 29 days ago
JSON representation
A CLI skill for agents to get AI-generated search summaries using Alibaba Cloud's model-side search.
- Host: GitHub
- URL: https://github.com/zhangtony239/get-searched-reply
- Owner: zhangtony239
- License: mit
- Created: 2026-04-28T21:58:49.000Z (about 1 month ago)
- Default Branch: master
- Last Pushed: 2026-04-28T23:46:07.000Z (about 1 month ago)
- Last Synced: 2026-04-29T00:08:00.341Z (about 1 month ago)
- Topics: cli-tools, openclaw, python, skills
- Language: Python
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Get Searched Reply
English | [简体中文](README_zh.md)
This is a CLI Skill project that wraps Alibaba Cloud's model-side search capabilities. It allows Agents to obtain AI-generated search summaries via the `search 'query'` command.
## Features
- **Online Search**: Leverages the web search capabilities of LLMs (e.g., Qwen-plus) to fetch up-to-date information.
- **Configuration Driven**: Easily manage API Key, System Prompt, and model parameters via `config.yaml`.
- **CLI Integration**: Supports installation as a command-line tool for seamless Agent invocation.
## Installation
Install in editable mode using `uv`:
```bash
uv tool install -e .
```
## Configuration
Create a `config.yaml` in the project root (refer to `example.config.yaml`):
```yaml
api_key: "your_api_key_here"
system_prompt: "You are a helpful assistant."
model: "deepseek-v4-flash"
base_url: "https://dashscope.aliyuncs.com/compatible-mode/v1"
```
## Usage
### Agent Invocation Example
Agents can execute the following command to get a search summary:
```bash
search "How many gold medals did China win at the Paris Olympics?"
```
### Python Invocation
```python
from main import get_reply
reply = get_reply("Your question")
print(reply)
```