adu-targeted-page-viewer

adu-targeted-page-viewer is a skill for Claude Code, Codex from mikeOnBreeze/cc-crossbeam. It costs 134 tokens per session (1,763 once invoked), scanned A, original, MIT.

A tool for locating specific pages in construction-plan PDFs. It creates image files and a map connecting drawing labels, such as A3 or S3.1, to their PDF page numbers.

In plain words
What is it for?
Use it to split a plan PDF into page images, build a sheet-to-page list, and inspect requested sheets without analyzing every page in detail.
Why use it?
Large plan binders are difficult to search, especially when a corrections letter names only particular drawing sheets. The page map makes those sheets quick to find and view.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit Use it to split a plan PDF into page images, build a sheet-to-page list, and inspect requested sheets without analyzing every page in detail.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mikeonbreeze/cc-crossbeam/adu-targeted-page-viewer
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 mikeOnBreeze/cc-crossbeam --skill adu-targeted-page-viewer
Clone the repo
git clone --depth 1 https://github.com/mikeOnBreeze/cc-crossbeam

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 adu-targeted-page-viewer

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/mikeonbreeze/cc-crossbeam/adu-targeted-page-viewer"><img src="https://agentmods.dev/badge/skills/mikeonbreeze/cc-crossbeam/adu-targeted-page-viewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 134 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,763 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.00134 $0.01763
Opus 5 $0.00067 $0.00881
Sonnet 5 $0.00027 $0.00353
Haiku 4.5 $0.00013 $0.00176

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

Security

Grade A, and why

adu-targeted-page-viewer 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 12d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/crop-title-blocks.sh, scripts/extract-pages.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

adu-skill-development/skill/adu-targeted-page-viewer/SKILL.md · 160 lines

How it starts

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

ADU Targeted Page Viewer

Overview

Extract a construction plan PDF into page PNGs and build a JSON manifest mapping sheet IDs to page numbers. This enables fast, targeted viewing of specific sheets referenced in corrections letters — without doing deep content extraction of every page.

Speed: Under 2 minutes for the manifest. Individual sheet lookups are instant after that.

Key difference from full extraction: This skill only identifies WHICH page is WHICH sheet. It does not extract content, dimensions, materials, or structural details from each page. That analysis happens on-demand when a specific sheet is requested.

Prerequisites

  • pdftoppm / pdfinfo (from poppler): apt-get install poppler-utils (Linux) or brew install poppler (macOS)
  • ImageMagick (for resize + title block cropping): apt-get install imagemagick (Linux) or brew install imagemagick (macOS)

Workflow

Step 1: Extract All Pages to PNG

Check first: PNGs may already be pre-extracted. Look for pages-png/page-01.png in the project files directory. If PNGs already exist, skip this step entirely — go straight to Step 2.

If PNGs don't exist, run scripts/extract-pages.sh to split the PDF into individual page PNGs:

scripts/extract-pages.sh <input.pdf> <output-dir>

This produces output-dir/pages-png/page-01.png, page-02.png, etc. at 200 DPI (full resolution, no resize). Takes ~5 seconds for a 26-page set. The script is idempotent — if PNGs already exist it exits immediately.

Step 2: Read the Cover Sheet and Find the Sheet Index

Read pages-png/page-01.png visually. The sheet index is typically in the top-right or right-side area of the cover sheet.

Extract the index as a list of entries:

CS    → Cover Sheet
A1    → Site Plan
A2    → Floor Plan
A3    → Elevations & Roof Plan
S1.0  → Structural Notes
S2.0  → Foundation Plan
...

This gives the list of expected sheets and their descriptions.

If the index is not on page 1, check page 2 — some sets have a separate title page before the cover sheet.

Read the full file on GitHub · 160 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. 12d ago First seen · 160 lines · 134 tokens per session scan A 071c118045e4

Subscribe to this mod's changes

adu-targeted-page-viewer is a skill published in the GitHub repository mikeOnBreeze/cc-crossbeam (291 stars, last pushed 6mo ago), licensed MIT. It adds 134 tokens to every session and 1,763 once invoked, about $0.0007 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.