agent-cli-standards

agent-cli-standards is a skill for Claude Code from saeedkolivand/ai-job-hunter-app. It costs 83 tokens per session (3,396 once invoked), scanned A, original, Apache-2.0.

A set of rules for building a command-line interface for coding agents. It explains how agents should pass arguments, communicate through the application bridge, handle third-party text, return stable machine-readable results, and report errors.

In plain words
What is it for?
Use it when changing the agent CLI, its bridge resources, allowlists, output contract, exit codes, throttling, or destructive-command behaviour.
Why use it?
It gives developers consistent boundaries for agent-facing commands, reducing parsing failures, unsafe prompt input, unclear exit statuses, and accidental misuse of destructive operations.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it when changing the agent CLI, its bridge resources, allowlists, output contract, exit codes, throttling, or destructive-command behaviour.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/saeedkolivand/ai-job-hunter-app/agent-cli-standards
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.

Any agent
npx skills add saeedkolivand/ai-job-hunter-app --skill agent-cli-standards
Clone the repo
git clone --depth 1 https://github.com/saeedkolivand/ai-job-hunter-app

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for agent-cli-standards

README.md
[![agentmods](https://agentmods.dev/badge/skills/saeedkolivand/ai-job-hunter-app/agent-cli-standards/github.svg)](https://agentmods.dev/skills/saeedkolivand/ai-job-hunter-app/agent-cli-standards)
Your own site
<a href="https://agentmods.dev/skills/saeedkolivand/ai-job-hunter-app/agent-cli-standards"><img src="https://agentmods.dev/badge/skills/saeedkolivand/ai-job-hunter-app/agent-cli-standards/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for agent-cli-standards

Your own site · 80×15
<a href="https://agentmods.dev/skills/saeedkolivand/ai-job-hunter-app/agent-cli-standards"><img src="https://agentmods.dev/badge/skills/saeedkolivand/ai-job-hunter-app/agent-cli-standards.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 83 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,396 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00083 $0.03396
Opus 5 $0.00042 $0.01698
Sonnet 5 $0.00017 $0.00679
Haiku 4.5 $0.00008 $0.00340

Measured 7d ago against content hash e41d69098ce0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

agent-cli-standards 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 7d 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.

.claude/skills/agent-cli-standards/SKILL.md · 188 lines

How it starts

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

Agent CLI standards

Standards for ajh-tauri agent … — the machine-facing control surface an AI agent drives instead of reading pixels off a native window (issue #1084). Load with author-contract (authors) / token-efficiency + critic-contract (reviewers). The bridge transport itself is extension-standards; this skill is the CLI surface on top of it.

The consumer is not a human

Output goes into an LLM's context. That single fact drives most of what follows: the output is a contract, third-party text in it is an injection vector, and a path in an error message is a privacy leak into a transcript that may be pasted into a bug report.

Architecture (settled — do not redesign without an ADR)

  • A MODE of the existing binary, never a second [[bin]]. The release upload globs only read target/release/bundle/** (.github/workflows/release.yml), so a second binary ships to nobody. The exe is already installed and already registered in the native-messaging manifests.
  • The argv sentinel's position is load-bearing in both directions (main.rs):
    • BELOW the native-host short-circuit.
    • ABOVE ajh_tauri::run()run() forks the minidump supervisor as its first act, and the single-instance plugin would otherwise hand the CLI's argv to the running GUI, pop its window, and exit having printed nothing.
  • A thin client over the loopback bridge — never a second reader of the stores. The app must be running. Reading the data directory from a second process is not read-only: ApplicationStore::open runs link_orphaned_generations + backfill_from_generations, which write to ai_generations.db and can CREATE Application rows, and two processes racing run_migrations (which reads user_version outside any transaction) can leave the app booted with no store at all.
  • The app finds itself, the CLI does not guess. AJH_DATA_DIR never escapes the app process and the AppHandle-free fallback is not the install location, so the app writes a pointer file carrying exePath (from current_exe()) and dataDir on every launch, on register_native_host's existing best-effort/idempotent lifecycle. The binary is not on PATH on Windows, macOS, or Linux AppImage.

Read the full file on GitHub · 188 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. 7d ago First seen · 188 lines · 83 tokens per session scan A e41d69098ce0

Subscribe to this mod's changes

agent-cli-standards is a skill published in the GitHub repository saeedkolivand/ai-job-hunter-app (54 stars, last pushed today), licensed Apache-2.0. It adds 83 tokens to every session and 3,396 once invoked, about $0.0004 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-09-03.

Related

Other skills, from other repositories

anarlog

Query Anarlog meetings, notes, summaries, transcripts, participants, action items, and recurring history. Use when a user asks about their Anarlog meeting data or needs meeting context for another task.

fastrepl/anarlog · 44 tokens

resume-builder

Generate professional resumes that conform to the Reactive Resume schema. Use when the user wants to create, build, or generate a resume through conversational AI, or asks about resume structure, sections, or content. This skill guides the agent to ask clarifying questions, avoid hallucination, and produce valid JSON…

amruthpillai/reactive-resume · 71 tokens

json-ui

CRITICAL: Use for json-ui component rendering and development. Triggers on: json-ui, json render, component catalog, report render, HTML report, I18nString, i18n, bilingual, language switch, dual language, PaperHeader, AuthorList, Abstract, MetricsGrid, Section, Highlight, Zod schema, catalog.ts, cli.ts…

actionbook/actionbook · 118 tokens

prompt-cache-optimizer

Audit and optimize Pisper system-prompt and tool-schema token overhead while preserving stable prompt-cache prefixes, permissions, and runtime behavior. Invoke only for explicit prompt or tool-context optimization work.

ling-kong-ran/pisper · 42 tokens

internet_search

Instructions for using a local search script to retrieve current web results as JSON, including titles, links, summaries, and sources.

silent-rs/silent-Tiangong · 0 tokens

tauri

Advanced Tauri event patterns for bidirectional communication, streaming data, window-to-window messaging, and custom event handling.

bobmatnyc/claude-mpm-skills · 25 tokens