cc-crossbeam: Skill for Claude Code

.claude/skills/demo-city-review/SKILL.md

demo-city-review is a skill for Claude Code from mikeOnBreeze/cc-crossbeam. It costs 92 tokens per session (1,831 once invoked), scanned A, original, MIT.

A local tool for reviewing accessory dwelling unit (ADU) permit plans against state and city rules, then drafting a corrections letter.

In plain words
What is it for?
Reviewing a PDF plan binder or extracted page images for a named city, checking code compliance sheet by sheet, and producing draft comments.
Why use it?
A plan checker must inspect many sheets and compare details with requirements for a specific city. This organizes that review into a written list of corrections.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; mentions subagents.

This is mikeOnBreeze/cc-crossbeam's own configuration. It tells Claude Code how to work on cc-crossbeam 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 cc-crossbeam configures →

Reuse

Borrowing it

Nothing to install: this file belongs to mikeOnBreeze/cc-crossbeam. 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/mikeOnBreeze/cc-crossbeam/main/.claude/skills/demo-city-review/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/mikeOnBreeze/cc-crossbeam

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 demo-city-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/mikeonbreeze/cc-crossbeam/demo-city-review/github.svg)](https://agentmods.dev/skills/mikeonbreeze/cc-crossbeam/demo-city-review)
Your own site
<a href="https://agentmods.dev/skills/mikeonbreeze/cc-crossbeam/demo-city-review"><img src="https://agentmods.dev/badge/skills/mikeonbreeze/cc-crossbeam/demo-city-review/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 demo-city-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/mikeonbreeze/cc-crossbeam/demo-city-review"><img src="https://agentmods.dev/badge/skills/mikeonbreeze/cc-crossbeam/demo-city-review.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 1,831 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.01831
Opus 5 $0.00046 $0.00915
Sonnet 5 $0.00018 $0.00366
Haiku 4.5 $0.00009 $0.00183

Measured 13d ago against content hash 6313a2b58595, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

demo-city-review 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 13d 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/demo-city-review/SKILL.md · 153 lines

How it starts

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

Demo: City Plan Review

Run a city-side ADU plan review locally. You are a city plan checker reviewing an ADU permit submittal for code compliance.

How to Invoke

The user provides:

  1. Plan binder — either a PDF path or a directory of pre-extracted PNGs
  2. City name — e.g., "Placentia", "Buena Park", "Long Beach"
  3. (Optional) Project address

Example invocations:

  • "Review this ADU plan set for Placentia: test-assets/city-flow/mock-session/pages-png/"
  • "Run city review on test-assets/01-extract-test/pages-png/ for Buena Park"
  • "Review path/to/plans.pdf for the City of Long Beach"

Input Resolution

Determine what the user gave you:

If a directory of PNGs (e.g., pages-png/page-01.png, page-02.png, ...):

  • Use directly. Skip PDF extraction.
  • Check for pre-existing sheet-manifest.json in the same directory or parent. If found, load it and skip manifest building.
  • Check for pre-existing title-blocks/ directory. If found, use those for manifest building.

If a PDF file:

  • Check if pdftoppm is installed: which pdftoppm
  • If not: brew install poppler (macOS) or tell the user to install it
  • Extract pages: create a pages-png/ directory next to the PDF and run:
    pdftoppm -png -r 200 "<input.pdf>" "<output-dir>/pages-png/page"
    
  • Rename outputs to page-01.png, page-02.png, etc. (pdftoppm outputs page-01.png format already with the prefix)

Output Directory

Create demo-output/city-review-<city>-<timestamp>/ in the workspace root. All output files go here.

Workflow

Phase 1: Sheet Manifest (~30-90 sec)

Follow the adu-targeted-page-viewer skill workflow:

  1. Read page 1 (cover sheet) visually. Extract the sheet index.
  2. If page count matches index count, map 1:1 in order.
  3. If mismatch, read title blocks to resolve (crop bottom-right 20% of each page, or use pre-cropped title blocks if available).
  4. Write sheet-manifest.json to the output directory.

Phase 2: Sheet-by-Sheet Review (~3-5 min)

Read the full file on GitHub · 153 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. 13d ago First seen · 153 lines · 92 tokens per session scan A 6313a2b58595

Subscribe to this mod's changes

demo-city-review is a skill published in the GitHub repository mikeOnBreeze/cc-crossbeam (291 stars, last pushed 6mo ago), licensed MIT. It adds 92 tokens to every session and 1,831 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-08-30.