binder-app

binder-app is a skill for Claude Code, Codex from mpazik/Binder. It costs 74 tokens per session (2,630 once invoked), scanned A, original, MIT.

A tool for building a small browser app on top of an existing Binder workspace. Binder is a workspace for storing and querying structured records.

In plain words
What is it for?
Use it to create dashboards, charts, kanban boards, admin panels, and other small HTTP apps connected to Binder data.
Why use it?
It provides a user interface for data that would otherwise require command-line queries or direct record editing.

Skill for Claude CodeCodex

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/mpazik/binder/binder-app
Any agent
npx skills add mpazik/Binder --skill binder-app
Clone the repo
git clone --depth 1 https://github.com/mpazik/Binder

Made for: Claude Code, 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 binder-app

README.md
[![agentmods](https://agentmods.dev/badge/skills/mpazik/binder/binder-app.svg)](https://agentmods.dev/skills/mpazik/binder/binder-app)
Your own site
<a href="https://agentmods.dev/skills/mpazik/binder/binder-app"><img src="https://agentmods.dev/badge/skills/mpazik/binder/binder-app.svg" alt="Measured on agentmods" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,630 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.00074 $0.02630
Opus 5 $0.00037 $0.01315
Sonnet 5 $0.00015 $0.00526
Haiku 4.5 $0.00007 $0.00263

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

Security

Grade A, and why

binder-app 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.

2. `curl http://127.0.0.1:4000/api/schema` returns JSON.
skills/binder-app/SKILL.md · 291 lines

How it starts

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

Binder App

Scaffold a small browser app served by binder http, on top of an existing Binder workspace. Default to plain HTML + vanilla JS, no build step, CDN libraries only when they save real work.

When to use

User asks for a UI on top of their Binder data. Typical asks:

  • "Create a dashboard of my transactions over time."
  • "Build a kanban board of tasks grouped by status, drag and drop like Trello."
  • "Make a small admin panel for my contacts."
  • "Show me a chart of X grouped by Y."

If the user wants to query data without a UI, send them to the binder-cli skill instead.

Workflow

1. Read the schema

Always start here. Do not guess type or field names.

binder schema                    # all types and fields
binder schema --types Task       # one type

Note for each type the user mentioned: required fields, allowed values for enum-like fields (only: [...]), and relation targets. Allowed values matter for kanban columns, chart axes, filters.

2. Plan, or ask

Before writing code, produce a short plan: what records get queried, how they get grouped or aggregated, what writes (if any) the UI performs, and which CDN libs (if any) you'll pull in.

Ask the user a clarifying question when any of these is unclear:

  • Which type(s) to show, if the workspace has several plausible candidates.
  • Which field drives grouping or the time axis (e.g. createdAt vs a domain field like date).
  • Whether the UI is read-only or should write back (drag-and-drop status changes, edits, creates).
  • Bucket granularity for time series (day/week/month).

Keep the plan to a few bullets. Do not ask more than two or three questions.

3. Decide: client-only or server.ts

Default to client-only. The built-in API is enough for most cases.

Add .binder/web/server.ts only when one of these is true:

  • The aggregation is too heavy or awkward to do in the browser.
  • You need an endpoint that talks to an external service (webhook, third-party API).
  • You need a custom shape that combines multiple queries server-side.

Read the full file on GitHub · 291 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 · 291 lines · 74 tokens per session scan A ec2dfac63b63

Subscribe to this mod's changes

binder-app is a skill published in the GitHub repository mpazik/Binder (40 stars, last pushed 11d ago), licensed MIT. It adds 74 tokens to every session and 2,630 once invoked, about $0.0004 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-30.

Related

Other skills, from other repositories

engraphis-memory

Give the agent durable, scoped, explainable memory across sessions and repositories through the Engraphis MCP tools. Use when you learn a convention, decision, bug cause/fix, or user preference worth keeping; when prior context would help before you answer or act (to avoid re-asking or re-deriving); when asked "why is…

Coding-Dev-Tools/engraphis · 134 tokens

encyclopedia-writing

Encyclopedic neutral-reference writing craft — NPOV (attribute facts not opinions, due weight, neutral faction labels, verdict restraint), summary style and Coatrack avoidance, wikilink conventions (link density, first-mention, slug alias, abbreviation glossing). Use when writing or reviewing a neutral…

alfadur7/llm-wiki-newsroom · 95 tokens

guideline-writing

Guideline-authoring craft for instruction SoTs (.claude/ guides, CLAUDE.md, plan files) — operative rules vs recital, MUST/SHOULD/MAY force tiers, pruning, bloat control, blind review protocol, deliberation-narrative ban. Use when writing, editing, or reviewing an agent instruction file, policy, runbook, command SoT…

alfadur7/llm-wiki-newsroom · 99 tokens

journalism-writing

Journalism and argumentation writing craft — inverted pyramid, lede, nut graph, kicker, explainer framing, PAGE frames, Toulmin argument (claim/rebuttal/qualifier), Hegelian dialectic, BBC due impartiality. Use when writing or reviewing news/explainer pieces, landscape overviews, or issue analyses that fairly…

alfadur7/llm-wiki-newsroom · 95 tokens

scholarly-citation

Verifiable-attribution and citation-discipline craft — atomic claim decomposition, evidence grading (primary/analysis/forecast tiers), claimant attribution, citation typing (cites/references/contradicts/defines), source anchoring (Xanadu). Use when writing or reviewing a reference or synthesis page that attributes and…

alfadur7/llm-wiki-newsroom · 92 tokens

consulting-writing

Management-consulting writing craft — McKinsey SCR (Situation·Complication·Resolution), Minto Pyramid/MECE, BCG bold-bullet executive summary, so-what upfront, numeric precision, Forrester Landscape. Use when writing or reviewing an executive summary for decision-makers or a roll-up/landscape overview, or when a…

alfadur7/llm-wiki-newsroom · 91 tokens