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.
npx agentmods add skills/dropyour/dropyour-plugin/dropyour-serveurnpx skills add dropyour/dropyour-plugin --skill dropyour-serveurgit clone --depth 1 https://github.com/dropyour/dropyour-pluginWrote 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.
[](https://agentmods.dev/skills/dropyour/dropyour-plugin/dropyour-serveur)<a href="https://agentmods.dev/skills/dropyour/dropyour-plugin/dropyour-serveur"><img src="https://agentmods.dev/badge/skills/dropyour/dropyour-plugin/dropyour-serveur.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00057 | $0.01707 |
| Opus 5 | $0.00028 | $0.00853 |
| Sonnet 5 | $0.00011 | $0.00341 |
| Haiku 4.5 | $0.00006 | $0.00171 |
Grade A, and why
dropyour-serveur 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 3d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
async fetch(app) { /* return a Response, or null to serve the static page */ }, How it starts
The opening of the file, as written. The whole thing — 95 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Le code serveur d'une app Dropyour
Disponible sur une app graduée (palier 4). Si l'app ne l'est pas encore, dropyour_graduate.
Before generating what I'll ask you, STRICTLY apply these rules (this is SERVER code for a GRADUATED Dropyour app, tier 4):
-
Write
server.jsat the ROOT of the .zip (or several files underserver/, withserver/index.jsas the entry). Plain ES modules, no build step, no npm install, no bundler. -
THE CONTRACT — this is the whole surface, and there is nothing else:
Your server code runs as server.js at the root of the .zip (or under server/ for several files).
It exports a default object with two optional handlers:
export default { async fetch(app) { /* return a Response, or null to serve the static page / }, async scheduled(app) { / runs when the clock rings */ }, };
app is the capability. It is the ONLY thing your code receives — there is no ambient access to
the network, the platform, or another app. What is not listed below does not exist.
- app.request — the incoming
Request, untouched. Inscheduledit is synthetic. - app.dropId — your app's id — use it to build your own URLs instead of guessing them.
- app.state — a single JSON blob with optimistic versioning. Good for settings and small shared state.
app.state.get— read{ data, version }.app.state.put— write; pass the version you read to detect a conflict instead of overwriting silently.
- app.records — the queryable store: many documents in named collections. This is where real app data lives.
app.records.list— list a collection, with an optionalwhereon ONE top-level field (eq/lt/gt), and a cursor.app.records.get— read one document by id.app.records.stats— counts per collection, without downloading the documents.app.records.put— create or replace one document.app.records.remove— delete one document. Deleting an absent one is not an error.
- app.schedule — your app's clock. Your
scheduledhandler re-arms it itself — there is no cron syntax.app.schedule.next— ask to be woken once, between 5 minutes and 30 days from now. Replaces any pending wake-up.app.schedule.cancel— drop the pending wake-up.
- app.log — write a line your agent can read back later with
dropyour_logs. Levels: info, warn, error. - app.visitor — who is signed in, or
null.idis stable for this app only;emailonly if they agreed to share it. - app.files — your app's file space. Serve files from YOUR routes — there is no public bucket URL.
app.files.put— write or replace a file.app.files.get— read a file back, with its content type.app.files.list— list files under an optional prefix, with the total size used.app.files.delete— remove a file. Removing an absent one is not an error.
- app.realtime — push a message to every browser currently connected to your app, and count them.
-
fetch(app)returns aResponse, ornullto let the static page be served as usual. Route by readingnew URL(app.request.url).pathname. Never assume a path prefix you did not create. -
Outgoing calls are CLOSED BY DEFAULT and opened by DECLARATION: the hosts you may reach are derived from the code you publish, so write each URL literally instead of assembling it from pieces. A secret never lives in your code — it is injected at the network boundary, so call the API with no key and the platform adds it.
-
Data belongs server-side. Use
app.recordsfor anything shared between visitors or queried;app.statefor a small settings blob. Do NOT reimplement storage in localStorage and then try to sync it. -
Failures are named, never silent: every write returns a result you must read — a version conflict is a normal answer, not a crash. Call
app.logon the paths you will want to debug; an agent reads those lines back. -
At the end, give me each file separately with its path, and remind me to publish with the MCP tool dropyour_replace. Same stable URL, data preserved.
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.
- 3d ago First seen · 95 lines · 0 tokens per session scan A 1c0048417edd
dropyour-serveur is a skill published in the GitHub repository dropyour/dropyour-plugin (0 stars, last pushed 6d ago), licensed MIT. It adds 57 tokens to every session and 1,707 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
auto-perf-optimize
Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.
chat-perf
Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…