VR180-Silver-Bullet: Instructions file for Claude Code

CLAUDE.md

VR180-Silver-Bullet CLAUDE.md is an instructions file for Claude Code from silverqsy/VR180-Silver-Bullet. It costs 7,155 tokens per session, scanned A, original, MIT.

A startup guide for a program that processes and views stereoscopic 180-degree video, which is video designed for an immersive headset view. It covers the current release status, supported desktop platforms, building, running, and automatic updates.

In plain words
What is it for?
Use it when building or running the VR180 application, working on its macOS or Windows video paths, or continuing development of its signed auto-update system.
Why use it?
It tells a coding agent how the project is organized and what has already been verified on macOS and Windows before making changes.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

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

Reuse

Borrowing it

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

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 VR180-Silver-Bullet CLAUDE.md

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

Your own site · 80×15
<a href="https://agentmods.dev/instructions/silverqsy/vr180-silver-bullet/claude-md"><img src="https://agentmods.dev/badge/instructions/silverqsy/vr180-silver-bullet/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 7,155 This file is loaded in full into every session.
When invoked 7,155 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.07155 $0.07155
Opus 5 $0.03578 $0.03578
Sonnet 5 $0.01431 $0.01431
Haiku 4.5 $0.00715 $0.00715

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

Security

Grade A, and why

VR180-Silver-Bullet 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 9d 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 · 415 lines

How it starts

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

CLAUDE.md — orientation for Claude Code sessions

Auto-loaded at session start. Read this first; deeper detail is in the docs/ pointers at the bottom.

⚡ Status: 2.1.0 in progress — auto-update landed (macOS-verified)

VR180 Silver Bullet 2.0 is feature-complete and building/running on both macOS (Apple Silicon) and Windows (NVIDIA). The Windows GPU-resident NVENC path and the macOS feature batch below were verified on both platforms (DX12/Vulkan + NVENC on an RTX 4090; Metal on Apple Silicon). See CHANGELOG.md for the user-facing 2.0 summary.

2.1.0 (version bumped, unreleased): seamless auto-update — see docs/AUTO-UPDATE.md for the full design + release recipe. crates/vr180-gui/src/updater.rs: minisign-verified updates from GitHub Releases (latest.json at the stable releases/latest/download/ URL), toolbar badge + popover UX, whole-.app swap + relaunch on macOS (E2E-verified with real signing), silent Inno install on Windows.

Windows session TODO to catch up (2.1.0):

  1. Pull; cargo build --release -p vr180-gui (new deps: ureq, minisign-verify — pure Rust, no system libs).
  2. Copy the updater signing key from the mac box to C:\Users\<user>\.vr180-updater\vr180-updater.key (private channel; NEVER commit) and install the minisign CLI (scoop or release binary).
  3. Rebuild the installer with the updated installer/windows.iss (AppVer 2.1.0 + the new silent-relaunch [Run] entry + CloseApplications).
  4. VERIFY the Windows update path (built here, not yet run on Windows): serve a latest.json locally (VR180_UPDATE_URL override), click Install & Restart → the app must exit, the installer run silently (per-user, no UAC), and the app relaunch. Watch for: the spawned -setup.exe inheriting a lock on itself (it runs from the staging dir under %APPDATA%\VR180SilverBullet2.0\updates\ — fine), and the [Run] Check: WizardSilent entry actually firing.
  5. At release: node scripts/make-latest-json.mjs --version 2.1.0 --notes-file <notes> on BOTH machines (mac first, copy its release-staging/latest.json over so the entries merge), then upload both artifacts + latest.json to the v2.1.0 release.
  6. BeyondVR Hack (final-stage per-eye output scale, ⚙ Format window) landed after the seam fixes — pull + rebuild + re-upload the Windows artifacts so both platforms carry it (mac 2.1.0 artifacts already respun with it). No Windows-specific code: the stage rides the shared color stack (ColorStackPlan.eye_scale), incl. the NVENC/d3d11 arms.
  7. 25 fps OSV stab fix (dji_imu_phase_default_ms_for_fps → 5.5 ms for fps < 27, lldb-verified against DJI Studio) + restored the IMU phase slider in the stab panel. Pipeline-level, shared code — pull + rebuild; no Windows-specific work.

Read the full file on GitHub · 415 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. 9d ago First seen · 415 lines · 7,155 tokens per session scan A 8971af8f98aa

Subscribe to this mod's changes

VR180-Silver-Bullet CLAUDE.md is an instructions file published in the GitHub repository silverqsy/VR180-Silver-Bullet (23 stars, last pushed 25d ago), licensed MIT. It adds 7,155 tokens to every session, about $0.0358 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

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

deepseek-harness AGENTS.md

AGENTS.md instructions for deepseek-ai/deepseek-harness, covering agents.md, pre-stable apis and released session data, repository layout, commands and host sandbox failures.

deepseek-ai/deepseek-harness · 3,735 tokens