launcherg: Skill for Codex

.codex/skills/cloudflare-free-tier-guard/SKILL.md

cloudflare-free-tier-guard is a skill for Codex from ryoha000/launcherg. It costs 92 tokens per session (720 once invoked), scanned A, original, Unlicense.

A cost-review guide for Cloudflare services such as Workers, D1, R2, KV, Pages, and Wrangler. Cloudflare provides hosted services for running code, storing data, and serving web content.

In plain words
What is it for?
Use it when designing, reviewing, debugging, or deploying Cloudflare workers, storage bindings, upload flows, caching, APIs, or related configuration.
Why use it?
It helps identify requests, storage, bandwidth, and compute costs before changes are made, with particular attention to staying within free-tier limits.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: mentions Codex.

This is ryoha000/launcherg's own configuration. It tells Codex how to work on launcherg itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything launcherg configures →

Reuse

Borrowing it

Nothing to install: this file belongs to ryoha000/launcherg. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ryoha000/launcherg/main/.codex/skills/cloudflare-free-tier-guard/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ryoha000/launcherg

Made for: 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 cloudflare-free-tier-guard

README.md
[![agentmods](https://agentmods.dev/badge/skills/ryoha000/launcherg/cloudflare-free-tier-guard/github.svg)](https://agentmods.dev/skills/ryoha000/launcherg/cloudflare-free-tier-guard)
Your own site
<a href="https://agentmods.dev/skills/ryoha000/launcherg/cloudflare-free-tier-guard"><img src="https://agentmods.dev/badge/skills/ryoha000/launcherg/cloudflare-free-tier-guard/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for cloudflare-free-tier-guard

Your own site · 80×15
<a href="https://agentmods.dev/skills/ryoha000/launcherg/cloudflare-free-tier-guard"><img src="https://agentmods.dev/badge/skills/ryoha000/launcherg/cloudflare-free-tier-guard.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 720 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00092 $0.00720
Opus 5 $0.00046 $0.00360
Sonnet 5 $0.00018 $0.00144
Haiku 4.5 $0.00009 $0.00072

Measured today against content hash 76f5c8cf7187, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-13, from the pricing page.

Security

Grade A, and why

cloudflare-free-tier-guard scanned grade A with 0 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 today.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.codex/skills/cloudflare-free-tier-guard/SKILL.md · 72 lines

How it starts

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

Cloudflare Free Tier Guard

Overview

Apply a free-tier-first design review before making Cloudflare changes. Favor architectures that keep Workers thin, avoid unnecessary paid products, and make request, storage, and egress costs explicit.

Quick Start

  1. Read references/free-tier-checklist.md.
  2. If working in this repository's server/ directory, read references/launcherg-server-stack.md.
  3. Identify which Cloudflare primitives are involved: Workers, D1, R2, KV, Assets, Queues, Durable Objects, Cron, or custom domains.
  4. State the expected hot path in one sentence: request source, Worker logic, storage access, response path.
  5. Prefer the cheapest primitive that satisfies the requirement, then explain why.

Workflow

1. Inventory the cost surface

  • Count likely request paths.
  • Separate metadata reads/writes from binary transfer.
  • Note whether traffic is public, authenticated, bursty, or background.
  • Call out which operations hit D1, R2, or Worker CPU.

2. Choose the lowest-cost architecture

  • Prefer: static assets via Assets/Pages, metadata in D1, blobs in R2, direct upload/download where possible.
  • Avoid adding Durable Objects, Queues, Cron, or extra Workers unless the requirement needs coordination, background execution, or fan-out.
  • Keep auth stateless when possible. Signed cookies or signed tokens are cheaper than session tables.
  • Keep the Worker off the binary data path unless authorization or transformation is required.

3. Apply free-tier techniques

  • Deduplicate uploads before generating storage writes.
  • Batch D1 writes and chunk large lookups.
  • Return only required columns.
  • Put TTLs on signed URLs and session cookies.
  • Cache safe reads aggressively.
  • Move heavy transforms to the client or build step.
  • Avoid polling loops and worker-to-worker hops.

4. Explicitly review risk before coding

Before finalizing a design or patch, answer these questions:

Read the full file on GitHub · 72 lines

Files

What ships with it

3 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. today First seen · 72 lines · 92 tokens per session scan A 76f5c8cf7187

Subscribe to this mod's changes

cloudflare-free-tier-guard is a skill published in the GitHub repository ryoha000/launcherg (37 stars, last pushed 5mo ago), licensed Unlicense. It adds 92 tokens to every session and 720 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-12.

Related

Other skills, from other repositories

stripe-projects

Provision SaaS services + sync creds via Stripe Projects.

NousResearch/hermes-agent · 15 tokens

azure-eventhub-dotnet

Azure Event Hubs SDK for .NET. Use for high-throughput event streaming: sending events (EventHubProducerClient, EventHubBufferedProducerClient), receiving events (EventProcessorClient with checkpointing), partition management, and real-time data ingestion. Triggers: "Event Hubs", "event streaming"…

microsoft/skills · 94 tokens

azure-mgmt-botservice-dotnet

Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: "Bot Service", "BotResource", "Azure Bot", "DirectLine channel", "Teams channel", "bot management .NET", "create bot".

microsoft/skills · 78 tokens

wikipedia

Search and read Wikipedia via x wkp — MediaWiki API, no API key, zero install; query, extract, suggest, and DDG route in one module. Load for wiki, wikipedia, encyclopedia lookup, article summary.

x-cmd/x-cmd · 49 tokens

django-storages-s3

Use when configuring Django to store static and media files on AWS S3 with django-storages. Invoke when working with the STORAGES setting, S3 buckets, presigned URLs, CloudFront, or boto3-backed file storage in settings.py. Configures the Django 4.2+ STORAGES dict, public/private custom backends, presigned GET/POST…

Jeffallan/claude-skills · 138 tokens

cve

Look up CVE records via x cve — cached, zero-API-key, daily xz TSV. Load for cve, vulnerability id, kev, epss, nvd, cvelist, or security advisory.

x-cmd/x-cmd · 49 tokens