Install
openclaw skills install tixflowAI-powered event assistant for discovering, booking, and coordinating event tickets. Integrates with KYD Labs protocol and Google Calendar.
openclaw skills install tixflowYour personal AI agent for event discovery, booking, and coordination
clawhub install tixflow
GOOGLE_CALENDAR_API_KEY - Google Calendar API key (for calendar sync)KYD_API_KEY - KYD Labs API key (optional, for real ticketing)| Function | Status | Description |
|---|---|---|
findEvents() | ✅ Ready | Search events by criteria |
getEventDetails() | ✅ Ready | Get event information |
purchaseTicket() | 🔄 Demo | Purchase ticket (demo mode) |
syncToCalendar() | 🔄 Ready | Sync to Google Calendar |
addToWaitlist() | ✅ Ready | Join event waitlist |
checkPrices() | ✅ Ready | Compare prices across platforms |
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: '...'
});
Without API keys, the skill runs in demo mode with mock event data. This is perfect for: