cli-for-android CLAUDE.md

A development guide for a Go command-line tool that builds, tests, checks, installs, and releases Android-related utilities.

In plain words
What is it for?
Use it to build or install the tool, run all tests or one selected test, check the code with Go’s vet tool, create release binaries, clean build output, and run the local doctor command.
Why use it?
It provides exact commands for common development tasks and shows how the command-line code is connected to its service and shared-package layers.

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/erikhellman/cli-for-android/claude-md
Clone the repo
git clone --depth 1 https://github.com/ErikHellman/cli-for-android
Per session 921 This file is loaded in full into every session.
When invoked 921 The same file — it is already loaded in full.
Security scan C 1 finding. 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.00921 $0.00921
Opus 5 $0.00461 $0.00461
Sonnet 5 $0.00184 $0.00184
Haiku 4.5 $0.00092 $0.00092

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

Security

Grade C, and why

cli-for-android CLAUDE.md scanned grade C with 1 finding 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

make clean # rm -rf dist/
CLAUDE.md · 63 lines

How it starts

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

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Commands

make build       # compile → dist/acli (with version/commit ldflags)
make test        # go test ./... -v -count=1
make lint        # go vet ./...
make install     # go install to $GOPATH/bin
make release     # cross-compile for darwin/linux/windows (5 binaries in dist/)
make clean       # rm -rf dist/

# Run a single test package
go test ./pkg/aclerr/... -v -run TestClassify

# Run a single test function
go test ./pkg/runner/... -v -run TestRunCapture_Timeout

# Build and run locally
go build -o dist/acli ./cmd/acli && ./dist/acli doctor

Architecture

The binary is cmd/acli/main.go → calls internal/cmd (Cobra tree) → delegates to service layers.

Layer map

Layer Path Role
CLI commands internal/cmd/*.go One file per subcommand group; registers with RootCmd in root.go
Domain services internal/{sdk,avd,device,build,flash,instrument}/service.go Business logic; calls runner and android.SDKLocator
Shared packages pkg/ No internal imports; safe to use anywhere

Key packages

pkg/runner — all subprocess execution goes here. Run() returns (*Result, error). Use RunWith() when you only care about the error (passthrough/fire-and-forget), RunCapture() for captured output, RunWithStdin() when stdin piping is needed. Context timeout check happens before ExitError check (critical ordering — killed processes also return ExitError(-1)).

pkg/aclerr — structured errors. Every user-facing error is an *AcliError{Code, Message, Detail, FixCmds, DocsURL}. Exit codes: device errors→3, SDK/env→4, build→5, emulator timeout→6, general→1. catalog.go has regex patterns that classify raw tool stderr into structured errors via aclerr.Classify(tool, stderr).

pkg/output — call output.Init(json, verbose, noColor) once (done in PersistentPreRunE). Then use package-level Success(), Info(), Warn(), Error(), Table(), CheckList(). All functions branch internally on Default.JSON — never check the flag yourself in command code. Errors go to stderr; data goes to stdout.

Read the full file on GitHub · 63 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. 2d ago First seen · 63 lines · 921 tokens per session scan C e5527881c8aa

Subscribe to this mod's changes

cli-for-android CLAUDE.md is an instructions file published in the GitHub repository ErikHellman/cli-for-android (116 stars, last pushed 4mo ago), licensed MIT. It adds 921 tokens to every session, about $0.0046 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.