Loading...
Loading...
Interact with DeerFlow AI agent platform via its HTTP API. Use this skill when the user wants to send messages or questions to DeerFlow for research/analysis, start a DeerFlow conversation thread, check DeerFlow status or health, list available models/skills/agents in DeerFlow, manage DeerFlow memory, upload files to DeerFlow threads, or delegate complex research tasks to DeerFlow. Also use when the user mentions deerflow, deer flow, or wants to run a deep research task that DeerFlow can handle.
npx skill4agent add bytedance/deer-flow claude-to-deerflow| Service | Direct Port | Via Proxy | Purpose |
|---|---|---|---|
| Gateway API | 8001 | | REST endpoints (models, skills, memory, uploads) |
| LangGraph API | 2024 | | Agent threads, runs, streaming |
| Variable | Default | Description |
|---|---|---|
| | Unified proxy base URL |
| | Gateway API base (models, skills, memory, uploads) |
| | LangGraph API base (threads, runs) |
# Resolve base URLs from env (do this FIRST before any API call)
DEERFLOW_URL="${DEERFLOW_URL:-http://localhost:2026}"
DEERFLOW_GATEWAY_URL="${DEERFLOW_GATEWAY_URL:-$DEERFLOW_URL}"
DEERFLOW_LANGGRAPH_URL="${DEERFLOW_LANGGRAPH_URL:-$DEERFLOW_URL/api/langgraph}"curl -s "$DEERFLOW_GATEWAY_URL/health"curl -s -X POST "$DEERFLOW_LANGGRAPH_URL/threads" \
-H "Content-Type: application/json" \
-d '{}'{"thread_id": "<uuid>", ...}curl -s -N -X POST "$DEERFLOW_LANGGRAPH_URL/threads/<thread_id>/runs/stream" \
-H "Content-Type: application/json" \
-d '{
"assistant_id": "lead_agent",
"input": {
"messages": [
{
"type": "human",
"content": [{"type": "text", "text": "YOUR MESSAGE HERE"}]
}
]
},
"stream_mode": ["values", "messages-tuple"],
"stream_subgraphs": true,
"config": {
"recursion_limit": 1000
},
"context": {
"thinking_enabled": true,
"is_plan_mode": true,
"subagent_enabled": true,
"thread_id": "<thread_id>"
}
}'event: <event_type>
data: <json_data>metadatarun_idvaluesmessagesmessages-tupleendcontextthinking_enabled: false, is_plan_mode: false, subagent_enabled: falsethinking_enabled: true, is_plan_mode: false, subagent_enabled: falsethinking_enabled: true, is_plan_mode: true, subagent_enabled: falsethinking_enabled: true, is_plan_mode: true, subagent_enabled: truethread_idcurl -s "$DEERFLOW_GATEWAY_URL/api/models"{"models": [{"name": "...", "provider": "...", ...}, ...]}curl -s "$DEERFLOW_GATEWAY_URL/api/skills"{"skills": [{"name": "...", "enabled": true, ...}, ...]}curl -s -X PUT "$DEERFLOW_GATEWAY_URL/api/skills/<skill_name>" \
-H "Content-Type: application/json" \
-d '{"enabled": true}'curl -s "$DEERFLOW_GATEWAY_URL/api/agents"{"agents": [{"name": "...", ...}, ...]}curl -s "$DEERFLOW_GATEWAY_URL/api/memory"curl -s -X POST "$DEERFLOW_GATEWAY_URL/api/threads/<thread_id>/uploads" \
-F "files=@/path/to/file.pdf"curl -s "$DEERFLOW_GATEWAY_URL/api/threads/<thread_id>/uploads/list"curl -s "$DEERFLOW_LANGGRAPH_URL/threads/<thread_id>/history"curl -s -X POST "$DEERFLOW_LANGGRAPH_URL/threads/search" \
-H "Content-Type: application/json" \
-d '{"limit": 20, "sort_by": "updated_at", "sort_order": "desc"}'bash /path/to/skills/claude-to-deerflow/scripts/chat.sh "Your question here"scripts/chat.shvaluesevent: valuesdatamessagestype: "ai"content