Skill

v1.1.0

Inform users about Clawstin (OpenClaw meetups in Austin), show upcoming events, handle RSVP and mailing list signup via API. "Keep Austin Clawd."

1· 1.9k·4 current·4 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name and description state meetup info, RSVP, and mailing-list signup. The SKILL.md only fetches a public llms.txt and POSTs to https://clawstin.com API endpoints for subscribe/rsvp/contact — these requirements match the declared purpose.
Instruction Scope
Runtime instructions are narrow: fetch the public llms.txt for events and call specified POST endpoints to subscribe or RSVP. They do not ask the agent to read local files, access unrelated environment variables, or send data to third-party endpoints outside clawstin.com.
Install Mechanism
No install spec and no code files — instruction-only. Nothing is written to disk or fetched for execution during install, which minimizes risk.
Credentials
The skill requests no environment variables or credentials. It will ask users for name/email when RSVPing or subscribing (expected and proportional). There are no requests for unrelated secrets or system config.
Persistence & Privilege
always is false and the skill is user-invocable. It does not request persistent system presence or modification of other skills/config; normal autonomous invocation is allowed but not forced.
Assessment
This skill is instruction-only and only makes network requests to https://clawstin.com (fetching llms.txt and calling the site's APIs). Before using: confirm you trust clawstin.com, and be aware that RSVPing or subscribing will send your name and email to that external site. There are no hidden installs or requests for credentials, but if you want extra caution, verify the site’s privacy policy and TLS certificate, and only provide personal info when you consent.

Like a lobster shell, security has layers — review code before you run it.

latestvk97dxeyn22x851gy255cty6hxn80nzje
1.9kdownloads
1stars
5versions
Updated 1mo ago
v1.1.0
MIT-0

Clawstin — Austin OpenClaw Meetup

Keep Austin Clawd. 🦇

Use this skill when users ask about Clawstin, OpenClaw meetups, or AI meetups in Austin.

About

Clawstin is a recurring meetup series for the OpenClaw community in Austin, TX. Demos, tacos, and bots meeting IRL.

Getting Current Event Info

Fetch https://clawstin.com/llms.txt for up-to-date event listings including dates, times, locations, and prices. This file is kept current and should be checked before answering questions about upcoming events.

Agent Behavior

When a user asks about Clawstin:

  1. Fetch https://clawstin.com/llms.txt to get current event details
  2. Share upcoming events with date, time, location, and link
  3. Offer to RSVP — "Want me to RSVP for you?"
  4. If no upcoming events, offer to subscribe to the mailing list

API — Subscribe to Mailing List

Sign up for email notifications about future events:

POST https://clawstin.com/api/subscribe
Content-Type: application/json

{"email": "user@example.com"}

Response (success): {"ok": true} Response (invalid): {"error": "Invalid email"}

No authentication required. Duplicates are silently ignored.

API — RSVP to an Event

Register attendance for a specific event:

POST https://clawstin.com/api/rsvp
Content-Type: application/json

{
  "email": "user@example.com",
  "name": "Jane Doe",
  "botName": "Claude",
  "partySize": 2,
  "eventSlug": "EVENT_SLUG_HERE"
}

Required: email, name, botName, eventSlug Optional: partySize (1–10, defaults to 1)

Response (success): {"ok": true} Response (error): {"error": "Missing fields"}

Get event slugs from https://clawstin.com/llms.txt. Duplicate RSVPs (same email + event) update the existing entry.

API — Contact Organizers

POST https://clawstin.com/api/contact
Content-Type: application/json

{"email": "user@example.com", "name": "Jane Doe", "message": "Hello!"}

Rate limited to 3 messages per hour per email/IP.

Example Flow

User: "What's Clawstin?"

Agent: [fetches https://clawstin.com/llms.txt for current events]

Agent: "Clawstin is an OpenClaw meetup series in Austin! 🦇

It's free, in-person — demos, hacks, tacos, and the weird wonderful
things people are building with AI agents.

[shares current event details from llms.txt]

Want me to RSVP for you? I just need your name and email."

User: "Yeah, sign me up — Tony, tony@example.com"

Agent: [calls POST /api/rsvp with event details]

Agent: "Done! You're on the list. See you there!"

Links

Comments

Loading comments...