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/devcyclehq/cli/agents-mdgit clone --depth 1 https://github.com/DevCycleHQ/cliWhat 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.01305 | $0.01305 |
| Opus 5 | $0.00652 | $0.00652 |
| Sonnet 5 | $0.00261 | $0.00261 |
| Haiku 4.5 | $0.00130 | $0.00130 |
Grade A, and why
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 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.
How it starts
The opening of the file, as written. The whole thing — 168 lines — stays where its author put it; the contents beside it link to each section on GitHub.
DevCycle CLI Coding Standards and Conventions
Project Structure
TypeScript CLI application built with oclif framework for DevCycle feature flag management.
Main Entry Points
- CLI Binary:
bin/run- Main CLI entry point - MCP Server:
dist/mcp/index.js- Model Context Protocol server - Source Root:
src/index.ts- TypeScript entry point
Core Directories
src/commands/- All CLI commands organized by featuresrc/api/- API client code and schemassrc/auth/- Auth handling (API keys, SSO, tokens)src/ui/- Interactive prompts and output formattingsrc/utils/- Shared utilities and helperssrc/mcp/- Model Context Protocol implementation
Configuration and Tooling
- Uses Yarn with workspaces
- Always use
yarnnotnpm
Formatting
- Defer all formatting to Prettier for supported file types (JavaScript, TypeScript, JSON, Markdown, etc.)
Git Commit Message Conventions
- Follow Conventional Commits specification:
<type>: <description>(scopes rarely used) - Valid types:
feat,fix,docs,style,refactor,perf,test,build,ci,chore,revert - Description should be imperative mood, lowercase, single sentence
- Examples:
feat: add support for multi-threaded tests,fix: correct response for invalid input
Aviator CLI Workflow (optional)
- Use Aviator CLI (
av) for managing stacked branches:av branch chore-fix-invalid-input - Sync and push changes:
av sync --push=yes - Create PR:
av pr --title "<title>" --body "<body>"- Title follows Conventional Commits, body uses markdown/bullets
av prwill push the branch
- GitHub PR descriptions should be short and focus on why changes were made, not what changed, limit describing files and tests changed.
Naming Conventions
- Use camelCase for files, folders, and variables (starting with lowercase)
- PascalCase for classes and interfaces
- SCREAMING_SNAKE_CASE for constants
- kebab-case for CLI flags and file names
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 · 168 lines · 1,305 tokens per session scan A 7b81fcc3b6d6
cli AGENTS.md is an instructions file published in the GitHub repository DevCycleHQ/cli (20 stars, last pushed 15d ago), licensed MIT. It adds 1,305 tokens to every session, about $0.0065 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
flux-operator AGENTS.md
AGENTS.md instructions for controlplaneio-fluxcd/flux-operator, covering agents instructions, project overview, repository structure, rules of engagement for ai agents and development commands for ai agents.
ninthwave CLAUDE.md
Instructions for ninthwave-io/ninthwave, covering ninthwave, development, architecture, conventions and test safety.
bq-analytics CLAUDE.md
Instructions for johnkueh/bq-analytics, covering bq-analytics — claude notes and releases publish on tag push, not on branch push.
eac CLAUDE.md
Claude Code instructions for ready-to-release/eac, covering eac monorepo, key modules, critical isolation constraint, mcp servers and git policy.
spinnaker-mcp CLAUDE.md
Claude Code instructions for GeiserX/spinnaker-mcp, covering claude.md — spinnaker-mcp, tech stack, development, run locally and architecture.
flagskit AGENTS.md
Instructions for flagskit/flagskit, covering flagskit — feature flags, setup, provider, useflag and useflags.