godrop

godrop is a skill for Claude Code, Codex from fatihbaltaci/GoDrop. It costs 67 tokens per session (1,841 once invoked), scanned D, original, MIT.

A tool for uploading files to a GoDrop server and receiving a public download link. GoDrop is a small file-hosting service where anyone with the link can read the uploaded file.

In plain words
What is it for?
It helps upload a file, obtain its URL, check the server's health, and delete an uploaded file when supported.
Why use it?
It provides a way to share files, screenshots, reports, and other artifacts without requiring the recipient to use an account or access token.

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/fatihbaltaci/godrop/skill
Any agent
npx skills add fatihbaltaci/GoDrop --skill skill
Clone the repo
git clone --depth 1 https://github.com/fatihbaltaci/GoDrop

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 godrop

README.md
[![agentmods](https://agentmods.dev/badge/skills/fatihbaltaci/godrop/skill.svg)](https://agentmods.dev/skills/fatihbaltaci/godrop/skill)
Your own site
<a href="https://agentmods.dev/skills/fatihbaltaci/godrop/skill"><img src="https://agentmods.dev/badge/skills/fatihbaltaci/godrop/skill.svg" alt="Measured on agentmods" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,841 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 3 findings. Scan, not verified.
Origin original No closer match found 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.1 $0.00067 $0.01841
Opus 5 $0.00034 $0.00920
Sonnet 5 $0.00013 $0.00368
Haiku 4.5 $0.00007 $0.00184

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

Security

Grade D, and why

godrop scanned grade D with 3 findings 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.

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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

go test ./... 2>&1 | curl -sS -X PUT --data-binary @- \

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -fsSL https://raw.githubusercontent.com/fatihbaltaci/GoDrop/v1.3.1/install.sh | sh # installs, then guides setup

Makes network callslowCapability

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

If only the URL is known, `curl $GODROP_URL/llms.txt` returns the API and the
Origin

Copies of this mod

1 near-identical copy found in the catalogue:

  • godrop — 100% identical, 0 lines differ
internal/skill/SKILL.md · 207 lines

How it starts

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

GoDrop

GoDrop is a small self-hosted file host. You upload a file with a token and get back a URL that nobody can guess. Anyone with the URL can download it; no token is needed to read.

Setup

Two values are all you need:

export GODROP_URL=https://files.example.com
export GODROP_TOKEN=gd_...

If only the URL is known, curl $GODROP_URL/llms.txt returns the API and the instance's actual limits.

Upload a file

curl -sS -X POST \
  -H "Authorization: Bearer $GODROP_TOKEN" \
  -F "[email protected]" \
  "$GODROP_URL/upload"

Response (201):

{
  "files": [
    {
      "url": "https://files.example.com/f/20260815-143022-8f4e…/report.pdf",
      "name": "report.pdf",
      "size_bytes": 12345
    }
  ]
}

Read .files[0].url for the single-file case:

url=$(curl -sS -X POST -H "Authorization: Bearer $GODROP_TOKEN" \
        -F "[email protected]" "$GODROP_URL/upload" | jq -r '.files[0].url')
echo "$url"

The response has one shape whatever was sent, so there is no branching to do. The same URL is in the Location header, for when there is no JSON parser.

Put a screenshot in a pull request or an issue

GitHub has no supported API for attaching an image, so upload it here and paste the URL: it needs no token to open, and GitHub renders it inline for everyone on the thread.

url=$(curl -sS -X POST -H "Authorization: Bearer $GODROP_TOKEN" \
        -H "X-Expires-In: 30d" -F "file=@screenshots/checkout.png" \
        "$GODROP_URL/upload" | jq -r '.files[0].url')

gh pr comment 42 --body "Checkout, after the fix:

![checkout]($url)"

The same URL works in an issue, a review comment, a commit message or a chat message. Add X-Expires-In when the picture is only interesting while the pull request is open.

Upload several files

curl -sS -X POST -H "Authorization: Bearer $GODROP_TOKEN" \
  -F "[email protected]" -F "[email protected]" \
  "$GODROP_URL/upload" | jq -r '.files[].url'

The request is all-or-nothing: if one file is rejected, none are stored. At most 20 files per request by default.

Read the full file on GitHub · 207 lines

Files

What ships with it

1 file 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 · 207 lines · 67 tokens per session scan D be16733b2150

Subscribe to this mod's changes

godrop is a skill published in the GitHub repository fatihbaltaci/GoDrop (1 stars, last pushed 7d ago), licensed MIT. It adds 67 tokens to every session and 1,841 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it D with 3 findings (sends data to an external url, downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

host-ssh

Run PowerShell on a GuideAnts SSH machine (Windows OpenSSH) via the machine registry in the guide Environment. Use when the user needs host OS tasks — drives, dotnet, Playwright, processes — not file I/O on paths already visible in the workspace file list.

Elumenotion/GuideAnts · 61 tokens

notion-knowledge-capture

Capture conversations and decisions into structured Notion pages; use when turning chats/notes into wiki entries, how-tos, decisions, or FAQs with proper linking.

Haohao-end/openagent · 39 tokens

herdr

Drive the Herdr terminal workspace manager from the CLI inside the Open Harness sandbox — inspect and control workspaces, tabs, panes, agents, and git worktrees over the Herdr socket API, and read or steer other running agents headlessly. TRIGGER when: asked to run a herdr command, list/read/send to another agent or…

mifunedev/openharness · 165 tokens

escalate

Deliver a human-addressed escalation from an unattended session to the operator's Slack channel, so a finding that needs a person does not die in a log nobody tails or a GitHub thread that notifies no one. TRIGGER when: an unattended, detached, cron, or background session is blocked and needs an operator decision; a…

mifunedev/openharness · 162 tokens

windows-shell

Manage long-running background jobs and interactive workflows on Windows using PowerShell Jobs (Start-Job, Receive-Job) — the Windows equivalent of tmux sessions.

RikyZ90/ShibaClaw · 35 tokens

schedule_manage

Tool: schedulemanage. All ops use action field.

ParendumOU/Nexora · 0 tokens