--dump-schema is a reserved flag on every strictcli app. It writes a JSON file to .strictcli/schema.json describing the entire CLI surface -- every command, group, flag, positional argument, constraint, and config field -- and prints the absolute path to stdout. External tools like rlsbl use this schema during release to verify that the CLI surface is up-to-date and that no flags or commands were silently removed. Source
--hermetic
--hermetic is a reserved global flag on every app. It skips config file loading and env var resolution entirely. Values come only from CLI tokens, declared defaults, and infrastructure roots. Source
Each case
Each case is a JSON object in the file's top-level array. The app definition is declarative -- commands specify handler_prints templates instead of actual code, and the harness generates deterministic output by substituting flag and arg values into the template at runtime: Source
Package noncomparable
Package noncomparable is a compile-FAIL fixture package. It is never built by the ordinary test run -- the go tool ignores directories named testdata when matching ./... -- and is compiled on purpose by carrier_noncomparable_test.go, which asserts that each compare_*.go file below produces exactly one diagnostic naming the [0]func() field. Source
Package strictcli
Package strictcli is a strict, zero-dependency CLI framework for Go with mandatory help text, type-safe flags, groups, and schema export. Source
The negation lookup
The negation lookup is a separate table built alongside the long and short lookup tables during command parsing. For each negatable boolean flag, the parser registers --no-{name} in the negation table pointing back to the original flag definition. When a token like --no-verbose is encountered during left-to-right token consumption, the parser checks the negation table first: Source
Share this page
More tools from this site
claudestreamDrive Claude Code from Python: run it as a subprocess and read its output as typed events, with async and sync sessions, sandbox policies, and tools you define in Python
claudewheelA TUI Claude Code Launcher that lets you have more than one profile, manage sessions lifecycle, pick the exact CC version, model to use (even older unlisted ones), pick which GitHub account to use, etc.
dirstatFast, single-binary directory statistics CLI: every file under a tree grouped by format, with counts, sizes, and lines of code, as a colored terminal table or as JSON
fastwareA batteries-included ASGI framework: msgspec JSON, a managed Granian server, dependency injection, SSE, WebSockets, auth, and a test client
go-toml-editZero-dep TOML editing library for Go with comment preservation
howmuchleftThe fastest Claude Code statusline: context window, 5-hour, and weekly limit usage as three customizable gradient bars, rendering in about 6 ms
predrawDeclarative rendering pipeline: describe a scene in JSON and get SVG, PNG and WebP out, with light and dark style tokens, reusable components and text converted to path outlines
reposummaryTurn a git repository's history into a Markdown journal: pick a time window or revision range and get a readable digest of what changed, optionally narrated by an LLM
rlsblRelease orchestration and project scaffolding CLI that bumps versions, validates a structured JSONL changelog, tags only the commit CI verified, and publishes to npm, PyPI, Go and more
safegitgit wrapper CLI that gives each commit its own temporary index and retries ref updates on conflict, so concurrent agents share one repository
safermCommand-line replacement for rm that archives every deletion with a mandatory reason and the context it ran in, so deleted files can be listed, inspected and restored
selfdocStatic Site Generator that builds a project's documentation site directly from its source code, so the docs can never drift from the code they describe, with SEO/AEO, first-class blog, search, and cross-project linking built in
stricttestAn always-on test-isolation floor: a pytest plugin and a Go env-hygiene module that make a test suite structurally unable to reach real credentials, the real HOME, the network, or the development repository.
wesktopA Python framework that turns an ASGI web app into a desktop application, serving it from a local Granian server and displaying it in a native OS window via pywebview