원클릭으로
flow-router-web-fetch
Web fetch (URL → markdown) via flow_router /v1/web/fetch. Pulls a page and returns cleaned markdown text.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Web fetch (URL → markdown) via flow_router /v1/web/fetch. Pulls a page and returns cleaned markdown text.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Chat / code generation via flow_router using OpenAI /v1/chat/completions or Anthropic /v1/messages or Gemini /v1beta/models/...:generateContent with streaming + auto-fallback combos.
Embeddings via flow_router /v1/embeddings. OpenAI-compat shape, routes to active embedding providers (OpenAI, Gemini, Cohere, etc.).
Image generation via flow_router OpenAI-shape /v1/images endpoint. Routes to active media providers (OpenAI, Stability, BFL, Gemini, etc.).
Entry point for flow_router — local/remote AI gateway with OpenAI-compatible REST for chat, image, TTS, embeddings, web search, web fetch. Use when the user mentions flow_router, FLOW_ROUTER_URL, or wants AI without writing provider boilerplate. This skill covers setup + indexes capability skills.
Speech-to-text (audio transcription) via flow_router /v1/audio/transcriptions. OpenAI-compat shape (multipart form), routes to active STT providers.
Text-to-speech via flow_router. OpenAI /v1/audio/speech shape, routes to active TTS providers (OpenAI, ElevenLabs, Gemini TTS, Edge TTS, etc.).
| name | flow-router-web-fetch |
| description | Web fetch (URL → markdown) via flow_router /v1/web/fetch. Pulls a page and returns cleaned markdown text. |
curl -X POST $FLOW_ROUTER_URL/v1/web/fetch \
-H "Authorization: Bearer $FLOW_ROUTER_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/article",
"max_length": 8000
}'
Response: { "url": "...", "title": "...", "markdown": "..." }.
Useful when an LLM needs the content of a specific page without invoking a full browser.