claude-to-deerflow

claude-to-deerflow is a skill for Claude Code, Codex from fullstack455/deer-flow. It costs 111 tokens per session (1,746 once invoked), scanned A, a copy of claude-to-deerflow, MIT.

A connection guide for DeerFlow, an AI-agent platform that coordinates agents for research, code execution, web browsing, and related tasks. It uses DeerFlow’s HTTP API to communicate with conversations, models, skills, agents, memory, and files.

In plain words
What is it for?
Use it to start and continue DeerFlow conversations, send questions, check health, list models or agents, manage memory, and upload files.
Why use it?
It provides a consistent way to send requests to DeerFlow and inspect its status or available capabilities. This avoids guessing which service URL or API endpoint to use.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/fullstack455/deer-flow/claude-to-deerflow
Any agent
npx skills add fullstack455/deer-flow --skill claude-to-deerflow
Clone the repo
git clone --depth 1 https://github.com/fullstack455/deer-flow

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for claude-to-deerflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/fullstack455/deer-flow/claude-to-deerflow.svg)](https://agentmods.dev/skills/fullstack455/deer-flow/claude-to-deerflow)
Your own site
<a href="https://agentmods.dev/skills/fullstack455/deer-flow/claude-to-deerflow"><img src="https://agentmods.dev/badge/skills/fullstack455/deer-flow/claude-to-deerflow.svg" alt="Measured on agentmods" height="20"></a>
Per session 111 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,746 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin 92% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00111 $0.01746
Opus 5 $0.00056 $0.00873
Sonnet 5 $0.00022 $0.00349
Haiku 4.5 $0.00011 $0.00175

Measured 5d ago against content hash 5ee87b562eba, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

claude-to-deerflow scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/chat.sh, scripts/status.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

When making curl calls, always resolve the URL like this:
Origin

This is a copy

92% identical to claude-to-deerflow — 4 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/public/claude-to-deerflow/SKILL.md · 218 lines

How it starts

The opening of the file, as written. The whole thing — 218 lines — stays where its author put it; the contents beside it link to each section on GitHub.

DeerFlow Skill

Communicate with a running DeerFlow instance via its HTTP API. DeerFlow is an AI agent platform built on LangGraph that orchestrates sub-agents for research, code execution, web browsing, and more.

Architecture

DeerFlow exposes two API surfaces behind an Nginx reverse proxy:

Service Direct Port Via Proxy Purpose
Gateway API 8001 $DEERFLOW_GATEWAY_URL REST endpoints (models, skills, memory, uploads)
LangGraph API 2024 $DEERFLOW_LANGGRAPH_URL Agent threads, runs, streaming

Environment Variables

All URLs are configurable via environment variables. Read these env vars before making any request.

Variable Default Description
DEERFLOW_URL http://localhost:2026 Unified proxy base URL
DEERFLOW_GATEWAY_URL ${DEERFLOW_URL} Gateway API base (models, skills, memory, uploads)
DEERFLOW_LANGGRAPH_URL ${DEERFLOW_URL}/api/langgraph LangGraph API base (threads, runs)

When making curl calls, always resolve the URL like this:

# 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}"

Available Operations

1. Health Check

Verify DeerFlow is running:

curl -s "$DEERFLOW_GATEWAY_URL/health"

2. Send a Message (Streaming)

This is the primary operation. It creates a thread and streams the agent's response.

Step 1: Create a thread

Read the full file on GitHub · 218 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 218 lines · 111 tokens per session scan A 5ee87b562eba

Subscribe to this mod's changes

claude-to-deerflow is a skill published in the GitHub repository fullstack455/deer-flow (3 stars, last pushed 3d ago), licensed MIT. It adds 111 tokens to every session and 1,746 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 92% identical to claude-to-deerflow, differing in 4 lines, and is treated as a copy.