Skill
v0.2.2AI-powered event assistant for discovering, booking, and coordinating event tickets. Integrates with KYD Labs protocol and Google Calendar.
Security Scan
OpenClaw
Suspicious
medium confidencePurpose & Capability
The skill declares Google Calendar and KYD Labs integration (GOOGLE_CALENDAR_API_KEY, KYD_API_KEY) which is coherent with its description. However other files (README.md and skill.json) reference additional capabilities (Google Maps, CrossMint cNFT minting) and related env vars (GOOGLE_MAPS_API_KEY, CROSSMINT_API_KEY, CROSSMINT_COLLECTION_ID) that are not declared in the registry metadata or SKILL.md requires list. There are also small metadata mismatches (skill.json homepage vs registry 'homepage: none'). These inconsistencies make it unclear what credentials and integrations are truly required.
Instruction Scope
SKILL.md instructs normal usage and mentions demo mode and an npm googleapis install. But example usage references './scripts/tixflow.js' which does not exist in the package (actual file is scripts/index.js). README instructs creating a .env with extra keys not declared elsewhere. The runtime instructions do not tell the agent to read unrelated system files, nor do the included JS/TS source files perform obvious exfiltration, but the mismatched examples and undocumented env requirements give the agent broad, unclear discretion.
Install Mechanism
There is no download-from-URL or extract install; the SKILL.md metadata suggests installing the 'googleapis' npm package and package.json lists it as a dependency. No high-risk external installers or obfuscated download steps are present. Still, the skill is instruction-only in the registry while including code files—installation behavior may depend on the platform's standard 'clawhub install' flow, so verify what gets written to disk.
Credentials
Registry and SKILL.md declare only GOOGLE_CALENDAR_API_KEY and KYD_API_KEY, which are reasonable. However README and skill.json list additional API keys (Google Maps, CrossMint, CrossMint collection ID) and tools that imply wallet detection and scraping — none of these extra env vars are declared in the registry 'requires.env'. This mismatch is concerning because the skill's manifest implies it may need more sensitive credentials than the registry advertises.
Persistence & Privilege
The skill does not request 'always: true', does not claim to modify other skills or system-wide configs, and defaults to normal autonomous invocation. There is no installer that requests persistent system-level privileges in the provided files.
What to consider before installing
Do not provide API keys yet. Specific suggestions:
- Verify the source: the registry lists no homepage; skill.json points to a GitHub repo—confirm the repo and maintainer before installing.
- Ask the author to clarify which env vars are actually required (GOOGLE_MAPS_API_KEY, CROSSMINT_* appear in README/skill.json but are not declared in SKILL.md/registry). Only provide the minimum key(s) needed.
- Note the usage example references './scripts/tixflow.js' but the code includes scripts/index.js — this mismatch could cause runtime errors or indicate stale/modified packaging; request an updated package or inspect the platform's installed files after install.
- The included code is mock/demo-only (no real KYD or Google API calls in scripts/index.js), but comments say 'in production' it would call external APIs; if you plan to enable production mode, review network-call implementations first.
- Prefer running in demo_mode or in a sandboxed environment and audit network traffic before supplying real credentials.
- If you need the CrossMint or Google Maps features, ask the maintainer to explicitly declare those env vars in the skill manifest and provide justification.
Given the metadata and file inconsistencies, treat this skill as untrusted until provenance and required permissions are clarified.Like a lobster shell, security has layers — review code before you run it.
Runtime requirements
EnvGOOGLE_CALENDAR_API_KEY, KYD_API_KEY
latest
🎫 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
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
| 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 |
Usage
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
Comments
Loading comments...
