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.
npx agentmods add instructions/strrl/shell-now/claude-mdgit clone --depth 1 https://github.com/STRRL/shell-nowWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00497 | $0.00497 |
| Opus 5 | $0.00249 | $0.00249 |
| Sonnet 5 | $0.00099 | $0.00099 |
| Haiku 4.5 | $0.00050 | $0.00050 |
Grade A, and why
shell-now 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 2d 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.
What it actually says
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project Overview
Shell Now is a Go CLI tool that creates instant public web terminals using ttyd and Cloudflare Quick Tunnels. The tool automatically downloads required dependencies (ttyd and cloudflared) and sets up a secure web-based shell accessible via a public URL.
Build Commands
make buildorgo build -o out/shell-now ./cmd/shell-now/- Build the binaryDEBUG=1 ./out/shell-now- Run with debug logging enableddocker build -t shell-now .- Build Docker imagedocker run cr.strrl.dev/strrl/shell-now:latest- Run via Docker
Architecture
The codebase follows a simple CLI pattern with platform-specific implementations:
Core Components
cmd/shell-now/main.go- CLI entry point using Cobra, handles signals and contextpkg/bootstrap.go- Main orchestration logic that coordinates ttyd and cloudflared processes- Platform-specific preparation files (
prepare_linux.go,prepare_darwin.go,prepare.go) that handle dependency installation
Key Architecture Points
- Uses build tags for platform-specific code (
//go:build !darwin && !linux) - Linux/ARM64 support with automatic binary downloads to
~/.local/bin/ - macOS requires manual installation via Homebrew
- Concurrent goroutines for ttyd and cloudflared with WaitGroup synchronization
- Context-based cancellation for graceful shutdown on SIGINT/SIGTERM
- Random port allocation for ttyd using
net.Listen("tcp", ":0") - Random 6-digit password generation for web terminal authentication
Dependencies
- Uses
github.com/spf13/cobrafor CLI framework - Downloads ttyd v1.7.7 and cloudflared 2025.5.0 on Linux
- Expects
ttydandcloudflaredvia Homebrew on macOS
Platform Considerations
The tool has different behavior per platform:
- Linux: Automatically downloads binaries to
~/.local/bin/if not in PATH - macOS: Requires manual installation via
brew install ttyd cloudflared - Other platforms: Requires manual installation with informational messages only
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.
- 2d ago First seen · 44 lines · 497 tokens per session scan A 4b3773d7df02
shell-now CLAUDE.md is an instructions file published in the GitHub repository STRRL/shell-now (48 stars, last pushed 1y ago), licensed MIT. It adds 497 tokens to every session, about $0.0025 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.
Other instructions, from other repositories
codetunnel CLAUDE.md
Instructions for ifokeev/codetunnel, covering claude.md, project overview, repository structure, workspace management and applications.
agents AGENTS.md
Instructions for cloudflare/agents, covering agents.md, project overview, repository structure, nested agents.md files and setup.
dev3000 AGENTS.md
Instructions for vercel-labs/dev3000, covering agents.md, runtime, local ui, production workflows, browser tools and development rules.
cloudflare-workers-nextjs-saas-template AGENTS.md
Instructions for LubomirGeorgiev/cloudflare-workers-nextjs-saas-template, covering project context, vinext, general coding rules, control flow and comments.
microfeed AGENTS.md
AGENTS.md instructions for microfeed/microfeed, covering repository guidance, development workflow, instance management and cloudflare deployment, source architecture and theme repositories.
jenkins-cli CLAUDE.md
Instructions for avivsinai/jenkins-cli, covering claude.md, build & test commands, run a single test, skip e2e tests during unit testing and e2e with colima on macos (if docker is unreachable).