fboldo/minion-kit · Archived

minion-fetch

Use when the user asks to fetch or retrieve information from a URL.

First seen Mar 25, 2026

Installation

$ npx skills add fboldo/minion-kit --skill minion-fetch

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,350 B
  • docs SUMMARY.md 87 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

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))'

Fetching infered JSON Schema

When the user asks to fetch or retrieve information from a URL, use this skill to infer the JSON schema of the response. This can help in understanding the structure of the data and how to process it further.

npx minion-fetch --json-schema <URL>

Fetching HTML converted to Markdown

When the user asks to fetch or retrieve information from a URL, use this skill to convert HTML content to Markdown format. This can be useful for better readability and integration with Markdown-based systems.

npx minion-fetch --md <URL>