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…
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
$ npx -y skills add tinyfish-io/tinyfish-cookbook --skill competitor-update --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/competitor-updateContext preview
The summary Claude sees to decide when to auto-load this skill.
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
name: competitor-product-monitor description: 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 competitor releases", "what are my competitors launching", "monitor competitor products", "competitor product report", or any request to watch a rival company's product updates.
This skill walks the agent through a structured workflow to identify competitors, fetch their latest product release information using the TinyFish web agent, and generate a clean report for the user.
---
Before doing anything, verify TinyFish is available:
which tinyfish && tinyfish --version || echo "TINYFISH_CLI_NOT_INSTALLED" tinyfish auth status
If not installed, stop and tell the user: > Install the TinyFish CLI first: `npm install -g @tiny-fish/cli` > Then authenticate: `tinyfish auth login`
Do NOT proceed until both checks pass.
---
Say: > To get started, please tell me: > 1. **Your industry or field** (e.g. "project management SaaS", "electric vehicles", "cloud storage") > 2. **Your product or company name** (e.g. "Notion", "Tesla", "Dropbox")
Wait for the user's response before continuing.
---
Based on the user's field and product, suggest 3–5 direct competitors. For each competitor, find or infer their primary website URL.
Present them in a clear list, like:
> Here are the competitors I found for **[product]** in **[field]**: > > 1. **Asana** — https://asana.com > 2. **Monday.com** — https://monday.com > 3. **ClickUp** — https://clickup.com > > Does this look right? Feel free to remove any, or add others (with their website URLs if possible).
Wait for the user to confirm or modify the list before proceeding.
**Tips for finding competitor URLs:**
---
For each confirmed competitor, run a separate TinyFish command. Run them in parallel for speed.
Use this command pattern for each competitor:
tinyfish agent run --sync --url "<competitor_url>" \
"Find the latest product release, new feature announcement, or product update on this website. Look at the blog, changelog, newsroom, or press release pages. Return JSON: {\"company\": str, \"latest_release\": str, \"release_date\": str, \"description\": str, \"source_url\": str}"**Good pages to target** (append to the base URL if needed):
If the base URL does not surface release info, retry with one of the above paths appended.
**Parallel execution example** (run all at once):
tinyfish agent run --sync --url "https://asana.com/product" \
"Find the latest product release or feature announcement. Return JSON: {\"company\": str, \"latest_release\": str, \"release_date\": str, \"description\": str, \"source_url\": str}"
tinyfish agent run --sync --url "https://monday.com/blog" \
"Find the latest product release or feature announcement. Return JSON: {\"company\": str, \"latest_release\": str, \"release_date\": str, \"description\": str, \"source_url\": str}"
tinyfish agent run --sync --url "https://clickup.com/blog" \
"Find the latest product release or feature announcement. Return JSON: {\"company\": str, \"latest_release\": str, \"release_date\": str, \"description\": str, \"source_url\": str}"Collect the `resultJson` field from each `COMPLETE` event in the TinyFish output.
---
Once all TinyFish results are collected, compile and present the report to the user in this format:
---
**Competitor Product Release Report** *Field: [field] | Your product: [product] | Generated: [date]*
---
**[Company Name]** Release: [latest_release] Date: [release_date] [description] Source: [source_url]
---
**[Company Name]** ...
---
After the report, ask the user: > Would you like to monitor these competitors periodically for new releases? If yes, let me know how often (e.g. weekly, daily) and how you'd like to be notified (e.g. email, Slack).
---
Each TinyFish result should conform to:
{
"company": "string — competitor company name",
"latest_release": "string — name or title of the release/announcement",
"release_date": "string — date as found on the page, or 'Unknown'",
"description": "string — 1-3 sentence summary of what was released",
"source_url": "string — direct URL to the announcement or changelog page"
}If a field cannot be found, set it to `"Not found"` rather than omitting it.
---
| Problem | Action | |---|---| | TinyFish returns no result | Retry with a more specific URL (e.g. append `/changelog` or `/blog`) | | Page is bot-protected | Note it in the report as "Could not fetch — site may require login" | | Release date missing | Use `"Date not found"` and still include the release info | | Company has no public changelog | Search their blog or press page instead |
---
**User:** I work in the task management space. My product is Todoist.
**Agent finds competitors:** Asana, Notion, TickTick, Any.do, Microsoft To Do
**Agent runs (in parallel):**
tinyfish agent run --sync --url "https://asana.com/product" "..." tinyfish agent run --sync --url "https://notion.so/blog" "..." tinyfish agent run --sync --url "https://ticktick.com/blog" "..." tinyfish agent run --sync --url "https://any.do/blog" "..." tinyfish a
Search 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 →
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…
Diagnose and repair your TinyFish setup — MCP registration, auth, and connectivity. Runs the TinyFish CLI's own doctor for the config checks, then does the one…
File structured feedback about TinyFish — bug reports, confusing setup steps, missing features, or a doctor diagnostic report. Creates a GitHub issue on…
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…
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…
Map the research landscape for any technical or academic topic by searching arXiv, Semantic Scholar, and Google Scholar in parallel. Use when a developer,…