Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
affaan-m avatar

Ecc Guide

  • 2.3k installs
  • 238k repo stars
  • Updated August 5, 2026
  • affaan-m/everything-claude-code

Provide current, filesystem-grounded guidance on ECC components (skills, commands, agents, hooks, rules, profiles) and installation paths; inspect live repository state before answering concrete questions.

About

The ECC Guide skill helps developers navigate Everything Claude Code, a living repository of agents, skills, commands, hooks, and install profiles. It emphasizes real-time filesystem inspection over stale catalogs, enabling users to discover components, understand relationships between skills and commands, and resolve installation paths. Core tasks include onboarding new users, feature discovery, managed install guidance, project-specific configuration via /project-init, and troubleshooting harness integration. The skill prioritizes skills-first workflows while maintaining command compatibility shims and delegates to subagents when appropriate, ensuring current answers grounded in repository state.

  • Real-time repository inspection via scripts (catalog.js, install-plan.js) ensures answers never stale
  • Skills-first workflow philosophy with maintained command shims as secondary surface
  • Guided onboarding menu for new users: install, stack detection, hook behavior, harness audit
  • Project-specific configuration via /project-init detecting stack and resolving dry-run plans
  • Troubleshooting workflow: target harness first, inspect plugin metadata and hooks.json, suggest audit/observability chec

Ecc Guide by the numbers

  • 2,284 all-time installs (skills.sh)
  • +217 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #172 of 1,879 Documentation skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

ecc-guide capabilities & compatibility

