coding-agents-superpack

coding-agents-superpack is a skill for Codex from frankxai/awesome-hermes-agent-skills. It costs 56 tokens per session (1,005 once invoked), scanned A, original, MIT.

A portable set of patterns for coordinating several coding-agent command-line tools, such as Codex, Claude Code, OpenCode, and Grok CLI. It covers finding available agents, comparing them, and handing work from one agent to another.

In plain words
What is it for?
Use it to check installed agent tools, design structured prompts, test agents in an isolated Git repository, and coordinate workflows where one agent leads and another handles a specialist task.
Why use it?
It helps when one coding tool cannot handle every part of a task or when you need to understand which tools are available. It also provides a shared approach for directing multiple agents without relying on one specific computer setup.

Skill for Codex

Written for Codex: runs codex exec. Also seen: mentions Claude Code; mentions Codex; built for hermes-agent.

Good fit Use it to check installed agent tools, design structured prompts, test agents in an isolated Git repository, and coordinate workflows where one agent leads and another handles a specialist task.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/frankxai/awesome-hermes-agent-skills/coding-agents-superpack
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 frankxai/awesome-hermes-agent-skills --skill coding-agents-superpack
Clone the repo
git clone --depth 1 https://github.com/frankxai/awesome-hermes-agent-skills

Made for: 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 coding-agents-superpack

README.md
[![agentmods](https://agentmods.dev/badge/skills/frankxai/awesome-hermes-agent-skills/coding-agents-superpack/github.svg)](https://agentmods.dev/skills/frankxai/awesome-hermes-agent-skills/coding-agents-superpack)
Your own site
<a href="https://agentmods.dev/skills/frankxai/awesome-hermes-agent-skills/coding-agents-superpack"><img src="https://agentmods.dev/badge/skills/frankxai/awesome-hermes-agent-skills/coding-agents-superpack/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 coding-agents-superpack

Your own site · 80×15
<a href="https://agentmods.dev/skills/frankxai/awesome-hermes-agent-skills/coding-agents-superpack"><img src="https://agentmods.dev/badge/skills/frankxai/awesome-hermes-agent-skills/coding-agents-superpack.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,005 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.00056 $0.01005
Opus 5 $0.00028 $0.00502
Sonnet 5 $0.00011 $0.00201
Haiku 4.5 $0.00006 $0.00101

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

Security

Grade A, and why

coding-agents-superpack 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/coding-agents-superpack/SKILL.md · 128 lines

How it starts

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

Coding Agents Superpack (Free)

Portable multi-CLI orchestration patterns for Hermes, Claude Code, Codex, OpenCode, Grok CLI, and similar agents.

This free pack is sanitized. Personal host quirks, private brand wiring, and machine-specific topology live in private overlays — not here.

When to Use

  • Multiple coding CLIs available; need discovery or comparison
  • Designing structured prompts for autonomous coding agents
  • Multi-agent collaboration with a shared board (Model Council pattern)
  • Building hybrid “orchestrator drives + specialist CLI executes” workflows

Don't use for: single-CLI deep flags (load that vendor’s skill/docs); private multi-brand empire ops.

Discovery (run first)

which codex && codex --version
which claude && claude --version && claude auth status
which opencode && opencode --version
which grok && grok --version
# health
codex doctor 2>/dev/null
claude doctor 2>/dev/null

Prefer project-scoped filesystem checks. Avoid recursive search from home or drive roots (slow, noisy, and unsafe on multi-device Windows setups).

Test agents in an isolated temp git repo:

TEST_DIR=$(mktemp -d)
cd "$TEST_DIR" && git init -q && echo "# test" > README.md && git add . && git commit -q -m init

Headless modes (automation)

Agent Preferred non-interactive
Claude Code claude -p "…" --max-turns N --allowedTools "Read,Edit,Bash"
Codex codex exec "…" (sandbox flags per install)
OpenCode opencode run "…"
Grok CLI grok --always-approve "…" (confirm flags for your version)

Universal prompt structure

# Objective
Clear goal + measurable success criteria

# Context
1. Read these exact files first: …
2. Constraints: …

# Procedure
1. …
2. …

# Required Artifacts
- Files with exact paths
- Verification report

# Verification
Run tests/lint; report failures; do not claim done without evidence

Model Council (lightweight multi-agent)

Read the full file on GitHub · 128 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 · 128 lines · 56 tokens per session scan A 2b43729f9848

Subscribe to this mod's changes

coding-agents-superpack is a skill published in the GitHub repository frankxai/awesome-hermes-agent-skills (4 stars, last pushed 3d ago), licensed MIT. It adds 56 tokens to every session and 1,005 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

gh-issue-to-demand-signal

Takes a competitor's public GitHub repo URL, fetches their open issues via the GitHub REST API, filters noise locally, clusters issues into 6 demand categories, computes a demand score per issue and per cluster, and outputs a ranked demand gap report with a GTM messaging brief. Use when asked to scan a competitor's…

Varnan-Tech/opendirectory · 154 tokens

npm-downloads-to-leads

Takes a list of npm package names (yours or competitors'), fetches 12 weeks of daily download data from the npm API, computes a breakout velocity score per package to identify hockey-stick growth, fetches maintainer profiles from the npm registry and GitHub API, and outputs a ranked lead brief for each breakout…

Varnan-Tech/opendirectory · 172 tokens

graphic-ebook

Creates professionally designed B2B SaaS e-books in HTML + CSS, exported as print-ready PDF. 3–10 pages, 9 style presets, 11 page layout types. Trigger when user says "create an ebook", "design a lead magnet", "make a PDF guide", "build a gated content piece", "write a B2B ebook", "design a white paper", "create a…

Varnan-Tech/opendirectory · 97 tokens

map-your-market

Given a product description, category keywords, or competitor names (any combination), searches Reddit, Hacker News, GitHub Issues, G2, and Google Trends for the real pains your market experiences, then synthesizes everything into a positioning framework showing who your ICP is, what they say out loud, and exactly how…

Varnan-Tech/opendirectory · 163 tokens

company-radar

Competitive intelligence orchestrator tracking companies across 8+ platforms (GitHub, Twitter, Reddit, HN, PH, YC Jobs) with heat scores and AI briefings.

Varnan-Tech/opendirectory · 39 tokens

dependency-update-bot

Scans your project for outdated npm, pip, Cargo, Go, or Ruby packages. Runs a CVE security audit. Fetches changelogs, summarizes breaking changes with Gemini, and opens one PR per risk group (patch, minor, major). Includes Diagnosis Mode for install conflicts. Use when asked to update dependencies, check for outdated…

Varnan-Tech/opendirectory · 134 tokens