TopRank Skills

Home / Claw Skills / 搜索 / sxsw-skill
Official OpenClaw rules 54%

sxsw-skill

SXSW 2026 schedule lookup, event search, speaker info, and recommendations for the March 12-18 conference and festivals in Austin, TX. Use when the user asks about SXSW events, sessions, music showcases, film screenings, speakers, venues, or schedule planning.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 sxsw-skill 技能。 若已安装,则直接安装 sxsw-skill 技能。

Overview

Skill Key
brianleach/sxsw-skill
Author
brianleach
Source Repo
openclaw/skills
Version
-
Source Path
skills/brianleach/sxsw-skill
Latest Commit SHA
df314703951f51fd0c242c79c1762cac7cc80767

Extracted Content

SKILL.md excerpt

# SXSW 2026 Schedule Skill

Real-time SXSW 2026 schedule lookup, event search, speaker info, and recommendations for the March 12-18 conference and festivals in Austin, TX.

## When to Use

- User asks about SXSW 2026 schedule, events, sessions, or speakers
- User asks "What's happening at SXSW today/tomorrow/on [date]"
- User wants SXSW recommendations, must-see events, or keynotes
- User asks about SXSW venue locations or event times
- User asks about music showcases, film screenings, or comedy events
- User asks about specific speakers or topics at SXSW
- User asks about any SXSW 2026 related queries
- User mentions SXSW, South by Southwest, or the Austin March conference

## Data Sources

The skill uses a **local-first** approach with a pre-scraped schedule dataset:

| Source | Type | Description |
|--------|------|-------------|
| `data/sxsw-2026-schedule.json` | Local JSON | Complete schedule with 3,400+ events |
| `data/sxsw-2026-index.json` | Local JSON | Search index (by date, track, venue, format, speaker, keyword) |
| Web search | Live | Supplemental — for schedule changes, cancellations, breaking news |

### When to Use Web Search

Supplement the local dataset with web search when:
- User asks about schedule changes, cancellations, or last-minute additions
- User asks about news, announcements, or breaking SXSW info
- The query isn't found in the local dataset
- The event date is within 48 hours (things change last minute at SXSW)

## Implementation

### Quick Start

```bash
node scripts/sxsw.ts info           # dataset overview
node scripts/sxsw.ts today          # today's events
node scripts/sxsw.ts recommend      # keynotes & featured sessions
```

### Script Usage

The CLI at `scripts/sxsw.ts` supports these commands:

```bash
# List/filter events
node scripts/sxsw.ts events --date 2026-03-14
node scripts/sxsw.ts events --track "AI"
node scripts/sxsw.ts events --venue "JW Marriott"
node scripts/sxsw.ts events --format "keynote"
node scripts/sxsw.ts e...

Related Claw Skills