opendeck: Instructions file for Claude Code

CLAUDE.md

opendeck CLAUDE.md is an instructions file for Claude Code from himanshudongre/opendeck. It costs 806 tokens per session, scanned A, original, MIT.

A contributor guide for Claude Code, an AI coding assistant, in the OpenDeck project. It explains the project structure, commands, design decisions, and coding conventions.

In plain words
What is it for?
Use it when developing OpenDeck, a tool that turns a phone or tablet browser into a control panel for AI coding agents. It covers installing dependencies, running the project, building, checking, testing, and understanding its packages.
Why use it?
It gives the coding assistant the project context and rules needed to make consistent changes. It also points to the documents that define the project’s intended behavior.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions Claude Code; mentions Codex.

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

Reuse

Borrowing it

Nothing to install: this file belongs to himanshudongre/opendeck. 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/himanshudongre/opendeck/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/himanshudongre/opendeck

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/himanshudongre/opendeck/claude-md/github.svg)](https://agentmods.dev/instructions/himanshudongre/opendeck/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/himanshudongre/opendeck/claude-md"><img src="https://agentmods.dev/badge/instructions/himanshudongre/opendeck/claude-md/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 opendeck CLAUDE.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/himanshudongre/opendeck/claude-md"><img src="https://agentmods.dev/badge/instructions/himanshudongre/opendeck/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 806 This file is loaded in full into every session.
When invoked 806 The same file — it is already loaded in full.
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.00806 $0.00806
Opus 5 $0.00403 $0.00403
Sonnet 5 $0.00161 $0.00161
Haiku 4.5 $0.00081 $0.00081

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

Security

Grade A, and why

opendeck 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 10d 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 · 60 lines

How it starts

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

OpenDeck — contributor guide for Claude Code

OpenDeck turns a phone/tablet browser into a physical-feeling control deck for AI coding agents. Read SPEC.md for the full product spec and DECISIONS.md for choices the spec left open. Both are source-of-truth documents — update DECISIONS.md when you make a new call.

Commands

pnpm install            # workspace install (Node >= 20, pnpm 11)
pnpm dev                # hub in watch mode + deck dev server
pnpm build              # all packages, topological
pnpm lint               # eslint (typescript-eslint strict) + prettier --check
pnpm typecheck          # tsc --noEmit in every package
pnpm test               # vitest unit suites (protocol, hub, simulator, deck)
pnpm e2e                # Playwright suites in e2e/ (build first)
pnpm perf               # latency harness + bundle-size gate

Run single suites from a package: pnpm --filter @opendeck/protocol test, or a single file: pnpm --filter opendeck test -- src/core/replay-buffer.test.ts.

Architecture map

packages/protocol   zod schemas + types for every WS/REST message. Single source of truth.
                    Both hub and deck validate at the boundary. No runtime deps beyond zod.
packages/hub        Node CLI + server (published to npm as `opendeck`).
  src/cli.ts          commander entry: default run, --demo, connect/disconnect, devices
  src/core/           session registry, event bus, replay ring buffer
  src/server/         fastify REST + static deck, ws fan-out, auth, pairing
  src/adapters/       Adapter interface + claude (managed/observed), codex, simulator glue
packages/deck       React 19 PWA (Vite + Tailwind v4 + zustand + motion; optional three.js face). Custom design
                    system from SPEC §7 tokens — no component library.
packages/simulator  deterministic scripted fleet: demos, E2E, screenshots.
e2e/                Playwright projects (iPhone 14 / iPad / desktop) + latency harness.

Data flow: adapter → session registry → event bus → replay buffer → WS fan-out → deck store → widgets. The deck renders strictly from Session + events; harness-specific logic lives in adapters only.

Read the full file on GitHub · 60 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. 10d ago First seen · 60 lines · 806 tokens per session scan A a2676a43d846

Subscribe to this mod's changes

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

Related

Other instructions, from other repositories