openclaw/skills/red-apple-events/SKILL.md
Fetch upcoming events from Red Apple Farm and Brew Barn (near the cabin in Phillipston, MA), then sync them to the clawdbotbochman calendar. Use when asked about farm events, Brew Barn events, or cabin-area happenings.
npx skillsauth add Dbochman/dotfiles red-apple-eventsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Fetch upcoming events from two sources near the cabin in Phillipston, MA, and sync them to the [email protected] Google Calendar.
| Source | URL | Type | |--------|-----|------| | Red Apple Farm | https://www.redapplefarm.com/events | Static HTML (Squarespace) | | Brew Barn | https://www.brewbarnma.com/events | Wix (requires JS rendering) |
Red Apple Farm's events page is static HTML. Use curl to fetch it:
curl -s https://www.redapplefarm.com/events
Parse the event listing. Events are in a .user-items-list-item-container structure with:
.list-item-content__title — event name.list-item-content__description — date and detailsAnnual events typically include:
Brew Barn is a Wix site — events are rendered inside an iframe (Boom Calendar widget) that standard snapshots cannot read. You must use the screenshot approach:
https://www.brewbarnma.com/eventsThe calendar shows an "Upcoming Events" agenda view with columns: date, time range, and event name + description.
IMPORTANT: The snapshot tool (aria/accessibility tree) will NOT show events — they are inside a cross-origin iframe from calendar.boomte.ch. You MUST use screenshot to visually read the events.
Brew Barn typically hosts live music nights (Thu-Sun), trivia, bingo, fish fry, and seasonal events. Events are usually:
Some events appear on both sites (e.g., major festivals). Deduplicate by matching event names and dates before creating calendar entries.
Create events on the [email protected] calendar using gws:
gws calendar events insert --params '{"calendarId": "primary"}' --json '{
"summary": "🍎 [Event Name]",
"description": "Source: Red Apple Farm / Brew Barn\nhttps://www.redapplefarm.com/events",
"location": "Red Apple Farm, 455 Highland Ave, Phillipston, MA 01331",
"start": {"date": "2026-07-19"},
"end": {"date": "2026-07-20"}
}' --account [email protected]
gws calendar events insert --params '{"calendarId": "primary"}' --json '{
"summary": "🍺 Live Music at Brew Barn - [Artist]",
"description": "Source: Brew Barn\nhttps://www.brewbarnma.com/events",
"location": "Brew Barn at Red Apple Farm, 455 Highland Ave, Phillipston, MA 01331",
"start": {"dateTime": "2026-07-19T19:00:00-04:00", "timeZone": "America/New_York"},
"end": {"dateTime": "2026-07-19T22:00:00-04:00", "timeZone": "America/New_York"}
}' --account [email protected]
Use the current year dynamically:
YEAR=$(date +%Y)
gws calendar events list --params "{
\"calendarId\": \"primary\",
\"q\": \"Red Apple\",
\"timeMin\": \"${YEAR}-01-01T00:00:00-05:00\",
\"timeMax\": \"${YEAR}-12-31T23:59:59-05:00\",
\"singleEvents\": true,
\"orderBy\": \"startTime\"
}" --account [email protected]
Use these prefixes in event summaries for quick identification:
[email protected] (OpenClaw's calendar), NOT Dylan's personal calendargws outputs JSON — pipe through jq if needed for parsingdevelopment
Search the web for current information, news, facts, and answers. Use when asked questions about current events, needing to look something up, finding websites, researching topics, or when you need up-to-date information beyond your training data.
development
Summarize any URL, YouTube video, podcast, PDF, or file into concise text. Use when asked to read an article, summarize a link, get the gist of a video or podcast, extract content from a URL, or when you need to understand what a web page or document contains.
development
Play music via Spotify and control Google Home speakers. Use when asked to play music, songs, artists, playlists, podcasts, or control speakers/volume/audio.
testing
Create new OpenClaw skills, modify and improve existing skills, and measure skill performance with evals. Use when users want to create a skill from scratch, update or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy. Also use when asked to "make a skill", "turn this into a skill", "improve this skill", or "test this skill".