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 skills add buildfastwithai/gen-ai-experiments --skill eazyr-maingit clone --depth 1 https://github.com/buildfastwithai/gen-ai-experimentsWrote 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/buildfastwithai/gen-ai-experiments/eazyr-main)<a href="https://agentmods.dev/skills/buildfastwithai/gen-ai-experiments/eazyr-main"><img src="https://agentmods.dev/badge/skills/buildfastwithai/gen-ai-experiments/eazyr-main/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.
<a href="https://agentmods.dev/skills/buildfastwithai/gen-ai-experiments/eazyr-main"><img src="https://agentmods.dev/badge/skills/buildfastwithai/gen-ai-experiments/eazyr-main.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 4 findings, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium MCP Rug Pull · line 35 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 46 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 57 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 86 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
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.1 | $0.00092 | $0.01336 |
| Opus 5 | $0.00046 | $0.00668 |
| Sonnet 5 | $0.00018 | $0.00267 |
| Haiku 4.5 | $0.00009 | $0.00134 |
Grade A, and why
eazyr 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 10d 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 — 124 lines — stays where its author put it; the contents beside it link to each section on GitHub.
eazyr
Turn "clone it and good luck" into a five-minute path from clone to a running app.
You produce an onboarding kit that lives in the repo:
| Artifact | Purpose |
|---|---|
QUICKSTART.md |
The shortest correct path from clone to "it works" |
scripts/doctor.sh + scripts/doctor.ps1 |
Runnable checks that fail loudly before setup wastes an hour |
.env.example |
Every variable the app reads, documented, with safe defaults |
The one rule
Never write a step you have not verified against the repo. Invented steps are worse than absent ones — they cost the reader the time it takes to discover they're fake.
This ships with a scanner so you don't have to rely on memory. eazyr scan --json
returns detected facts with the file each one came from. Prefer it over reading twenty
files by hand, and cite its provenance rather than guessing.
If a fact is missing, write > **TODO:** and say what you'd need. Never fill the hole
with something plausible.
Workflow
1. Scan
npx eazyr scan --json
Returns: ecosystems (stack, package manager, version ranges, real commands from the
manifest), env.vars (each with required, secret, and sources: ["file:line"]),
compose and services, ports, verify (health endpoint or test command), steps
(the ordered setup path), and gaps (what's missing).
Read the human summary first if you just want orientation:
npx eazyr scan
The scanner is a strong first pass, not an oracle. It is regex-based, skips
node_modules, and caps at 4000 files. Verify anything surprising by opening the file it
cites. If ecosystems is empty or truncated is true, fall back to reading the repo
yourself — references/detect.md is the manual lookup table.
2. Generate the first draft
npx eazyr init # add --force to overwrite, --dry-run to preview
Writes all four files from the scan. Existing files are skipped unless --force, so this
is safe to run in a repo that already has some docs.
What ships with it
21 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- .gitattributes 515 B
- .github/workflows/ci.yml 947 B
- .gitignore 233 B
- assets/doctor.ps1 4.2 KB runs code
- assets/doctor.sh 4.0 KB runs code
- assets/env.example.template 1.5 KB
- assets/QUICKSTART.template.md 2.4 KB
- bin/eazyr.mjs 8.5 KB runs code
- LICENSE 1.1 KB
- package.json 960 B
- README.md 8.1 KB
- references/detect.md 3.5 KB
- references/doctor.md 3.0 KB
- references/quickstart.md 2.8 KB
- src/checks.mjs 9.2 KB runs code
- src/generate.mjs 14 KB runs code
- src/install.mjs 1.5 KB runs code
- src/scan.mjs 21 KB runs code
- src/ui.mjs 1.4 KB runs code
- src/walk.mjs 2.9 KB runs code
- test/run.mjs 12 KB runs code
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.
- 10d ago First seen · 124 lines · 92 tokens per session scan A b6ac2a4f55e6
eazyr is a skill published in the GitHub repository buildfastwithai/gen-ai-experiments (763 stars, last pushed today), licensed MIT. It adds 92 tokens to every session and 1,336 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
orbit-notion
Open Orbit briefing skill — selected by the Orbit pipeline when Notion is the user's only connected connector, or when the user explicitly scopes their daily digest to Notion. Pulls the past 24 hours of document edits, comments, mentions, and database row changes from the user's authenticated Notion connection and…
Cortex
Operate Cortex, the LifeOS memory system — the typed Knowledge Archive (People, Companies, Ideas, Research with typed related: links) plus recall of prior work sessions, ISAs, and conversations. Search, add, harvest, develop, ingest, distill, graph-navigate, recall. USE WHEN cortex, knowledge, knowledge base, search…
pinchtab-mcp
Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element interaction, data extraction, form filling, multi-step flows, and session management via MCP tools.
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
peekaboo
Capture and automate macOS UI with the Peekaboo CLI.
mochi-remind
Handle due reminders — notify the user with natural language and mark them done.