Capabilities
inspect live repository catalog and component li · resolve managed install plans for profiles and s · guide users through new user onboarding menu · explain component relationships (skills, command · troubleshoot install state and harness integrati · detect project stack and recommend ecc component
Use cases
code review · documentation · devops · research · project management
From the docs

What ecc-guide says it does

Answer from current files, not memory. ECC changes quickly, so hard-coded catalog counts, feature lists, and install instructions go stale.
SKILL.md / Core Principle
Use the smallest set of reads needed for the user's question.
SKILL.md / Core Principle
Lead with the answer, then give the next action. Most users do not need a full catalog dump.
SKILL.md / Response Style
npx skills add https://github.com/affaan-m/everything-claude-code --skill ecc-guide

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs2.3k
repo stars238k
Security audit2 / 3 scanners passed
Last updatedAugust 5, 2026
Repositoryaffaan-m/everything-claude-code

What it does

Navigate, understand, and install Everything Claude Code components for AI agents and developer tools.

Who is it for?

New ECC users, feature discovery, install planning, project onboarding, troubleshooting harness integration, learning skill/command/agent distinctions.

Skip if: Building new skills (use /skill-create), auditing harness readiness (use /harness-audit), reviewing skill quality (use /skill-health), security scanning (use /security-scan).

When should I use this skill?

User asks what ECC includes, how to find a component, how to install, how to configure for a project, or how parts relate; user is new to repository.

What you get

User successfully discovers appropriate ECC components, understands installation options, and integrates them into their harness with confidence.

  • Guided onboarding menu for new users
  • Install plan dry-run output for a target harness
  • Component recommendations filtered by use case

By the numbers

  • Core scripts: catalog.js, install-plan.js, install-apply.js, hooks.json, harness-audit
  • Repository sections: skills/, commands/, agents/, rules/, hooks/, manifests/, docs/
  • Supported harnesses: claude, cursor, codex, gemini, opencode, codebuddy, joycode, qwen

Files

SKILL.mdMarkdownGitHub ↗

ECC Guide

Use this skill when a user needs help understanding, navigating, installing, or choosing parts of Everything Claude Code.

When To Use

Use this skill when the user:

  • asks what ECC includes
  • wants help finding a skill, command, agent, hook, rule, or install profile
  • is new to the repository and needs a guided path
  • asks "how do I do X with ECC?"
  • asks which ECC components fit a project
  • needs a lightweight explanation of how commands, skills, agents, hooks, and rules relate
  • is confused by install paths, duplicate installs, reset/uninstall, or selective install options

Core Principle

Answer from current files, not memory. ECC changes quickly, so hard-coded catalog counts, feature lists, and install instructions go stale.

When the ECC repository is available, inspect the relevant files before giving a concrete answer:

node scripts/ci/catalog.js --json
find skills -maxdepth 2 -name SKILL.md | sort
find commands -maxdepth 1 -name '*.md' | sort
find agents -maxdepth 1 -name '*.md' | sort
node scripts/install-plan.js --list-profiles
node scripts/install-plan.js --list-components --json

Use the smallest set of reads needed for the user's question.

Repository Map

  • README.md: install paths, uninstall/reset guidance, public positioning, FAQs
  • AGENTS.md: contributor guidance and project structure
  • agent.yaml: exported gitagent surface and command list
  • commands/: maintained slash-command compatibility shims
  • skills/*/SKILL.md: reusable workflows and domain playbooks
  • agents/*.md: delegated subagent role prompts
  • rules/: language and harness rules
  • hooks/README.md, hooks/hooks.json, scripts/hooks/: hook behavior and safety gates
  • manifests/install-*.json: selective install modules, components, profiles, and target support
  • docs/: harness guides, architecture notes, translated docs, release docs

Response Style

Lead with the answer, then give the next action. Most users do not need a full catalog dump.

Good first response shape:

1. what to use 2. why it fits 3. exact file or command to inspect 4. one next command or question

Avoid:

  • listing every skill or command by default
  • repeating large README sections
  • recommending retired command shims when a skill-first path exists
  • claiming a component exists without checking the filesystem
  • replacing install guidance with manual copy commands when the managed installer supports the target

Common Tasks

New User Onboarding

Give a short menu:

  • install or reset ECC
  • pick skills for a project
  • understand commands vs skills
  • inspect hooks and safety behavior
  • run a harness audit
  • find a specific workflow

Point to README.md for install/reset and /project-init for project-specific onboarding.

Feature Discovery

For "what should I use for X?":

1. Search skills/, commands/, and agents/. 2. Prefer skills as the primary workflow surface. 3. Use commands only when they are a maintained compatibility shim or a user explicitly wants slash-command behavior. 4. Mention agents when delegation is useful.

Useful searches:

rg -n "<query>" skills commands agents docs
find skills -maxdepth 2 -name SKILL.md | sort

Install Guidance

Use managed install paths:

node scripts/install-plan.js --list-profiles
node scripts/install-plan.js --profile minimal --target claude --json
node scripts/install-apply.js --profile minimal --target claude --dry-run

For specific skill installs:

node scripts/install-plan.js --skills <skill-id> --target claude --json
node scripts/install-apply.js --skills <skill-id> --target claude --dry-run

Warn users not to stack plugin installs and full manual/profile installs unless they intentionally want duplicate surfaces.

Project Onboarding

Use /project-init when the user wants ECC configured for a target repo. The expected sequence is:

1. detect the stack from project files 2. resolve a dry-run install plan 3. inspect existing CLAUDE.md and settings files 4. ask before applying changes 5. keep generated guidance minimal and repo-specific

Troubleshooting

Ask for the target harness and install path first, then inspect:

  • plugin install metadata
  • .claude/, .cursor/, .codex/, .gemini/, .opencode/, .codebuddy/, .joycode/, or .qwen/
  • hooks/hooks.json
  • install-state files
  • relevant command/skill files

For repo health, suggest:

npm run harness:audit -- --format text
npm run observability:ready
npm test

Output Templates

Short Recommendation

Use <skill-or-command>. It fits because <reason>.

Canonical file: <path>
Verify with: <command>
Next: <one concrete action>

Search Results

Best matches:
- <path>: <why it matters>
- <path>: <why it matters>

Recommendation: <which one to use first and why>

Install Plan Summary

Detected: <stack evidence>
Target: <harness>
Plan: <profile/modules/skills>
Dry run: <command>
Would change: <paths>
Needs approval before apply: <yes/no>

Related Surfaces

  • /project-init: stack-aware onboarding plan for a target repo
  • /harness-audit: deterministic readiness scorecard
  • /skill-health: skill quality review
  • /skill-create: generate a new skill from local git history
  • /security-scan: inspect Claude/OpenCode configuration security

Related skills

Forks & variants (1)

Ecc Guide has 1 known copy in the catalog totaling 1.4k installs. They canonicalize to this original listing.

How it compares

Pick ecc-guide over generic Claude Code docs when answers must reflect the live Everything Claude Code repository structure and install profiles.

FAQ

How do I find a skill or command for a specific task?

Search skills/, commands/, and agents/ using rg or find. Prefer skills as primary surface; use commands for maintained compatibility shims. Verify with: find skills -maxdepth 2 -name SKILL.md | sort

What install path should I use?

Use managed install: node scripts/install-plan.js --list-profiles to see profiles, then --profile <name> --target <harness> --json for a dry run. Avoid stacking plugin + manual installs unless intentional.

How do skills, commands, agents, hooks, and rules relate?

Skills are reusable workflows; commands are slash-command shims; agents are delegated subagent roles; hooks are safety gates; rules are language/harness rules. Skills are the primary interface; commands are legacy compatibility.

Is Ecc Guide safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Documentationdocsintegrationsdevops

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.