showstart
秀动演出查询与管理工具。用于查询秀动平台上的演出信息,包括演出详情、城市搜索、分类搜索、风格搜索、艺人搜索、附近演出等功能。当用户需要查找演出信息、了解演出详情、按城市/分类/风格搜索演出、或查找附近演出时使用此技能。
Best use case
showstart is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
秀动演出查询与管理工具。用于查询秀动平台上的演出信息,包括演出详情、城市搜索、分类搜索、风格搜索、艺人搜索、附近演出等功能。当用户需要查找演出信息、了解演出详情、按城市/分类/风格搜索演出、或查找附近演出时使用此技能。
Teams using showstart should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/showstart-bot/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How showstart Compares
| Feature / Agent | showstart | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
秀动演出查询与管理工具。用于查询秀动平台上的演出信息,包括演出详情、城市搜索、分类搜索、风格搜索、艺人搜索、附近演出等功能。当用户需要查找演出信息、了解演出详情、按城市/分类/风格搜索演出、或查找附近演出时使用此技能。
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Marketing
Discover AI agents for marketing workflows, from SEO and content production to campaign research, outreach, and analytics.
AI Agents for Startups
Explore AI agent skills for startup validation, product research, growth experiments, documentation, and fast execution with small teams.
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
SKILL.md Source
# Showstart Skill
秀动演出查询与管理工具,支持多种方式搜索和查询演出信息。
## 功能概述
- 查询演出详情
- 关键字搜索演出
- 按城市搜索(支持模糊匹配)
- 按分类搜索(音乐节、演唱会等)
- 按风格搜索(摇滚、流行、民谣等)
- 艺人/场地名搜索
- 附近演出查询(基于经纬度)
## 使用方法
### 1. 查询演出详情
获取指定演出的详细信息:
```python
from scripts.showstart_api import get_activity
activity = get_activity(135591)
```
### 2. 搜索演出
#### 关键字搜索
```python
from scripts.showstart_api import search_keyword
results = search_keyword("周云蓬")
```
#### 城市搜索
```python
from scripts.showstart_api import search_city
# 搜索北京的演出
results = search_city("北京")
# 搜索北京的音乐节
results = search_city("北京", category="音乐节")
# 搜索北京的摇滚演出
results = search_city("北京", style="摇滚")
```
#### 分类搜索
```python
from scripts.showstart_api import search_category
# 搜索音乐节
results = search_category("音乐节")
# 搜索上海的音乐节
results = search_category("音乐节", city="上海")
```
#### 风格搜索
```python
from scripts.showstart_api import search_style
# 搜索摇滚演出
results = search_style("摇滚")
# 搜索北京的民谣演出
results = search_style("民谣", city="北京")
```
#### 艺人/场地搜索
```python
from scripts.showstart_api import search_name
results = search_name("周云蓬")
```
#### 附近演出
```python
from scripts.showstart_api import search_nearby
# 搜索附近的演出(经纬度)
results = search_nearby(116.3956, 39.9299)
```
### 3. 使用命令行工具
```bash
# 查询演出详情
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](references/api_docs.md)Related Skills
---
name: article-factory-wechat
humanizer
Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.
find-skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
tavily-search
Use Tavily API for real-time web search and content extraction. Use when: user needs real-time web search results, research, or current information from the web. Requires Tavily API key.
baidu-search
Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics.
agent-autonomy-kit
Stop waiting for prompts. Keep working.
Meeting Prep
Never walk into a meeting unprepared again. Your agent researches all attendees before calendar events—pulling LinkedIn profiles, recent company news, mutual connections, and conversation starters. Generates a briefing doc with talking points, icebreakers, and context so you show up informed and confident. Triggered automatically before meetings or on-demand. Configure research depth, advance timing, and output format. Walking into meetings blind is amateur hour—missed connections, generic small talk, zero leverage. Use when setting up meeting intelligence, researching specific attendees, generating pre-meeting briefs, or automating your prep workflow.
self-improvement
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Claude ('No, that's wrong...', 'Actually...'), (3) User requests a capability that doesn't exist, (4) An external API or tool fails, (5) Claude realizes its knowledge is outdated or incorrect, (6) A better approach is discovered for a recurring task. Also review learnings before major tasks.
botlearn-healthcheck
botlearn-healthcheck — BotLearn autonomous health inspector for OpenClaw instances across 5 domains (hardware, config, security, skills, autonomy); triggers on system check, health report, diagnostics, or scheduled heartbeat inspection.
linkedin-cli
A bird-like LinkedIn CLI for searching profiles, checking messages, and summarizing your feed using session cookies.
notebooklm
Google NotebookLM 非官方 Python API 的 OpenClaw Skill。支持内容生成(播客、视频、幻灯片、测验、思维导图等)、文档管理和研究自动化。当用户需要使用 NotebookLM 生成音频概述、视频、学习材料或管理知识库时触发。
小红书长图文发布 Skill
## 概述