Installation

clawhub install seenfinity/tixflow

Summary

Your personal AI agent for event discovery, booking, and coordination

SKILL.md

🎫 TixFlow - AI Event Assistant

Your personal AI agent for event discovery, booking, and coordination

What TixFlow Does

  • πŸ” Event Discovery - Search events by artist, location, date, or genre
  • 🎫 Smart Booking - Purchase tickets across platforms
  • πŸ“… Calendar Sync - Sync events to Google Calendar with reminders
  • ⏰ Waitlist Management - Get notified when sold-out events have availability
  • πŸ€– AI Agent Power - Let your agent handle everything automatically

Installation

bash
clawhub install tixflow

Environment Variables

  • GOOGLE_CALENDAR_API_KEY - Google Calendar API key (for calendar sync)
  • KYD_API_KEY - KYD Labs API key (optional, for real ticketing)

Functions

FunctionStatusDescription
findEvents()βœ… ReadySearch events by criteria
getEventDetails()βœ… ReadyGet event information
purchaseTicket()πŸ”„ DemoPurchase ticket (demo mode)
syncToCalendar()πŸ”„ ReadySync to Google Calendar
addToWaitlist()βœ… ReadyJoin event waitlist
checkPrices()βœ… ReadyCompare prices across platforms

Usage

javascript
const { findEvents, syncToCalendar, purchaseTicket } = require('./scripts/tixflow.js');

// Find events
const events = await findEvents({
  type: 'concert',
  location: 'London',
  date: '2026-03'
});

// Sync to calendar
await syncToCalendar({
  eventId: '123',
  userEmail: 'user@example.com'
});

// Purchase ticket
await purchaseTicket({
  eventId: '123',
  quantity: 2,
  walletAddress: '...'
});

Demo Mode

Without API keys, the skill runs in demo mode with mock event data. This is perfect for:

  • Prototyping
  • Hackathons
  • User demos

Built For

  • KYD Labs Ticketing Track
  • Solana Graveyard Hackathon
  • OpenClaw Agents

Recommended skills

Browse all β†’

Related guides

Hand-picked reading to help you choose, install, and use agent skills.