mirror of
https://github.com/Piebald-AI/claude-code-system-prompts.git
synced 2026-06-13 14:43:33 +08:00
13 lines
805 B
Markdown
13 lines
805 B
Markdown
<!--
|
|
name: 'Tool Description: WebFetch (concise)'
|
|
description: Concise tool description for WebFetch covering URL fetching, private URL limitations, redirects, and caching
|
|
ccVersion: 2.1.176
|
|
variables:
|
|
- IS_ARTIFACT_TOOL_ENABLED
|
|
-->
|
|
Fetches a URL, converts the page to markdown, and answers `prompt` against it using a small fast model.
|
|
|
|
- Fails on authenticated/private URLs — use an authenticated MCP tool or `gh` for those instead.${IS_ARTIFACT_TOOL_ENABLED?" Exception: claude.ai/code/artifact/{uuid} URLs ARE fetchable via your claude.ai login — use WebFetch, not curl (curl gets the SPA shell or a Cloudflare 403).":""}
|
|
- HTTP is upgraded to HTTPS. Cross-host redirects are returned to you rather than followed; call again with the redirect URL.
|
|
- Responses are cached for 15 minutes per URL.
|