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 skills/adambien/airails/zargsnpx skills add AdamBien/airails --skill zargsgit clone --depth 1 https://github.com/AdamBien/airailsWrote 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.
[](https://agentmods.dev/skills/adambien/airails/zargs)<a href="https://agentmods.dev/skills/adambien/airails/zargs"><img src="https://agentmods.dev/badge/skills/adambien/airails/zargs.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00090 | $0.01173 |
| Opus 5 | $0.00045 | $0.00587 |
| Sonnet 5 | $0.00018 | $0.00235 |
| Haiku 4.5 | $0.00009 | $0.00117 |
Grade A, and why
zargs 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 4d 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 — 150 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Add zero-dependency argument parsing to a Java CLI application using $ARGUMENTS. Apply all rules below.
What is zargs
zargs is a zero-dependency, enum-based argument parsing pattern for Java CLI applications. It is not a library or dependency — it is a set of conventions and code patterns to apply directly when generating argument parsing code.
- Reference: https://github.com/AdamBien/zeeds/blob/main/zargs
- Requires: Java 21+
Argument Enum Pattern
Define an enum where each constant represents a CLI option. The enum provides matching, lookup, and usage generation:
import java.util.stream.Collectors;
import java.util.stream.Stream;
public enum Arg {
HELP("-help", "Show this help"),
VERBOSE("-verbose", "Enable verbose output"),
OUTPUT("-output", "Specify output file");
final String option;
final String description;
Arg(String option, String description) {
this.option = option;
this.description = description;
}
boolean matches(String value) {
return this.option.equals(value)
|| value.startsWith(this.option + ":");
}
static Arg from(String value) {
return Stream.of(values())
.filter(a -> a.matches(value))
.findFirst()
.orElse(null);
}
static String usage() {
return Stream.of(values())
.map(a -> " %-12s %s".formatted(a.option, a.description))
.collect(Collectors.joining("\n"));
}
}
Parsed Arguments Record
Define a record matching the application's parsed arguments:
import java.util.List;
public record Args(boolean verbose, String output, List<String> files) {}
Argument Syntax
zargs supports two value styles for options that take a value:
| Style | Example | Description |
|---|---|---|
| Colon-separated | -output:result.txt |
Value follows : immediately |
| Space-separated | -output result.txt |
Value is the next argument |
Boolean flags (like -verbose) require no value.
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.
- 4d ago First seen · 150 lines · 90 tokens per session scan A ed3849fa2f5d
zargs is a skill published in the GitHub repository AdamBien/airails (48 stars, last pushed 14d ago), licensed MIT. It adds 90 tokens to every session and 1,173 once invoked, about $0.0005 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 skills, from other repositories
java-boilerplate
Gera automaticamente getters, setters, construtores, toString, equals e hashCode para classes Java. Triggers on: /java-boilerplate, 'gerar métodos java', 'criar getters setters'.
jeecg-dev
JeecgBoot 开发规范(仅手动触发)。⚠️ 本技能只在用户显式输入 /jeecg-dev 命令时使用,禁止自动触发——编写/修改 JeecgBoot 代码、应用 GitHub PR/issue 改动、修复 bug、新增功能、重构、代码生成等场景都不要自动调用本技能。内容涵盖 update-begin/end 痕迹注释、命名规范、实体/控制器/服务模式、API 约定、建表规则与修改日志实践。MANUAL ONLY: invoke ONLY when the user explicitly runs the /jeecg-dev command. Do NOT auto-trigger on any code editing…
deno-sandbox
Use when building features that execute untrusted user code, AI-generated code, or need isolated code execution environments. Covers the @deno/sandbox SDK.
deno-frontend
Use when building a web frontend with Deno — running React, Vite, Astro, SvelteKit, Next.js, Nuxt or other npm frameworks under Deno, or working with Fresh, Deno's own island-architecture framework. Covers which path to pick, Fresh 2.x routes, handlers, islands, Preact signals, Tailwind, and Fresh 1.x to 2.x migration.
5writing
数学建模竞赛论文撰写阶段,支持 Typst 和 LaTeX 双引擎。根据 ANALYSISMODELINGREPORT.md、RESULTSREPORT.md 和 figures/.pdf 选择比赛模板、排版引擎、组织章节,并在论文正文中按章节直接插入图表。.
6verity
数学建模竞赛最终验证和验收阶段,支持 Typst 和 LaTeX 双引擎。用于论文写完后检查章节数量、标题顺序、图表引用、数值一致性、占位符、内部文件泄露、参考文献、代码可复现性、编译和提交就绪状态。.