author-atom-eve-agent

author-atom-eve-agent is a skill for Claude Code, Codex from elie222/atom-eve. It costs 102 tokens per session (1,169 once invoked), scanned A, original, MIT.

A guide for creating and contributing a new Atom Eve agent to its public registry. Atom Eve is a catalogue of installable AI agents, similar to a package registry.

In plain words
What is it for?
Use it when designing an agent, connecting its tools, and writing its README, setup instructions, and source files.
Why use it?
It explains the repository structure, design requirements, and files needed so a new agent can be prepared for review consistently.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code; mentions AGENTS.md.

Good fit Use it when designing an agent, connecting its tools, and writing its README, setup instructions, and source files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/elie222/atom-eve/author-atom-eve-agent
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 elie222/atom-eve --skill author-atom-eve-agent
Clone the repo
git clone --depth 1 https://github.com/elie222/atom-eve

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 author-atom-eve-agent

README.md
[![agentmods](https://agentmods.dev/badge/skills/elie222/atom-eve/author-atom-eve-agent/github.svg)](https://agentmods.dev/skills/elie222/atom-eve/author-atom-eve-agent)
Your own site
<a href="https://agentmods.dev/skills/elie222/atom-eve/author-atom-eve-agent"><img src="https://agentmods.dev/badge/skills/elie222/atom-eve/author-atom-eve-agent/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 author-atom-eve-agent

Your own site · 80×15
<a href="https://agentmods.dev/skills/elie222/atom-eve/author-atom-eve-agent"><img src="https://agentmods.dev/badge/skills/elie222/atom-eve/author-atom-eve-agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 102 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,169 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.00102 $0.01169
Opus 5 $0.00051 $0.00584
Sonnet 5 $0.00020 $0.00234
Haiku 4.5 $0.00010 $0.00117

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

Security

Grade A, and why

author-atom-eve-agent 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 11d 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.

skills/author-atom-eve-agent/SKILL.md · 70 lines

How it starts

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

Author an Atom Eve agent

Atom Eve is an open registry of installable AI agents, like shadcn but for agents. Authoring one means adding a folder under registry/<agent>/ in the elie222/atom-eve repo and opening a PR. This skill is the entry point; the full reference is the repo's AGENTS.md, and the README has its own skill, agent-readme.

Get into the repo

You author inside the repo, next to the example agents and the generator that validates them.

  • Not in the repo yet: fork and clone it (gh repo fork elie222/atom-eve --clone, or clone your fork), then pnpm install.
  • Already in it: work in registry/<agent>/.

Start from the closest existing agent (browse registry/) rather than a blank folder.

What earns being an agent

An agent must do work only an LLM can do: judgment, reasoning, writing. If removing the model leaves roughly the same output, it is a script, not an agent. Tools, CLIs, and connections return raw facts; the model does the reasoning and the writing. Never bake copy or decisions into tool code.

Do not publish a registry entry that is only a thin wrapper around a reusable skill. If the same result is better achieved by telling Claude Code or another coding agent to load the raw skill, keep it as a skill rather than an Atom Eve agent. The strongest shape is an unattended check-then-act loop: the agent checks real project state (merged PRs, live pages, connected data), verifies what it finds, and then acts — opens a PR, files issues, or alerts a channel only on material change (docs-sync is the model). Channel workflows that change where work happens, connected data sources, durable history, and guarded writes also count. A schedule or Slack access alone does not: a cron that re-runs a generic audit and emits a report is still a skill wrapper, and a prompt that says "use this skill/CLI and write a report" is not enough on its own.

The pattern (headlines; AGENTS.md has the detail)

  • Structure. registry/<agent>/ holds exactly three things: README.md (manifest in its frontmatter, pitch in the body), SETUP.md (env/config facts in frontmatter, walkthrough in the body), and agent/ (instructions.md, which opens with a <!-- project-config --> block, plus optional connections/, schedules/, sandbox/, tools/, skills/, lib/). The build derives name, title, family, and connections. See "Anatomy of an Agent".
  • Capability: walk the ladder, stop at the first rung that fits. Start by looking the service up on integrations.sh (GET https://integrations.sh/api/{domain}/surface, or its public MCP server https://integrations.sh/mcp) to see which surfaces exist and what auth they need; its credential guides also feed SETUP.md env entries (verify discovered facts against official docs). Then: 1) A good CLI exists: run it in the sandbox + a usage skill. 2) A hosted MCP server exists: MCP connection, narrowed with tools.allow. 3) A small known API surface: plain defineTool with a direct fetch, shared client code in agent/lib/. 4) Big API surface, no CLI, no MCP: OpenAPI connection, the last resort, narrowed with operations.allow. See "Giving an agent capability".
  • Be opinionated. Wire every data source the agent needs and make them all required; name a primary (first-party ground truth) and a secondary (competitive / gap) rather than marking either optional. Only a stack-dependent write destination (a GitHub blog vs a CMS) is optional.
  • Config in one place. What the operator sets (site, domain, repo, keywords) lives in the <!-- project-config --> block at the top of instructions.md, mirrored one-to-one by SETUP.md config; the schedule's prompt stays generic and refers to "the configured X".
  • instructions.md is addressed to the agent in the second person. No credentials, no marketing tone, no "edit this after install".
  • README: use the agent-readme skill. Value-led "What it does", skimmable, no Setup section. Everything the agent needs (env, config, the wiring walkthrough) goes in SETUP.md instead.

Read the full file on GitHub · 70 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. 11d ago First seen · 70 lines · 102 tokens per session scan A 789cb195f480

Subscribe to this mod's changes

author-atom-eve-agent is a skill published in the GitHub repository elie222/atom-eve (49 stars, last pushed 2mo ago), licensed MIT. It adds 102 tokens to every session and 1,169 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.

Related

Other skills, from other repositories

seo-audit

How to present the deterministic AI-SEO audit returned by auditpage. Use when reporting a page's readability and citation-readiness for AI answer engines (ChatGPT, Claude, Perplexity).

shadcn-labs/agentcn · 43 tokens

workspace

How to safely operate the sandboxed workspace. Use for any multi-step task involving files or shell commands.

shadcn-labs/agentcn · 23 tokens

research

Iterative, self-evaluating web research. Use when answering open-ended questions that require gathering and verifying information from multiple sources.

shadcn-labs/agentcn · 28 tokens

writing-quality

Writing-quality guardrails for any prose the agent drafts or edits: blog posts, page copy, Notion drafts, release notes, marketing text. Use this skill whenever writing or revising content meant for humans to read, to keep the prose natural, plain, and free of AI-sounding phrasing. Not needed for code, queries, or…

vercel-labs/sanity-copilot-eve-template · 73 tokens

sanity-best-practices

Sanity development best practices for schema design, GROQ queries, TypeGen, Visual Editing, images, Portable Text, Studio structure, localization, migrations, Sanity Functions, Blueprints, and framework integrations such as Next.js, Nuxt, Astro, Remix, SvelteKit, Angular, Hydrogen, and the App SDK. Use this skill…

vercel-labs/sanity-copilot-eve-template · 153 tokens

portable-text-serialization

Render and serialize Portable Text to React, Svelte, Vue, Astro, HTML, Markdown, and plain text. Use when implementing Portable Text rendering in any frontend framework, building custom serializers for non-standard block types, converting Portable Text to HTML strings server-side, converting Portable Text to Markdown…

vercel-labs/sanity-copilot-eve-template · 80 tokens