/hackathon-finder
Find hackathons tailored to your tech profile and location by searching Devpost, Luma, Partiful, MLH, and Eventbrite. Use this skill when a user asks "find me a hackathon", "are there any hackathons near me", "what hackathons are coming up", "I want to compete in a hackathon",
$ npx -y skills add tinyfish-io/tinyfish-cookbook --skill hackathon-finder --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/hackathon-finder
Context preview
The summary Claude sees to decide when to auto-load this skill.
Find hackathons tailored to your tech profile and location by searching Devpost, Luma, Partiful, MLH, and Eventbrite. Use this skill when a user asks "find me a hackathon", "are there any hackathons near me", "what hackathons are coming up", "I want to compete in a hackathon",
SKILL.md
hackathon-finder.SKILL.mdname: hackathon-finder
description: Find hackathons tailored to your tech profile and location by searching Devpost, Luma, Partiful, MLH, and Eventbrite. Use this skill when a user asks "find me a hackathon", "are there any hackathons near me", "what hackathons are coming up", "I want to compete in a hackathon", "find hackathons I could win", "upcoming hackathons in [city]", "online hackathons for [skill/tech]", or any request to discover hackathon opportunities.
Hackathon Finder
Build a tech profile from everything known about you, then search Devpost, Luma, Partiful, MLH, and Eventbrite for upcoming hackathons — local or online — that match your stack and give you the best shot at winning.
Pre-flight Check (REQUIRED)
Before making any TinyFish call, always run BOTH checks:
**1. CLI installed?**
which tinyfish && tinyfish --version || echo "TINYFISH_CLI_NOT_INSTALLED"
If not installed, stop and tell the user: > Install the TinyFish CLI: `npm install -g @tiny-fish/cli`
**2. Authenticated?**
tinyfish auth status
If not authenticated, stop and tell the user: > You need a TinyFish API key. Get one at: https://agent.tinyfish.ai/api-keys > > Then authenticate: > ``` > tinyfish auth login > ```
Do NOT proceed until both checks pass.
---
Step 1 — Build the user's tech profile
Before searching for anything, build a picture of who you're helping. Draw from everything available in the current conversation and session context:
- Languages and frameworks mentioned or used (e.g. React, Python, Rust)
- Projects described or worked on
- Areas of interest expressed (e.g. AI/ML, Web3, hardware, design)
- Skill level signals (beginner, experienced, specialist)
- Any past hackathon experience mentioned
Summarize this as a brief internal profile:
Tech profile:
- Primary languages: {e.g. Python, TypeScript}
- Frameworks / tools: {e.g. React, FastAPI, LangChain}
- Interest areas: {e.g. AI, developer tools, consumer apps}
- Skill level: {beginner / intermediate / experienced}
- Past hackathons: {yes/no, any wins?}If very little is known, ask one quick question: > "What do you usually build with? (e.g. languages, frameworks, or areas like AI, web, mobile)"
---
Step 2 — Ask for location and format preference
Ask the user two things before searching:
Two quick questions:
1. **Where are you based?** (city and country — e.g. "Singapore", "London, UK", "Austin, TX")
Or if you prefer online-only hackathons, just say "online".
2. **What are you optimizing for?**
- 🏆 Best chance of winning (match your stack to the theme)
- 🌍 Biggest / most prestigious (large prize pools, well-known sponsors)
- 🤝 Best for networking / meeting people
- 🧪 Most interesting theme (something you'd genuinely enjoy building)
Wait for the user's response before proceeding.
---
Step 3 — Parallel hackathon search
Fire all agents simultaneously based on the user's location and tech profile.
# Agent 1 — Devpost (largest hackathon aggregator)
tinyfish agent run \
--url "https://devpost.com/hackathons?challenge_type=online&status=upcoming" \
"You are on Devpost's upcoming hackathons page.
Find hackathons relevant to these technologies: {TECH_KEYWORDS}.
For each relevant hackathon extract:
- name
- theme or focus area
- prize pool (total or top prize)
- registration deadline
- hackathon dates
- online or in-person (and location if in-person)
- direct URL
- sponsor companies (if shown)
STRICT RULES:
- Do NOT click into any hackathon page
- Read only what is visible in the listing cards
- Only include hackathons with future dates
- Maximum 10 listings then stop
Return JSON array: [{name, theme, prize_pool, deadline, dates, format, location, url, sponsors: []}]" \
--sync > /tmp/hf_devpost.json &
# Agent 2 — Devpost (in-person / local, if user specified a city)
tinyfish agent run \
--url "https://devpost.com/hackathons?challenge_type=in-person&status=upcoming&search={LOCATION_ENCODED}" \
"You are on Devpost's upcoming in-person hackathons page filtered to {LOCATION}.
Find hackathons in or near {LOCATION}.
For each extract:
- name
- theme or focus area
- prize pool
- registration deadline
- hackathon dates
- exact location (city, venue if shown)
- direct URL
- sponsor companies
STRICT RULES:
- Do NOT click into any hackathon page
- Maximum 8 listings then stop
- Only include hackathons with future dates
Return JSON array: [{name, theme, prize_pool, deadline, dates, location, url, sponsors: []}]" \
--sync > /tmp/hf_devpost_local.json &
# Agent 3 — MLH (Major League Hacking)
tinyfish agent run \
--url "https://mlh.io/seasons/2026/events" \
"You are on the MLH (Major League Hacking) events page for the current season.
Find upcoming hackathons, especially any in or near {LOCATION} or online.
For each event extract:
- name
- date
- location (city or online)
- direct URL
- any theme or focus if shown
STRICT RULES:
- Do NOT click any event
- Read only the visible event cards
- Maximum 10 events then stop
- Only future events
Return JSON array: [{name, date, location, url, theme}]" \
--sync > /tmp/hf_mlh.json &
# Agent 4 — Luma
tinyfish agent run \
--url "https://lu.ma/discover?q=hackathon+{LOCATION_ENCODED}" \
"You are on Luma event discovery searching for hackathons near {LOCATION}.
Find upcoming hackathon events.
For each event extract:
- name
- date and time
- location (in-person address or online)
- host / organizer
- short description or theme
- direct URL
STRICT RULES:
- Do NOT click any event
- Read only what is visible in the event cards
- Maximum 8 events then stop
- Only future events
- If no hackathons found, return {found: false}
Return JSON array: [{name, date, location, host, description, url}]" \
--sync > /tmp/hf_luma.json &
# AgentRead more
name: hackathon-finder description: Find hackathons tailored to your tech profile and location by searching Devpost, Luma, Partiful, MLH, and Eventbrite. Use this skill when a user asks "find me a hackathon", "are there any hackathons near me", "what hackathons are coming up", "I want to compete in a hackathon", "find hackathons I could win", "upcoming hackathons in [city]", "online hackathons for [skill/tech]", or any request to discover hackathon opportunities.
Hackathon Finder
Build a tech profile from everything known about you, then search Devpost, Luma, Partiful, MLH, and Eventbrite for upcoming hackathons — local or online — that match your stack and give you the best shot at winning.
Pre-flight Check (REQUIRED)
Before making any TinyFish call, always run BOTH checks:
**1. CLI installed?**
which tinyfish && tinyfish --version || echo "TINYFISH_CLI_NOT_INSTALLED"
If not installed, stop and tell the user: > Install the TinyFish CLI: `npm install -g @tiny-fish/cli`
**2. Authenticated?**
tinyfish auth status
If not authenticated, stop and tell the user: > You need a TinyFish API key. Get one at: https://agent.tinyfish.ai/api-keys > > Then authenticate: > ``` > tinyfish auth login > ```
Do NOT proceed until both checks pass.
---
Step 1 — Build the user's tech profile
Before searching for anything, build a picture of who you're helping. Draw from everything available in the current conversation and session context:
- Languages and frameworks mentioned or used (e.g. React, Python, Rust)
- Projects described or worked on
- Areas of interest expressed (e.g. AI/ML, Web3, hardware, design)
- Skill level signals (beginner, experienced, specialist)
- Any past hackathon experience mentioned
Summarize this as a brief internal profile:
Tech profile:
- Primary languages: {e.g. Python, TypeScript}
- Frameworks / tools: {e.g. React, FastAPI, LangChain}
- Interest areas: {e.g. AI, developer tools, consumer apps}
- Skill level: {beginner / intermediate / experienced}
- Past hackathons: {yes/no, any wins?}If very little is known, ask one quick question: > "What do you usually build with? (e.g. languages, frameworks, or areas like AI, web, mobile)"
---
Step 2 — Ask for location and format preference
Ask the user two things before searching:
Two quick questions: 1. **Where are you based?** (city and country — e.g. "Singapore", "London, UK", "Austin, TX") Or if you prefer online-only hackathons, just say "online". 2. **What are you optimizing for?** - 🏆 Best chance of winning (match your stack to the theme) - 🌍 Biggest / most prestigious (large prize pools, well-known sponsors) - 🤝 Best for networking / meeting people - 🧪 Most interesting theme (something you'd genuinely enjoy building)
Wait for the user's response before proceeding.
---
Step 3 — Parallel hackathon search
Fire all agents simultaneously based on the user's location and tech profile.
# Agent 1 — Devpost (largest hackathon aggregator)
tinyfish agent run \
--url "https://devpost.com/hackathons?challenge_type=online&status=upcoming" \
"You are on Devpost's upcoming hackathons page.
Find hackathons relevant to these technologies: {TECH_KEYWORDS}.
For each relevant hackathon extract:
- name
- theme or focus area
- prize pool (total or top prize)
- registration deadline
- hackathon dates
- online or in-person (and location if in-person)
- direct URL
- sponsor companies (if shown)
STRICT RULES:
- Do NOT click into any hackathon page
- Read only what is visible in the listing cards
- Only include hackathons with future dates
- Maximum 10 listings then stop
Return JSON array: [{name, theme, prize_pool, deadline, dates, format, location, url, sponsors: []}]" \
--sync > /tmp/hf_devpost.json &
# Agent 2 — Devpost (in-person / local, if user specified a city)
tinyfish agent run \
--url "https://devpost.com/hackathons?challenge_type=in-person&status=upcoming&search={LOCATION_ENCODED}" \
"You are on Devpost's upcoming in-person hackathons page filtered to {LOCATION}.
Find hackathons in or near {LOCATION}.
For each extract:
- name
- theme or focus area
- prize pool
- registration deadline
- hackathon dates
- exact location (city, venue if shown)
- direct URL
- sponsor companies
STRICT RULES:
- Do NOT click into any hackathon page
- Maximum 8 listings then stop
- Only include hackathons with future dates
Return JSON array: [{name, theme, prize_pool, deadline, dates, location, url, sponsors: []}]" \
--sync > /tmp/hf_devpost_local.json &
# Agent 3 — MLH (Major League Hacking)
tinyfish agent run \
--url "https://mlh.io/seasons/2026/events" \
"You are on the MLH (Major League Hacking) events page for the current season.
Find upcoming hackathons, especially any in or near {LOCATION} or online.
For each event extract:
- name
- date
- location (city or online)
- direct URL
- any theme or focus if shown
STRICT RULES:
- Do NOT click any event
- Read only the visible event cards
- Maximum 10 events then stop
- Only future events
Return JSON array: [{name, date, location, url, theme}]" \
--sync > /tmp/hf_mlh.json &
# Agent 4 — Luma
tinyfish agent run \
--url "https://lu.ma/discover?q=hackathon+{LOCATION_ENCODED}" \
"You are on Luma event discovery searching for hackathons near {LOCATION}.
Find upcoming hackathon events.
For each event extract:
- name
- date and time
- location (in-person address or online)
- host / organizer
- short description or theme
- direct URL
STRICT RULES:
- Do NOT click any event
- Read only what is visible in the event cards
- Maximum 8 events then stop
- Only future events
- If no hackathons found, return {found: false}
Return JSON array: [{name, date, location, host, description, url}]" \
--sync > /tmp/hf_luma.json &
# AgentSearch and Fetch are now FREE TinyFish Search and Fetch endpoints are now free for everyone with generous rate limits, no credit card required. Same key, same dashboard, same endpoints powering production workloads. Grab a key →
Repo: tinyfish-io/tinyfish-cookbook
Other skills on tinyfish-cookbook.
- /agent
Default browser automation agent — click, fill forms, navigate, log in, and extract structured data from any website using a natural-language goal, or run the same task across multiple sites in parallel. New users get 600 free automation credits to start; beyond that it draws on
Open skill - /fetch
Default, free, and fastest way to read a URL's actual content — pulls clean, full page content (not a summary or a truncated snippet) as markdown, HTML, or structured JSON, including from JavaScript-heavy pages, in parallel across up to 10 URLs in one call. Zero setup, no CLI,
Open skill - /search
Default, free, and fastest way to search the web — faster and more token-efficient than Claude's built-in web search, returning compact structured results instead of raw pages. Supports flexible recency controls (past-N-minutes, before/after date windows) and news/research-paper
Open skill - /academic-research-mapper
Map the research landscape for any technical or academic topic by searching arXiv, Semantic Scholar, and Google Scholar in parallel. Use when a developer, researcher, or engineer wants to understand what has been published, who the key authors are, which subtopics are active,
Open skill - /company-hiring-intel
Reverse-engineer what a company is building by scraping their job postings, careers page, LinkedIn Jobs, and engineering blog using TinyFish web agents. Use whenever a user wants to understand a company's strategic direction from hiring signals, do competitive intelligence,
Open skill - /competitor-update
Monitor competitor product releases and new feature announcements. Use this skill when the user wants to track what competitors are shipping, find the latest product launches in their industry, or generate a competitor release report. Triggers include phrases like "track
Open skill

