eazyr

eazyr is a skill for Claude Code, Codex from buildfastwithai/gen-ai-experiments. It costs 92 tokens per session (1,336 once invoked), scanned A, original, MIT.

An onboarding kit for making an unfamiliar software repository easier to run. It creates verified setup instructions, environment-variable documentation, and checks for common setup problems.

In plain words
What is it for?
It helps prepare a QUICKSTART.md file, setup-check scripts, and a documented .env.example file for new developers or projects that are difficult to start.
Why use it?
It removes the guesswork caused by missing, outdated, or scattered setup instructions. It also avoids sending developers through steps that have not been checked against the repository.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps prepare a QUICKSTART.md file, setup-check scripts, and a documented .env.example file for new developers or projects that are difficult to start.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/buildfastwithai/gen-ai-experiments/eazyr-main
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 buildfastwithai/gen-ai-experiments --skill eazyr-main
Clone the repo
git clone --depth 1 https://github.com/buildfastwithai/gen-ai-experiments

Made for: Claude Code, Codex.

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 eazyr

README.md
[![agentmods](https://agentmods.dev/badge/skills/buildfastwithai/gen-ai-experiments/eazyr-main/github.svg)](https://agentmods.dev/skills/buildfastwithai/gen-ai-experiments/eazyr-main)
Your own site
<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.

agentmods 80×15 button for eazyr

Your own site · 80×15
<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>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,336 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
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]
How audits are shown
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.00092 $0.01336
Opus 5 $0.00046 $0.00668
Sonnet 5 $0.00018 $0.00267
Haiku 4.5 $0.00009 $0.00134

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

Security

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.

The scan reads SKILL.md. This mod also ships 10 executable files (assets/doctor.ps1, assets/doctor.sh, bin/eazyr.mjs, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

apps/eazyr-main/SKILL.md · 124 lines

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.

Read the full file on GitHub · 124 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. 10d ago First seen · 124 lines · 92 tokens per session scan A b6ac2a4f55e6

Subscribe to this mod's changes

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.