Showstart Skills

v1.0.3

秀动演出查询与管理工具。用于查询秀动平台上的演出信息,包括演出详情、城市搜索、分类搜索、风格搜索、艺人搜索、附近演出等功能。当用户需要查找演出信息、了解演出详情、按城市/分类/风格搜索演出、或查找附近演出时使用此技能。

0· 190·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for austin-am/showstart-bot.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Showstart Skills" (austin-am/showstart-bot) from ClawHub.
Skill page: https://clawhub.ai/austin-am/showstart-bot
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install showstart-bot

ClawHub CLI

Package manager switcher

npx clawhub@latest install showstart-bot
Security Scan
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
The name/description (演出查询与管理) align with the included Python client and SKILL.md: functions and CLI cover activity, keyword, city, category, style, name, nearby and an all-artists endpoint. The requested resources (none) are appropriate for a simple API client.
Instruction Scope
SKILL.md instructs the agent to call the provided Python functions or run the CLI to query a remote API — this stays within the skill's stated purpose. Note: the client issues HTTP requests to an external endpoint (BASE_URL). That means queries (including any coordinates or keywords the user supplies) are transmitted to that remote host; this is expected but relevant for privacy and trust.
Install Mechanism
No install spec (instruction-only + a simple Python script). Nothing is downloaded or written during install. This is low risk from an install mechanism perspective.
Credentials
The skill requires no environment variables, credentials, or config paths. The lack of requested secrets is proportional to the described functionality.
Persistence & Privilege
always:false and default invocation settings are used. The skill does not request persistent system privileges or modify other skills/configs.
Assessment
This skill is coherent for searching Showstart events, but it sends user queries to an external server (BASE_URL in the script). Before installing or using it: 1) verify the endpoint (skill.showstart.com) and prefer HTTPS — the docs mention https://skill.showstart.com while the script uses http:// (this mismatch should be fixed to avoid plaintext transport); 2) avoid sending sensitive or private data through the skill; 3) if you care about provenance, ask the publisher for a homepage or source repo or run the script in a restricted/sandboxed environment and monitor outgoing requests; 4) consider changing the BASE_URL to a verified endpoint (https) if you obtain one.

Like a lobster shell, security has layers — review code before you run it.

latestvk97b3zng4jpvk267ckaef1c7jd83mt34
190downloads
0stars
4versions
Updated 1mo ago
v1.0.3
MIT-0

Showstart Skill

秀动演出查询与管理工具,支持多种方式搜索和查询演出信息。

功能概述

  • 查询演出详情
  • 关键字搜索演出
  • 按城市搜索(支持模糊匹配)
  • 按分类搜索(音乐节、演唱会等)
  • 按风格搜索(摇滚、流行、民谣等)
  • 艺人/场地名搜索
  • 附近演出查询(基于经纬度)

使用方法

1. 查询演出详情

获取指定演出的详细信息:

from scripts.showstart_api import get_activity

activity = get_activity(135591)

2. 搜索演出

关键字搜索

from scripts.showstart_api import search_keyword

results = search_keyword("周云蓬")

城市搜索

from scripts.showstart_api import search_city

# 搜索北京的演出
results = search_city("北京")

# 搜索北京的音乐节
results = search_city("北京", category="音乐节")

# 搜索北京的摇滚演出
results = search_city("北京", style="摇滚")

分类搜索

from scripts.showstart_api import search_category

# 搜索音乐节
results = search_category("音乐节")

# 搜索上海的音乐节
results = search_category("音乐节", city="上海")

风格搜索

from scripts.showstart_api import search_style

# 搜索摇滚演出
results = search_style("摇滚")

# 搜索北京的民谣演出
results = search_style("民谣", city="北京")

艺人/场地搜索

from scripts.showstart_api import search_name

results = search_name("周云蓬")

附近演出

from scripts.showstart_api import search_nearby

# 搜索附近的演出(经纬度)
results = search_nearby(116.3956, 39.9299)

3. 使用命令行工具

# 查询演出详情
python scripts/showstart_api.py activity 135591

# 关键字搜索
python scripts/showstart_api.py keyword 周云蓬

# 城市搜索
python scripts/showstart_api.py city 北京

# 分类搜索
python scripts/showstart_api.py category 音乐节

# 风格搜索
python scripts/showstart_api.py style 摇滚

# 艺人/场地搜索
python scripts/showstart_api.py name 周云蓬

# 附近演出
python scripts/showstart_api.py nearby 116.3956 39.9299

API 限制

  • 频率限制: 1秒最多1次请求,10分钟最多60次请求
  • 缓存: 搜索结果缓存1小时
  • 分页: 默认每页100条,最大100条

错误处理

错误码说明
100001资源不存在
100002缺少必要参数
100003频率限制超限

参考资料

详细API文档请参见:references/api_docs.md

Comments

Loading comments...