一键导入
minion-fetch
Fetch a URL with minion-fetch and optionally apply jq, JSON Schema, or Markdown transforms.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Fetch a URL with minion-fetch and optionally apply jq, JSON Schema, or Markdown transforms.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create Open Interoperable Agent Plugin (OIAP) projects and plugin definitions. Use this skill whenever the user wants to create, scaffold, design, or improve an OIAP plugin, write an oiap.plugin.ts file, define commands, instructions, skills, hooks, agents, policies, or build target bundles with the npm-published OIAP CLI.
Fetch a URL with minion-fetch and optionally apply jq, JSON Schema, or Markdown transforms.
Use when the user asks to fetch or retrieve information from a URL.
| name | minion-fetch |
| description | Fetch a URL with minion-fetch and optionally apply jq, JSON Schema, or Markdown transforms. |
| user-invocable | true |
Fetch a URL with minion-fetch and optionally apply jq, JSON Schema, or Markdown transforms.
Use this command when the user wants to fetch a URL or transform the fetched content.
minion-fetch if it is already available on PATH.npx minion-fetch.minion-fetch is not installed.Build the command from the user's request:
<executable> <url>.--method <method> only when the user asks for something other than the
default GET.--headers "Name: Value" arguments for custom headers.--attempts <number> only when the user explicitly wants retries.--jq --apply '<filter>' to filter JSON responses. The jq binary must
already be installed on the machine.--json-schema to infer a schema from a JSON response.--md to convert an HTML response to Markdown.Operating rules:
Ask for the URL if the request does not include one.
Do not invent headers, jq filters, request bodies, or retry counts.
Run the fetch once per request unless the user asks for another variation.
Report HTTP failures, missing tools, or malformed headers directly.
When the output is long, return a concise summary and offer the full body.
/minion-fetch https://example.com
/minion-fetch https://api.example.com/users --jq --apply '.users[] | select(.active)'