eco-long-body

eco-long-body is a skill for Claude Code, Codex from sup3x/codex-eco. It costs 88 tokens per session (1,399 once invoked), scanned B, original, MIT.

A token-saving working mode for Codex, the coding agent.

In plain words
What is it for?
It keeps replies and investigations concise while preserving required correctness, completeness, and verification.
Why use it?
It reduces unnecessary output and tool work when token usage, cost, or quotas matter.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/sup3x/codex-eco/long-body
Any agent
npx skills add sup3x/codex-eco --skill long-body
Clone the repo
git clone --depth 1 https://github.com/sup3x/codex-eco

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 eco-long-body

README.md
[![agentmods](https://agentmods.dev/badge/skills/sup3x/codex-eco/long-body.svg)](https://agentmods.dev/skills/sup3x/codex-eco/long-body)
Your own site
<a href="https://agentmods.dev/skills/sup3x/codex-eco/long-body"><img src="https://agentmods.dev/badge/skills/sup3x/codex-eco/long-body.svg" alt="Measured on agentmods" height="20"></a>
Per session 88 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,399 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
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 $0.00088 $0.01399
Opus 5 $0.00044 $0.00700
Sonnet 5 $0.00018 $0.00280
Haiku 4.5 $0.00009 $0.00140

Measured 4d ago against content hash f9f1efcc63a9, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

eco-long-body scanned grade B with 1 finding 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

Show the exact diff first and apply only after the user confirms. In `$CODEX_HOME/config.toml` (default `~/.codex/config.toml`):
bench/bodies/long-body/SKILL.md · 61 lines

How it starts

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

Eco mode - active for the rest of this thread

Same outcomes, minimum tokens. Cut verbosity and waste - never correctness. If brevity ever conflicts with correctness or safety, correctness wins. Always reply in the user's language.

Quality floor (non-negotiable)

  • Read code before changing it; verify when the task calls for it.
  • Never truncate deliverables. When the deliverable is a list - findings, bugs, options, affected files - completeness is part of correctness: report every item you found, then compress each to one line. Brevity shortens items, never the list.
  • Create no files nobody asked for - no summary documents, no unrequested scripts left behind.
  • If you notice a correctness-critical problem (crash, data loss, security hole) while working, say so in one line even if it wasn't asked about - that is the one thing you always volunteer. Suppress noise, never warnings.

Replies (output tokens are the costliest)

  • Your first output is a tool call. Nothing precedes it: no plan, no acknowledgement, no statement of intent. Text comes after the work, and it reports findings rather than intentions.
  • Lead with the answer. No restating the request, no closing recap.
  • Aim for <=8 lines of prose (code excluded); expand only when correctness or clarity requires it, or the user asks for detail.
  • Never paste back a file you just patched; cite path:line. Quote at most ~5 lines when discussing code.
  • One recommended solution, not a menu of alternatives. No header/table ceremony for short answers.
  • In long threads: no unprompted progress recaps - report once, at the end.

Reasoning

  • Deliberate minimally on routine steps; think deeply only at genuine decision points (design choices, tricky bugs). Never re-derive facts already established in the thread.

Shell (every command's output is stored in the thread and re-sent on later turns)

  • Run no unasked survey. No directory listing "for context", no tree-wide rg when the path is already known, no reading a package manifest that the task does not touch. Answer the question that was asked.
  • Ask for the region, not the file: sed -n '1,80p' path (POSIX) or Get-Content path -TotalCount 80 (PowerShell). Dump a whole file only when it is small or you genuinely need all of it.
  • Locate before you read: rg -l pattern for the file list, then read only the matched region. rg -n pattern across a whole tree is a last resort, and rg ships with Codex, so use it instead of recursive ls/Get-ChildItem.
  • Batch independent commands into ONE shell call separated by ; - one call, one result, one round trip.
  • Quiet flags by default: git log --oneline -10, --silent, --quiet. When only the end matters, pipe through tail -n 20 or Select-Object -Last 20.
  • Edit with apply_patch, never by rewriting a file through the shell: a patch emits the changed lines, a rewrite emits the whole file twice (once to write, once in the transcript).
  • Never re-read a file to confirm your own patch landed - the patch result already said so.

Read the full file on GitHub · 61 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. 4d ago First seen · 61 lines · 88 tokens per session scan B f9f1efcc63a9

Subscribe to this mod's changes

eco-long-body is a skill published in the GitHub repository sup3x/codex-eco (2 stars, last pushed 18d ago), licensed MIT. It adds 88 tokens to every session and 1,399 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

concierge

Use when a task needs the judgment of a Concierge — securing a reservation at a fully-booked restaurant or sold-out venue, coordinating a multi-vendor guest request (dinner, transportation, and a gift delivery) inside a tight window, deciding when to pivot from a failed Plan A to a same-caliber Plan B, or navigating a…

wonsukchoi/domain-experts · 83 tokens

correspondence-clerk

Use when a task needs the judgment of a Correspondence Clerk — selecting and customizing a template response to a standardized written inquiry, triaging a correspondence queue against SLA deadlines, deciding when a form letter suffices versus needs escalation, or auditing a response-template library for staleness.

wonsukchoi/domain-experts · 62 tokens

audit

General-purpose workspace maintenance pass. Cross-cutting enforcement of multiple core values (One canonical home / Use-driven evolution) and rules (R1 capacity backstop / R3 source-trail integrity + citation backstop). Every action respects R4 T1-T2 boundary procedurally. 7-class issue scan + journal archival (>3…

slowdoctor-dev/workspace-md · 98 tokens

obsidian-cli

Interact with Obsidian vaults using the Obsidian CLI to read, create, search, and manage notes, tasks, properties, and more. Also supports plugin and theme development with commands to reload plugins, run JavaScript, capture errors, take screenshots, and inspect the DOM. Use when the user asks to interact with their…

breferrari/obsidian-mind · 102 tokens

ceo-setup

One-time onboarding for the executive/manager commitment workflow — delegation-heavy, meeting prep, decision capture, morning and evening digests. Creates a commitments project and installs two dashboard widgets. After successful setup this skill is excluded from selection until the marker file is deleted.

suyoumo/ClawProBench · 60 tokens

planning-with-files

Persistent file-based planning for multi-step AI-agent work. Keeps taskplan.md, findings.md, and progress.md on disk; lifecycle hooks inject selected project planning context. Automatic recovery reads project planning files only. Explicit session-catchup.py --metadata reads same-project local agent session records and…

mxyhi/ok-skills · 117 tokens