From 4bb2559e77967e438b698285a3381ead49e821b7 Mon Sep 17 00:00:00 2001 From: Simantak Dabhade Date: Sat, 7 Feb 2026 16:55:40 -0800 Subject: [PATCH] updating skills to new endpoint --- skills/tinyfish-web-agent/SKILL.md | 16 ++++++++-------- skills/tinyfish-web-agent/scripts/extract.sh | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/skills/tinyfish-web-agent/SKILL.md b/skills/tinyfish-web-agent/SKILL.md index 8ca62ef..3262186 100644 --- a/skills/tinyfish-web-agent/SKILL.md +++ b/skills/tinyfish-web-agent/SKILL.md @@ -19,7 +19,7 @@ If the key is **not set**, you **MUST stop and ask the user** to add their API k Tell the user: -> You need a Mino API key. Get one at: +> You need a Mino API key. Get one at: > > Then set it so the agent can use it: > @@ -50,7 +50,7 @@ Do NOT proceed until the key is confirmed available. Extract data from a page. Specify the JSON structure you want: ```bash -curl -N -s -X POST "https://mino.ai/v1/automation/run-sse" \ +curl -N -s -X POST "https://agent.tinyfish.ai/v1/automation/run-sse" \ -H "X-API-Key: $MINO_API_KEY" \ -H "Content-Type: application/json" \ -d '{ @@ -64,7 +64,7 @@ curl -N -s -X POST "https://mino.ai/v1/automation/run-sse" \ Extract lists of data with explicit structure: ```bash -curl -N -s -X POST "https://mino.ai/v1/automation/run-sse" \ +curl -N -s -X POST "https://agent.tinyfish.ai/v1/automation/run-sse" \ -H "X-API-Key: $MINO_API_KEY" \ -H "Content-Type: application/json" \ -d '{ @@ -78,7 +78,7 @@ curl -N -s -X POST "https://mino.ai/v1/automation/run-sse" \ For bot-protected sites, add `"browser_profile": "stealth"` to the request body: ```bash -curl -N -s -X POST "https://mino.ai/v1/automation/run-sse" \ +curl -N -s -X POST "https://agent.tinyfish.ai/v1/automation/run-sse" \ -H "X-API-Key: $MINO_API_KEY" \ -H "Content-Type: application/json" \ -d '{ @@ -93,7 +93,7 @@ curl -N -s -X POST "https://mino.ai/v1/automation/run-sse" \ Route through a specific country by adding `"proxy_config"` to the body: ```bash -curl -N -s -X POST "https://mino.ai/v1/automation/run-sse" \ +curl -N -s -X POST "https://agent.tinyfish.ai/v1/automation/run-sse" \ -H "X-API-Key: $MINO_API_KEY" \ -H "Content-Type: application/json" \ -d '{ @@ -115,7 +115,7 @@ When extracting from multiple independent sources, make separate parallel curl c **Good** - Parallel calls: ```bash # Compare pizza prices - run these simultaneously -curl -N -s -X POST "https://mino.ai/v1/automation/run-sse" \ +curl -N -s -X POST "https://agent.tinyfish.ai/v1/automation/run-sse" \ -H "X-API-Key: $MINO_API_KEY" \ -H "Content-Type: application/json" \ -d '{ @@ -123,7 +123,7 @@ curl -N -s -X POST "https://mino.ai/v1/automation/run-sse" \ "goal": "Extract pizza prices as JSON: [{\"name\": str, \"price\": str}]" }' -curl -N -s -X POST "https://mino.ai/v1/automation/run-sse" \ +curl -N -s -X POST "https://agent.tinyfish.ai/v1/automation/run-sse" \ -H "X-API-Key: $MINO_API_KEY" \ -H "Content-Type: application/json" \ -d '{ @@ -135,7 +135,7 @@ curl -N -s -X POST "https://mino.ai/v1/automation/run-sse" \ **Bad** - Single combined call: ```bash # Don't do this - less reliable and slower -curl -N -s -X POST "https://mino.ai/v1/automation/run-sse" \ +curl -N -s -X POST "https://agent.tinyfish.ai/v1/automation/run-sse" \ -H "X-API-Key: $MINO_API_KEY" \ -H "Content-Type: application/json" \ -d '{ diff --git a/skills/tinyfish-web-agent/scripts/extract.sh b/skills/tinyfish-web-agent/scripts/extract.sh index 022a10a..ca1f678 100755 --- a/skills/tinyfish-web-agent/scripts/extract.sh +++ b/skills/tinyfish-web-agent/scripts/extract.sh @@ -64,7 +64,7 @@ PAYLOAD="${PAYLOAD}}" echo "Extracting from ${URL}..." >&2 -exec curl -N -s -X POST "https://mino.ai/v1/automation/run-sse" \ +exec curl -N -s -X POST "https://agent.tinyfish.ai/v1/automation/run-sse" \ -H "X-API-Key: ${MINO_API_KEY}" \ -H "Content-Type: application/json" \ -d "$PAYLOAD"