podium-app CLAUDE.md

podium-app CLAUDE.md is an instructions file for coding agents from abrahao-dev/podium-app. It costs 1,249 tokens per session, scanned A, original, MIT.

Project-specific instructions for Podium, a desktop app that arranges terminal windows running coding-agent command-line tools and markdown notes on an open canvas.

In plain words
What is it for?
Use them when developing Podium’s Rust and React code, terminal connections, note links, saved JSON data, or cross-platform behavior.
Why use it?
They keep work consistent across Windows, macOS, and Linux by fixing the technology choices, terminal communication rules, and layout expectations.

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/abrahao-dev/podium-app/claude-md
Clone the repo
git clone --depth 1 https://github.com/abrahao-dev/podium-app

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 podium-app CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/abrahao-dev/podium-app/claude-md.svg)](https://agentmods.dev/instructions/abrahao-dev/podium-app/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/abrahao-dev/podium-app/claude-md"><img src="https://agentmods.dev/badge/instructions/abrahao-dev/podium-app/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,249 This file is loaded in full into every session.
When invoked 1,249 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.01249 $0.01249
Opus 5 $0.00624 $0.00624
Sonnet 5 $0.00250 $0.00250
Haiku 4.5 $0.00125 $0.00125

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

Security

Grade A, and why

podium-app 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 · 81 lines

How it starts

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

Podium

Infinite spatial canvas for terminal windows running AI coding agents (Claude Code, Codex, OpenCode, plain shells) plus markdown sticky notes. Terminals connect to terminals (agent-to-agent prompt piping via PTY stdin) and to notes (output capture). No built-in AI — orchestrates external CLI agents the user has installed.

Primary target: Windows. Development on macOS. Also supported: Linux (X11/Wayland via WebKitGTK). All three must build and run at all times.

Stack (fixed — do not substitute)

  • Tauri 2 (Rust backend) + React 18 + TypeScript strict + Vite
  • xterm.js (@xterm/xterm + @xterm/addon-fit + @xterm/addon-webgl)
  • portable-pty (Rust) — ConPTY on Windows, openpty on Unix
  • zustand (frontend state)
  • React Flow (@xyflow/react) for canvas/nodes/edges
  • Persistence: plain JSON in Tauri app_data_dir (no database)

Keep deps minimal. Never update pinned versions once installed.

PTY IPC contract

Rust side: src-tauri/src/pty.rsall platform-specific code lives in this module only.

Tauri commands (frontend wrapper: src/lib/pty.ts):

Command Args Notes
create_terminal id, cwd?, command?, cols, rows Spawns default shell; if command given, writes command + "\r" into stdin after spawn (PATH resolution via shell, robust cross-platform)
write_to_terminal id, data Raw bytes to PTY stdin. Also powers agent-to-agent connections
resize_terminal id, cols, rows
kill_terminal id

Events (Rust → frontend):

  • terminal-output:{id} — payload Vec<u8> (raw bytes; frontend feeds Uint8Array straight to xterm so its decoder handles split UTF-8)
  • terminal-exit:{id} — payload Option<u32> exit code. Session self-removes from the manager map on EOF.

One dedicated reader thread per session, 4KB reads.

Default shell: $SHELL on Unix; if unset, first existing of /bin/bash/bin/zsh/bin/sh (bash is ubiquitous on Linux, zsh the macOS default). Windows prefers pwsh.exe on PATH, else powershell.exe.

Read the full file on GitHub · 81 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 · 81 lines · 1,249 tokens per session scan A 4cc0d74c9cec

Subscribe to this mod's changes

podium-app CLAUDE.md is an instructions file published in the GitHub repository abrahao-dev/podium-app (11 stars, last pushed 1mo ago), licensed MIT. It adds 1,249 tokens to every session, about $0.0062 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.

Related

Other instructions, from other repositories