ccphoto CLAUDE.md

ccphoto CLAUDE.md is an instructions file for coding agents from stepankaiser/ccphoto. It costs 883 tokens per session, scanned A, original, MIT.

Project instructions for ccphoto, a phone-camera bridge for Claude Code with an MCP server and command-line program. They describe its seven camera, photo, phone, and livestream tools, plus how to build and test it.

In plain words
What is it for?
Use them when developing ccphoto, capturing or receiving phone photos, sending content to a phone, or working with livestream frames.
Why use it?
They give an agent the project’s architecture and safe working commands, making changes easier to place and verify.

Instructions file

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 instructions/stepankaiser/ccphoto/claude-md
Clone the repo
git clone --depth 1 https://github.com/stepankaiser/ccphoto

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 ccphoto CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/stepankaiser/ccphoto/claude-md.svg)](https://agentmods.dev/instructions/stepankaiser/ccphoto/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/stepankaiser/ccphoto/claude-md"><img src="https://agentmods.dev/badge/instructions/stepankaiser/ccphoto/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 883 This file is loaded in full into every session.
When invoked 883 The same file — it is already loaded in full.
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 $0.00883 $0.00883
Opus 5 $0.00441 $0.00441
Sonnet 5 $0.00177 $0.00177
Haiku 4.5 $0.00088 $0.00088

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

Security

Grade A, and why

ccphoto CLAUDE.md 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 4d 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.md · 75 lines

How it starts

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

CCPhoto

Phone camera bridge for Claude Code — MCP server + standalone CLI.

Build & Run

npm run build        # Compile TypeScript
npm test             # Run tests (94 tests, requires tsx)
node dist/index.js   # Run standalone server
node dist/index.js --mcp   # Run as MCP server

Architecture

  • src/index.ts — CLI entry point, arg parsing
  • src/mcp.ts — MCP server with 7 tools (capture_photo, wait_for_photo, get_latest_photo, list_photos, send_to_phone (supports speak param for TTS), start_livestream, get_live_frame)
  • src/server.ts — HTTP server (serves mobile page, handles uploads, SSE push)
  • src/mobile-page.ts — Self-contained HTML for phone camera capture, annotation canvas, content display
  • src/storage.ts — Photo file management (save, list, get latest, get by filename)
  • src/network.ts — Local IP detection
  • src/token.ts — Session token generation/validation
  • src/cert.ts — Self-signed certificate generation for HTTPS livestream
  • src/types.ts — Shared interfaces

Tests

Tests use Node.js built-in test runner with tsx for TypeScript execution. Co-located with source: src/*.test.ts. Run with npm test.

  • token.test.ts — Token generation, validation, timing-safe comparison
  • storage.test.ts — File save, list, collision handling, filtering
  • network.test.ts — IPv4 detection contract
  • mobile-page.test.ts — HTML rendering, element presence, token embedding
  • server.test.ts — HTTP endpoints, auth, uploads, waitForPhoto, CORS, performance
  • cert.test.ts — Certificate generation, validation, SAN matching

Key Patterns

  • MCP server uses stderr for terminal output (stdout is JSON-RPC)
  • waitForPhoto() in server.ts provides Promise-based listener for MCP tool blocking
  • pendingPhoto buffer handles race condition where photo arrives before listener registers
  • Server starts lazily on first capture_photo call, stays running for session
  • SSE endpoint (/events) pushes photo-requested events to connected phones
  • get_latest_photo accepts optional filename param to retrieve specific photos
  • Photos stored in ~/.ccphoto/captures/ by default (or CCPHOTO_DIR env var)
  • Mobile page is a self-contained HTML string (no static files)
  • sendToPhone() broadcasts content-push SSE events for bidirectional messaging
  • Annotation canvas composites drawings onto photos client-side before upload
  • HTTPS server (port+1) enables getUserMedia for live camera streaming
  • Live frames stored in memory only (not disk) for ephemeral video streaming
  • Voice input via Web Speech API (SpeechRecognition) on phone, sent as UserAction to server
  • TTS via SpeechSynthesis when send_to_phone includes speak: true
  • Two-tier server: HTTP for photos (no cert warning), HTTPS for live/voice (getUserMedia needs secure context)
  • Generative UI: send_to_phone with ui_spec renders JSON-to-DOM components on phone (12 types)

Read the full file on GitHub · 75 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. 4d ago First seen · 75 lines · 883 tokens per session scan A a6a70ae227cb

Subscribe to this mod's changes

ccphoto CLAUDE.md is an instructions file published in the GitHub repository stepankaiser/ccphoto (1 stars, last pushed 5mo ago), licensed MIT. It adds 883 tokens to every session, about $0.0044 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.