lizard-cli AGENTS.md

Repository instructions for developing the lizard-cli command-line tool. They describe its npm-based setup, TypeScript layout, commands, tests, and required JSON output mode.

In plain words
What is it for?
Use them when modifying lizard-cli, adding commands, building the CLI, or running its integration and unit tests.
Why use it?
They help coding agents follow the project's expected files, package manager, build process, and output conventions. This reduces changes that conflict with the repository's workflow.

Instructions file for CodexOpenCode

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/lizard-build/lizard-cli/agents-md
Clone the repo
git clone --depth 1 https://github.com/lizard-build/lizard-cli

Made for: Codex, OpenCode.

Per session 1,444 This file is loaded in full into every session.
When invoked 1,444 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.01444 $0.01444
Opus 5 $0.00722 $0.00722
Sonnet 5 $0.00289 $0.00289
Haiku 4.5 $0.00144 $0.00144

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

Security

Grade A, and why

lizard-cli AGENTS.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 yesterday.

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.

AGENTS.md · 114 lines

How it starts

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

AGENTS.md

Instructions for AI coding agents working in this repo (@lizard-build/cli).

Package manager

This project uses npm. Don't introduce pnpm/yarn lockfiles. Scripts:

  • npm run build — TypeScript compile to dist/
  • npm run dev — run from source via tsx
  • npm test — integration tests (test/cli.test.ts)
  • npm run test:unit — unit tests (test/unit/*)

The published bin is dist/index.js. Always run npm run build before testing against dist/.

Project layout

src/
  index.ts          # Commander root, banner, preAction (auth + JSON mode), --help --json dump
  commands/<name>.ts  # one file per top-level command; exports register<Name>(program)
  lib/
    api.ts          # fetch wrapper, APIError
    auth.ts         # token store, requireAuth()
    config.ts       # ~/.lizard/config.json read/write
    format.ts       # printJSON, isJSONMode, success/error/info/warn, table, statusColor
    picker.ts       # interactive @clack pickers
    resolve.ts      # resolve workspace/project/service from flags or linked dir
    updater.ts      # self-update (precompiled binary only — see note below)
skill-data/<name>/SKILL.md   # agent skills served by `lizard skill get <name>`
dist/               # tsc output, committed; this is what npm ships
test/cli.test.ts    # integration tests (spawn the CLI)
test/unit/*.test.ts # unit tests

Code style

  • Kebab-case for CLI flags (--service-name, never --serviceName).
  • No emojis in code, output, or docs. Unicode glyphs (, , ) via chalk are fine.
  • Colors: use chalk and lib/format.ts helpers. Never hardcode ANSI escapes.
  • info/success/warn/error write to stderr; payload (printJSON, table rows) goes to stdout. Pipes (| jq, > file) must work.
  • Strict TypeScript. No any in new code unless interacting with commander's loose types.

JSON mode is required

Every user-facing command must support --json. The harness in src/index.ts auto-enables it when stdout isn't a TTY, and lib/format.ts gates pretty prints. Pattern:

Read the full file on GitHub · 114 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. yesterday First seen · 114 lines · 1,444 tokens per session scan A 464089244890

Subscribe to this mod's changes

lizard-cli AGENTS.md is an instructions file published in the GitHub repository lizard-build/lizard-cli (2 stars, last pushed 4d ago), licensed MIT. It adds 1,444 tokens to every session, about $0.0072 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-31.