passdown-intake

passdown-intake is a skill for Claude Code from vunm-io/passdown. It costs 56 tokens per session (1,135 once invoked), scanned A, original, MIT.

A workflow for turning rough notes or ideas in an inbox into planned coding work.

In plain words
What is it for?
For processing captured notes, routing them to repositories, and creating Markdown or OpenSpec plans.
Why use it?
It clarifies unclear notes, sends each one to the right repository, creates a planning document, and marks the note as processed.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions AGENTS.md.

Part of the passdown plugin — 4 skills 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/vunm-io/passdown/passdown-intake
Any agent
npx skills add vunm-io/passdown --skill passdown-intake
Clone the repo
git clone --depth 1 https://github.com/vunm-io/passdown

Made for: Claude Code.

Or install passdown, the plugin that ships this one along with the rest of its 4 skills.

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 passdown-intake

README.md
[![agentmods](https://agentmods.dev/badge/skills/vunm-io/passdown/passdown-intake.svg)](https://agentmods.dev/skills/vunm-io/passdown/passdown-intake)
Your own site
<a href="https://agentmods.dev/skills/vunm-io/passdown/passdown-intake"><img src="https://agentmods.dev/badge/skills/vunm-io/passdown/passdown-intake.svg" alt="Measured on agentmods" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,135 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 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.00056 $0.01135
Opus 5 $0.00028 $0.00567
Sonnet 5 $0.00011 $0.00227
Haiku 4.5 $0.00006 $0.00113

Measured 6d ago against content hash 7b8cb9f5e824, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

passdown-intake 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 6d 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.

plugins/passdown/skills/passdown-intake/SKILL.md · 107 lines

How it starts

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

Passdown Intake

Turn raw captured notes into properly planned work. Weak capture tools (chat apps, quick notes) only need to drop a markdown file into an inbox; this skill is where a capable agent applies judgment.

Configuration (read first)

Build the effective passdown configuration root-to-nearest:

  1. Start with every applicable AGENTS.md from the workspace/repository root down to the current directory.
  2. If a thin AGENTS.md explicitly points to a parent file outside the Git root, read that parent too.
  3. Merge ## passdown keys from root to nearest; a nearer value overrides only the same key and inherits all omitted keys.
  4. Resolve relative config paths against the directory containing the AGENTS.md that declared that value, not against an arbitrary current directory.

The effective configuration should contain:

## passdown
- inbox: <path to inbox directory>
- planning: markdown | openspec
- plan_dir: <path for markdown plans>   # required when planning: markdown
- targets: <repo1>, <repo2>, ...   # known target repos for routing

If a required key is still missing, ask the user for that value and suggest adding it to the appropriate AGENTS.md.

Inbox note contract

Notes are markdown files with minimal frontmatter. Never demand more structure from capture tools than this:

---
status: new          # new | processed | discarded
target: unknown      # target repo if the author could guess it
---
# <idea / thing to do>
<free-form content>

A malformed note is still a valid note — it is raw material, not an artifact.

Process

  1. Scan the inbox for notes with status: new (treat missing frontmatter as new). List them briefly for the user.
  2. For each note, in order:
    • Read it fully. Cross-check existing knowledge/specs in the workspace if relevant.
    • If intent is unclear, ask the user — one question at a time.
    • Before writing, resolve the inbox, target repo, planning directory, and schema paths. Verify that the current host has read access to inputs and write access to every intended output. Cross-repo work often needs the parent workspace opened as a workspace root or an explicit permission grant.
    • If sandbox, permission, or network policy blocks a required path, stop and report the blocked path and operation. Do not redirect HOME, create substitute caches, or edit project/tool configuration as a workaround.
    • Decide the disposition:
      • Actionable work → determine the target repo (use target: hint, the routing rules in AGENTS.md, or ask). Create the planning artifact in the target repo using the workspace's planning convention. For planning: markdown, create a plan file in the target repo's plan_dir following the structure of passdown's templates/plan.md: every task carries a [dispatch: external-ok] or [dispatch: main] tag plus Paths, Done criteria, and Verification. For planning: openspec, use the portable openspec new change CLI path; a host-specific command such as /opsx:propose may be used only when that host actually provides it. Either way the artifact must be self-contained: an executor must be able to work from it without reading this conversation.
      • Knowledge, not work → refile into the workspace's knowledge location per its conventions.
      • Obsolete/noise → mark status: discarded after confirming with the user.
  3. Close the loop: update the note's frontmatter to status: processed and append a link to the created change/refiled location. The note stays where it is — it becomes the permanent record of where the idea came from.

Read the full file on GitHub · 107 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. 6d ago First seen · 107 lines · 56 tokens per session scan A 7b8cb9f5e824

Subscribe to this mod's changes

passdown-intake is a skill published in the GitHub repository vunm-io/passdown (8 stars, last pushed 16d ago), licensed MIT. It adds 56 tokens to every session and 1,135 once invoked, about $0.0003 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.