inbox

inbox is a skill for Claude Code from dkadts/landing-kit-building. It costs 38 tokens per session (806 once invoked), scanned A, original, MIT.

A file-sorting and validation workflow for client materials placed in an inbox. It checks names, formats, sizes, and content requirements, but does not convert media or analyze copy.

In plain words
What is it for?
Use it to inspect text, photos, videos, logos, fonts, and notes against the project's content-pipeline rules.
Why use it?
It shows which supplied files are ready to use and which need correction before the website workflow continues.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it to inspect text, photos, videos, logos, fonts, and notes against the project's content-pipeline rules.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dkadts/landing-kit-building/inbox
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.

Any agent
npx skills add dkadts/landing-kit-building --skill inbox
Clone the repo
git clone --depth 1 https://github.com/dkadts/landing-kit-building

Made for: Claude Code.

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 inbox

README.md
[![agentmods](https://agentmods.dev/badge/skills/dkadts/landing-kit-building/inbox/github.svg)](https://agentmods.dev/skills/dkadts/landing-kit-building/inbox)
Your own site
<a href="https://agentmods.dev/skills/dkadts/landing-kit-building/inbox"><img src="https://agentmods.dev/badge/skills/dkadts/landing-kit-building/inbox/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 inbox

Your own site · 80×15
<a href="https://agentmods.dev/skills/dkadts/landing-kit-building/inbox"><img src="https://agentmods.dev/badge/skills/dkadts/landing-kit-building/inbox.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 806 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.00038 $0.00806
Opus 5 $0.00019 $0.00403
Sonnet 5 $0.00008 $0.00161
Haiku 4.5 $0.00004 $0.00081

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

Security

Grade A, and why

inbox 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 9d 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.

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.

.claude/skills/inbox/SKILL.md · 109 lines

How it starts

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

/inbox

First pass over client materials. Does not convert (that's /media), does not analyze text (that's /copy-analyze) — only sorts and validates.

When to use

  • Client says "materials uploaded".
  • After a new batch arrives (top-up).

Process

Step 1. Read brief/08-content-pipeline.md Load requirements: naming, formats, sizes.

Step 2. Walk inbox/ folders

For each folder (texts/, media/photos/, media/videos/, brand/logo/, brand/fonts/, notes/):

  • List files.
  • Verify: naming ASCII? correct format? size within limits?
  • Mark: ✅ OK / ⚠️ warning / ❌ reject.

Step 3. Specific checks

texts/:

  • UTF-8?
  • Section headings present (# Hero, # Offer)?

media/photos/:

  • Min side ≥ 2400px (read via image tool or identify).
  • sRGB (not Adobe RGB — otherwise color shift in the browser).
  • ASCII filenames.
  • No IMG_1234.jpg.

media/videos/:

  • 1080p+.
  • Bitrate ≤ 20 Mbps.
  • H.264 in MP4 (not HEVC — poor browser support).

brand/logo/:

  • SVG only.
  • Text outlined (check: is there a <text> tag inside SVG — if yes, NOT outlined).
  • No embedded raster (no <image> inside).

brand/fonts/:

  • .woff2 only.
  • LICENSE.txt present.

notes/:

  • List with type (audio / image / md / other).
  • Transcribe voice notes (if possible).

Step 4. Produce the report

Create/update inbox/inbox-report.md:

# Inbox report — 2026-08-08

## Overall
- Files total: N
- OK: N | Warning: N | Reject: N

## texts/
- `copy.md` — ✅ OK (UTF-8, 5 sections)
- `about.docx` — ⚠️ convert to MD

## media/photos/
- `hero-01.jpg` — ✅ 3600×2400, sRGB
- `IMG_1234.jpg` — ❌ rename to ASCII
- `founder.tif` — ⚠️ 6000×4000 > 6000px — will be cropped

## brand/logo/
- `logo.svg` — ❌ text not outlined (found <text>)

## Summary for the client
### Ready
- Texts can go to /copy-analyze
- Hero photo (after rename)

### Needs rework
- 3 photos: rename
- Logo: outline (in Illustrator: Type → Create Outlines)
- `about.docx`: convert to MD

## Next
- Wait for client rework
- OR if user says "ship with what we have" — run /media on ok-files and /copy-analyze on texts

Read the full file on GitHub · 109 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. 9d ago First seen · 109 lines · 38 tokens per session scan A 078aeb48c4dc

Subscribe to this mod's changes

inbox is a skill published in the GitHub repository dkadts/landing-kit-building (2 stars, last pushed 21d ago), licensed MIT. It adds 38 tokens to every session and 806 once invoked, about $0.0002 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-08-31.

Related

Other skills, from other repositories

next-upgrade

Upgrade Next.js to the latest version following official migration guides and codemods.

agustinusnathaniel/nextarter-tailwind · 19 tokens

deploy

Ship a build reversibly — to a host you manage or a platform that manages it. Pick the topology first, keep the previous version reachable, gate on health, roll back without rebuilding. Use when shipping anywhere users can reach.

byerlikaya/claude-starter-kit · 50 tokens

regenerate-api

Regenerate the AppointMe frontend API client (orval/TanStack Query hooks + TypeScript schemas) after the backend OpenAPI surface changes. Use this whenever backend endpoints, request/response DTOs, or other contract-affecting types are added, removed, or modified — e.g. after editing files under src/AppointMe.Api…

bravodev-hub/appointme · 136 tokens

db-migration

Apply schema migrations safely: detect the tool, classify the change by risk, gate destructive ones behind approval, back up in prod, preview-apply-verify, roll back on failure. Use when a schema change is about to be applied to any environment.

byerlikaya/claude-starter-kit · 56 tokens

dependency-audit

Dependency risk assessment, read-only: known CVEs, deprecated packages, licence compliance, maintenance status, lockfile integrity, and a justification for every new dependency. Acting on it is dependency-upgrade.

byerlikaya/claude-starter-kit · 45 tokens

verify

Build, launch, and drive the AppointMe stack to verify a change end-to-end at its runtime surface.

bravodev-hub/appointme · 25 tokens