Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/Jamkris/everything-gemini-codenpx agentmods add skills/jamkris/everything-gemini-code/configure-eccWrote 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/jamkris/everything-gemini-code/configure-ecc)<a href="https://agentmods.dev/skills/jamkris/everything-gemini-code/configure-ecc"><img src="https://agentmods.dev/badge/skills/jamkris/everything-gemini-code/configure-ecc.svg" alt="Measured on agentmods" height="20"></a>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.00038 | $0.02877 |
| Opus 5 | $0.00019 | $0.01438 |
| Sonnet 5 | $0.00008 | $0.00575 |
| Haiku 4.5 | $0.00004 | $0.00288 |
Grade D, and why
configure-ecc scanned grade D with 2 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 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.
grep -rn "~/.gemini/" $TARGET/skills/ $TARGET/rules/ Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf /tmp/everything-gemini-code How it starts
The opening of the file, as written. The whole thing — 299 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Configure Everything Gemini CLI (ECC)
An interactive, step-by-step installation wizard for the Everything Gemini CLI project. Uses AskUserQuestion to guide users through selective installation of skills and rules, then verifies correctness and offers optimization.
When to Use
- User says "configure ecc", "install ecc", "setup everything gemini code", or similar
- User wants to selectively install skills or rules from this project
- User wants to verify or fix an existing ECC installation
- User wants to optimize installed skills or rules for their project
Prerequisites
This skill must be accessible to Gemini CLI before activation. Two ways to bootstrap:
- Via Plugin:
/plugin install everything-gemini-code— the plugin loads this skill automatically - Manual: Copy only this skill to
~/.gemini/skills/configure-ecc/SKILL.md, then activate by saying "configure ecc"
Step 0: Clone ECC Repository
Before any installation, clone the latest ECC source to /tmp:
rm -rf /tmp/everything-gemini-code
git clone https://github.com/Jamkris/everything-gemini-code.git /tmp/everything-gemini-code
Set ECC_ROOT=/tmp/everything-gemini-code as the source for all subsequent copy operations.
If the clone fails (network issues, etc.), use AskUserQuestion to ask the user to provide a local path to an existing ECC clone.
Step 1: Choose Installation Level
Use AskUserQuestion to ask the user where to install:
Question: "Where should ECC components be installed?"
Options:
- "User-level (~/.gemini/)" — "Applies to all your Gemini CLI projects"
- "Project-level (.gemini/)" — "Applies only to the current project"
- "Both" — "Common/shared items user-level, project-specific items project-level"
Store the choice as INSTALL_LEVEL. Set the target directory:
- User-level:
TARGET=~/.gemini - Project-level:
TARGET=.gemini(relative to current project root) - Both:
TARGET_USER=~/.gemini,TARGET_PROJECT=.gemini
Create the target directories if they don't exist:
mkdir -p $TARGET/skills $TARGET/rules
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.
- 4d ago First seen · 299 lines · 38 tokens per session scan D f89545af4d7c
configure-ecc is a skill published in the GitHub repository Jamkris/everything-gemini-code (88 stars, last pushed 3mo ago), licensed MIT. It adds 38 tokens to every session and 2,877 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it D with 2 findings (reads agent configuration directories, recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
persistence
Continue working on a task until completion with automatic retry, self-verification, and alternative approaches. Activates "ralph mode" - never give up until the goal is achieved or explicitly impossible. Use when tasks require tenacity and iteration.
meeting-prep
Group skill: Meeting preparation — status check, progress review, demo prep, structured notes, follow-ups, and action items.
proactive-background-watcher
Grants the AI the ability to act proactively using native cron/timer scheduling. The agent can monitor systems, poll APIs, or watch logs in the background and self-trigger without waiting for user prompts.
codeck
Route explicit requests from a host coding agent to one or more locally configured AI executors through Codeck, attach Markdown or other project files, moderate cross-model consultation, expose disagreements, and synthesize traceable results. Use when the user explicitly names Codeck or asks to consult, compare, or…
turnbreak
Shows you something worth reading while your coding agent works, then notifies you when it's done. Use this skill to install turnbreak's turn-start/turn-stop hooks for Claude Code, Codex, Gemini CLI, or Copilot CLI, or to manage its interests and settings.
scan
Scan your AI coding tool ecosystem — Gemini CLI, Claude Code, Antigravity (Desktop, CLI, IDE), Continue, Windsurf, JetBrains AI, OpenCode. Produces a maturity score, advisory recommendations, and optionally generates reusable SKILL.md files from your conversation patterns. Use when the user asks to audit their…