minion-fetch
Installation
SKILL.md
Common interface
When the user asks to fetch or retrieve information from a URL, use this skill to perform the fetch operation. This can be used for various purposes, such as retrieving data, validating information, or exploring APIs.
npx minion-fetch <URL> --headers "Header-Name: Header-Value" --method GET --attempts 3
Using plugins
Fetching and applying jq
When the user asks to fetch or retrieve information from a URL and process it with jq, use this skill to perform the fetch operation and apply the jq filter to the response.
npx minion-fetch --jq <URL> --apply '.data | map(select(.active == true))'