dropyour-serveur

dropyour-serveur is a skill for Claude Code, Codex from dropyour/dropyour-plugin. It costs 57 tokens per session (1,707 once invoked), scanned A, original, MIT.

A way to write the server-side part of a graduated Dropyour app. Server-side code runs on Dropyour to handle shared data, scheduled work, secrets, signed-in visitors, files, real-time updates, or outgoing API calls.

In plain words
What is it for?
Creating a server.js file with request and scheduled handlers for a tier-4 Dropyour app. It helps build shared-data features, scheduled jobs, file handling, authentication-related behavior, and external API requests.
Why use it?
It provides a defined place for work that cannot safely or reliably happen only in a visitor's browser, such as sharing data between visitors or calling another service.

Skill for Claude CodeCodex

Part of the dropyour plugin — 3 skills, 1 MCP server shipped together

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

Made for: Claude Code, Codex.

Or install dropyour, the plugin that ships this one along with the rest of its 3 skills, 1 MCP server.

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 dropyour-serveur

README.md
[![agentmods](https://agentmods.dev/badge/skills/dropyour/dropyour-plugin/dropyour-serveur.svg)](https://agentmods.dev/skills/dropyour/dropyour-plugin/dropyour-serveur)
Your own site
<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>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,707 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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 $0.00057 $0.01707
Opus 5 $0.00028 $0.00853
Sonnet 5 $0.00011 $0.00341
Haiku 4.5 $0.00006 $0.00171

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

Security

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 */ },
skills/dropyour-serveur/SKILL.md · 95 lines

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):

  1. Write server.js at the ROOT of the .zip (or several files under server/, with server/index.js as the entry). Plain ES modules, no build step, no npm install, no bundler.

  2. 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. In scheduled it 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 optional where on 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 scheduled handler 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. id is stable for this app only; email only 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.
  1. fetch(app) returns a Response, or null to let the static page be served as usual. Route by reading new URL(app.request.url).pathname. Never assume a path prefix you did not create.

  2. 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.

  3. Data belongs server-side. Use app.records for anything shared between visitors or queried; app.state for a small settings blob. Do NOT reimplement storage in localStorage and then try to sync it.

  4. 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.log on the paths you will want to debug; an agent reads those lines back.

  5. 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.

Read the full file on GitHub · 95 lines

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. 3d ago First seen · 95 lines · 0 tokens per session scan A 1c0048417edd

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

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.

obra/superpowers · 37 tokens

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.

microsoft/vscode · 62 tokens

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.

microsoft/vscode · 51 tokens

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.

microsoft/vscode · 53 tokens

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…

microsoft/vscode · 71 tokens