configure-ecc

configure-ecc is a skill for Claude Code from Jamkris/everything-gemini-code. It costs 38 tokens per session (2,877 once invoked), scanned D, original, MIT.

An interactive installer for Everything Gemini CLI, a command-line tool that uses configurable skills and rules to help with coding tasks.

In plain words
What is it for?
Use it to set up, verify, repair, or optimize Everything Gemini CLI skills and rules for your user account or a project.
Why use it?
It guides you through choosing what to install, checks whether the installation worked, and can optimize the installed files.

Skill for Claude Code

Written for Claude Code: Claude Code plugin machinery. Also seen: mentions subagents; names the AskUserQuestion tool; mentions Gemini CLI.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is grep -rn "../common/" $TARGET/rules/.

Good fit Use it to set up, verify, repair, or optimize Everything Gemini CLI skills and rules for your user account or a project.

Compare 6 skills from other repositories ↓
Install

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.

Clone the repo
git clone --depth 1 https://github.com/Jamkris/everything-gemini-code
agentmods
npx agentmods add skills/jamkris/everything-gemini-code/configure-ecc

Made for: Claude Code.

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 configure-ecc

README.md
[![agentmods](https://agentmods.dev/badge/skills/jamkris/everything-gemini-code/configure-ecc.svg)](https://agentmods.dev/skills/jamkris/everything-gemini-code/configure-ecc)
Your own site
<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>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,877 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 2 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.00038 $0.02877
Opus 5 $0.00019 $0.01438
Sonnet 5 $0.00008 $0.00575
Haiku 4.5 $0.00004 $0.00288

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

Security

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
skills/configure-ecc/SKILL.md · 299 lines

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:

  1. Via Plugin: /plugin install everything-gemini-code — the plugin loads this skill automatically
  2. 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

Read the full file on GitHub · 299 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 · 299 lines · 38 tokens per session scan D f89545af4d7c

Subscribe to this mod's changes

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.

Related

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.

richardcb/oh-my-gemini · 52 tokens

meeting-prep

Group skill: Meeting preparation — status check, progress review, demo prep, structured notes, follow-ups, and action items.

may215/antigravity-awesome-group-skills · 29 tokens

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.

roedyrustam/vibes-plug · 46 tokens

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…

isdou/codeck · 108 tokens

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.

Milkeles/turnbreak · 59 tokens

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…

pauldatta/gemini-cli-scanner · 82 tokens