Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

configure-ecc配置纠错码

Agent Skill

configure-ecc 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

75,888

周安装

3,064

GitHub Stars

170,316

下载量

24,552
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:configure-ecc(配置纠错码)
来源仓库:https://github.com/affaan-m/everything-claude-code
仓库路径:skills/configure-ecc
安装命令:
npx skills add https://github.com/affaan-m/everything-claude-code --skill configure-ecc
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/affaan-m/everything-claude-code --skill configure-ecc

简介

Everything Claude Code 的交互式安装程序,具有指导技能和规则选择、验证和可选优化。

  • 克隆最新的 ECC 存储库并指导用户选择安装级别(用户级别、项目级别或两者)和目标目录
  • 呈现 8 个类别的 45+ 技能,并可多选确认;默认为新用户提供核心技能(TDD、验证、安全、前端模式、研究、跨职能人择技能)
  • 安装规则集(通用、TypeScript/JavaScript、Python、Go),如果在没有通用规则的情况下选择特定于语言的规则,则会发出警告
  • 执行自动安装后验证:检查文件是否存在,扫描损坏的路径引用,验证跨技能依赖关系,并报告问题并提供建议的修复
  • 提供可选的优化以删除不相关的部分、调整路径以匹配技术堆栈以及自定义覆盖目标和工具配置

SKILL.md

Configure Everything Claude Code (ECC)

An interactive, step-by-step installation wizard for the Everything Claude Code project. Uses AskUserQuestion to guide users through selective installation of skills and rules, then verifies correctness and offers optimization.

When to Activate

  • User says "configure ecc", "install ecc", "setup everything claude 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 Claude Code before activation. Two ways to bootstrap:

  1. Via Plugin: /plugin install everything-claude-code — the plugin loads this skill automatically
  2. Manual: Copy only this skill to ~/.claude/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-claude-code
git clone https://github.com/affaan-m/everything-claude-code.git /tmp/everything-claude-code

Set ECC_ROOT=/tmp/everything-claude-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 (~/.claude/)" — "Applies to all your Claude Code projects"
  - "Project-level (.claude/)" — "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=~/.claude
  • Project-level: TARGET=.claude (relative to current project root)
  • Both: TARGET_USER=~/.claude, TARGET_PROJECT=.claude

Create the target directories if they don't exist:

mkdir -p $TARGET/skills $TARGET/rules

Step 2: Select & Install Skills

2a: Choose Scope (Core vs Niche)

Default to Core (recommended for new users) — copy .agents/skills/* plus skills/search-first/ for research-first workflows. This bundle covers engineering, evals, verification, security, strategic compaction, frontend design, and Anthropic cross-functional skills (article-writing, content-engine, market-research, frontend-slides).

Use AskUserQuestion (single select):

Question: "Install core skills only, or include niche/framework packs?"
Options:
  - "Core only (recommended)" — "tdd, e2e, evals, verification, research-first, security, frontend patterns, compacting, cross-functional Anthropic skills"
  - "Core + selected niche" — "Add framework/domain-specific skills after core"
  - "Niche only" — "Skip core, install specific framework/domain skills"
Default: Core only

If the user chooses niche or core + niche, continue to category selection below and only include those niche skills they pick.

2b: Choose Skill Categories

There are 7 selectable category groups below. The detailed confirmation lists that follow cover 45 skills across 8 categories, plus 1 standalone template. Use AskUserQuestion with multiSelect: true:

Question: "Which skill categories do you want to install?"
Options:
  - "Framework & Language" — "Django, Laravel, Spring Boot, Go, Python, Java, Frontend, Backend patterns"
  - "Database" — "PostgreSQL, ClickHouse, JPA/Hibernate patterns"
  - "Workflow & Quality" — "TDD, verification, learning, security review, compaction"
  - "Research & APIs" — "Deep research, Exa search, Claude API patterns"
  - "Social & Content Distribution" — "X/Twitter API, crossposting alongside content-engine"
  - "Media Generation" — "fal.ai image/video/audio alongside VideoDB"
  - "Orchestration" — "dmux multi-agent workflows"
  - "All skills" — "Install every available skill"

2c: Confirm Individual Skills

For each selected category, print the full list of skills below and ask the user to confirm or deselect specific ones. If the list exceeds 4 items, print the list as text and use AskUserQuestion with an "Install all listed" option plus "Other" for the user to paste specific names.

Category: Framework & Language (21 skills)

SkillDescription
backend-patternsBackend architecture, API design, server-side best practices for Node.js/Express/Next.js
coding-standardsUniversal coding standards for TypeScript, JavaScript, React, Node.js
django-patternsDjango architecture, REST API with DRF, ORM, caching, signals, middleware
django-securityDjango security: auth, CSRF, SQL injection, XSS prevention
django-tddDjango testing with pytest-django, factory_boy, mocking, coverage
django-verificationDjango verification loop: migrations, linting, tests, security scans
laravel-patternsLaravel architecture patterns: routing, controllers, Eloquent, queues, caching
laravel-securityLaravel security: auth, policies, CSRF, mass assignment, rate limiting
laravel-tddLaravel testing with PHPUnit and Pest, factories, fakes, coverage
laravel-verificationLaravel verification: linting, static analysis, tests, security scans
frontend-patternsReact, Next.js, state management, performance, UI patterns
frontend-slidesZero-dependency HTML presentations, style previews, and PPTX-to-web conversion
golang-patternsIdiomatic Go patterns, conventions for robust Go applications
golang-testingGo testing: table-driven tests, subtests, benchmarks, fuzzing
java-coding-standardsJava coding standards for Spring Boot: naming, immutability, Optional, streams
python-patternsPythonic idioms, PEP 8, type hints, best practices
python-testingPython testing with pytest, TDD, fixtures, mocking, parametrization
springboot-patternsSpring Boot architecture, REST API, layered services, caching, async
springboot-securitySpring Security: authn/authz, validation, CSRF, secrets, rate limiting
springboot-tddSpring Boot TDD with JUnit 5, Mockito, MockMvc, Testcontainers
springboot-verificationSpring Boot verification: build, static analysis, tests, security scans

Category: Database (3 skills)

SkillDescription
clickhouse-ioClickHouse patterns, query optimization, analytics, data engineering
jpa-patternsJPA/Hibernate entity design, relationships, query optimization, transactions
postgres-patternsPostgreSQL query optimization, schema design, indexing, security

Category: Workflow & Quality (8 skills)

SkillDescription
continuous-learningLegacy v1 Stop-hook session pattern extraction; prefer continuous-learning-v2 for new installs
continuous-learning-v2Instinct-based learning with confidence scoring, evolves into skills, agents, and optional legacy command shims
eval-harnessFormal evaluation framework for eval-driven development (EDD)
iterative-retrievalProgressive context refinement for subagent context problem
security-reviewSecurity checklist: auth, input, secrets, API, payment features
strategic-compactSuggests manual context compaction at logical intervals
tdd-workflowEnforces TDD with 80%+ coverage: unit, integration, E2E
verification-loopVerification and quality loop patterns

Category: Business & Content (5 skills)

SkillDescription
article-writingLong-form writing in a supplied voice using notes, examples, or source docs
content-engineMulti-platform social content, scripts, and repurposing workflows
market-researchSource-attributed market, competitor, fund, and technology research
investor-materialsPitch decks, one-pagers, investor memos, and financial models
investor-outreachPersonalized investor cold emails, warm intros, and follow-ups

Category: Research & APIs (2 skills)

SkillDescription
deep-researchMulti-source deep research using firecrawl and exa MCPs with cited reports
exa-searchNeural search via Exa MCP for web, code, company, and people research

claude-api is an Anthropic canonical skill. Install it from anthropics/skills when you want the official Claude API workflow instead of an ECC-bundled copy.

Category: Social & Content Distribution (2 skills)

SkillDescription
x-apiX/Twitter API integration for posting, threads, search, and analytics
crosspostMulti-platform content distribution with platform-native adaptation

Category: Media Generation (2 skills)

SkillDescription
fal-ai-mediaUnified AI media generation (image, video, audio) via fal.ai MCP
video-editingAI-assisted video editing for cutting, structuring, and augmenting real footage

Category: Orchestration (1 skill)

SkillDescription
dmux-workflowsMulti-agent orchestration using dmux for parallel agent sessions

Standalone

SkillDescription
docs/examples/project-guidelines-template.mdTemplate for creating project-specific skills

2d: Execute Installation

For each selected skill, copy the entire skill directory from the correct source root:

# Core skills live under .agents/skills/
cp -R "$ECC_ROOT/.agents/skills/<skill-name>" "$TARGET/skills/"

# Niche skills live under skills/
cp -R "$ECC_ROOT/skills/<skill-name>" "$TARGET/skills/"

When iterating over globbed source directories, never pass a trailing-slash source directly to cp. Use the directory path as the destination name explicitly:

cp -R "${src%/}" "$TARGET/skills/$(basename "${src%/}")"

Note: continuous-learning and continuous-learning-v2 have extra files (config.json, hooks, scripts) — ensure the entire directory is copied, not just SKILL.md.


Step 3: Select & Install Rules

Use AskUserQuestion with multiSelect: true:

Question: "Which rule sets do you want to install?"
Options:
  - "Common rules (Recommended)" — "Language-agnostic principles: coding style, git workflow, testing, security, etc. (8 files)"
  - "TypeScript/JavaScript" — "TS/JS patterns, hooks, testing with Playwright (5 files)"
  - "Python" — "Python patterns, pytest, black/ruff formatting (5 files)"
  - "Go" — "Go patterns, table-driven tests, gofmt/staticcheck (5 files)"

Execute installation:

# Common rules (flat copy into rules/)
cp -r $ECC_ROOT/rules/common/* $TARGET/rules/

# Language-specific rules (flat copy into rules/)
cp -r $ECC_ROOT/rules/typescript/* $TARGET/rules/   # if selected
cp -r $ECC_ROOT/rules/python/* $TARGET/rules/        # if selected
cp -r $ECC_ROOT/rules/golang/* $TARGET/rules/        # if selected

Important: If the user selects any language-specific rules but NOT common rules, warn them:

"Language-specific rules extend the common rules. Installing without common rules may result in incomplete coverage. Install common rules too?"

Step 4: Post-Installation Verification

After installation, perform these automated checks:

4a: Verify File Existence

List all installed files and confirm they exist at the target location:

ls -la $TARGET/skills/
ls -la $TARGET/rules/

4b: Check Path References

Scan all installed .md files for path references:

grep -rn "~/.claude/" $TARGET/skills/ $TARGET/rules/
grep -rn "../common/" $TARGET/rules/
grep -rn "skills/" $TARGET/skills/

For project-level installs, flag any references to ~/.claude/ paths:

  • If a skill references ~/.claude/settings.json — this is usually fine (settings are always user-level)
  • If a skill references ~/.claude/skills/ or ~/.claude/rules/ — this may be broken if installed only at project level
  • If a skill references another skill by name — check that the referenced skill was also installed

4c: Check Cross-References Between Skills

Some skills reference others. Verify these dependencies:

  • django-tdd may reference django-patterns
  • laravel-tdd may reference laravel-patterns
  • springboot-tdd may reference springboot-patterns
  • continuous-learning-v2 references ~/.claude/homunculus/ directory
  • python-testing may reference python-patterns
  • golang-testing may reference golang-patterns
  • crosspost references content-engine and x-api
  • deep-research references exa-search (complementary MCP tools)
  • fal-ai-media references videodb (complementary media skill)
  • x-api references content-engine and crosspost
  • Language-specific rules reference common/ counterparts

4d: Report Issues

For each issue found, report:

  1. File: The file containing the problematic reference
  2. Line: The line number
  3. Issue: What's wrong (e.g., "references ~/.claude/skills/python-patterns but python-patterns was not installed")
  4. Suggested fix: What to do (e.g., "install python-patterns skill" or "update path to.claude/skills/")

Step 5: Optimize Installed Files (Optional)

Use AskUserQuestion:

Question: "Would you like to optimize the installed files for your project?"
Options:
  - "Optimize skills" — "Remove irrelevant sections, adjust paths, tailor to your tech stack"
  - "Optimize rules" — "Adjust coverage targets, add project-specific patterns, customize tool configs"
  - "Optimize both" — "Full optimization of all installed files"
  - "Skip" — "Keep everything as-is"

If optimizing skills:

  1. Read each installed SKILL.md
  2. Ask the user what their project's tech stack is (if not already known)
  3. For each skill, suggest removals of irrelevant sections
  4. Edit the SKILL.md files in-place at the installation target (NOT the source repo)
  5. Fix any path issues found in Step 4

If optimizing rules:

  1. Read each installed rule.md file
  2. Ask the user about their preferences:

- Test coverage target (default 80%) - Preferred formatting tools - Git workflow conventions - Security requirements

  1. Edit the rule files in-place at the installation target

Critical: Only modify files in the installation target ($TARGET/), NEVER modify files in the source ECC repository ($ECC_ROOT/).


Step 6: Installation Summary

Clean up the cloned repository from /tmp:

rm -rf /tmp/everything-claude-code

Then print a summary report:

## ECC Installation Complete

### Installation Target
- Level: [user-level / project-level / both]
- Path: [target path]

### Skills Installed ([count])
- skill-1, skill-2, skill-3, ...

### Rules Installed ([count])
- common (8 files)
- typescript (5 files)
- ...

### Verification Results
- [count] issues found, [count] fixed
- [list any remaining issues]

### Optimizations Applied
- [list changes made, or "None"]

Troubleshooting

"Skills not being picked up by Claude Code"

  • Verify the skill directory contains a SKILL.md file (not just loose.md files)
  • For user-level: check ~/.claude/skills/<skill-name>/SKILL.md exists
  • For project-level: check .claude/skills/<skill-name>/SKILL.md exists

"Rules not working"

  • Rules are flat files, not in subdirectories: $TARGET/rules/coding-style.md (correct) vs $TARGET/rules/common/coding-style.md (incorrect for flat install)
  • Restart Claude Code after installing rules

"Path reference errors after project-level install"

  • Some skills assume ~/.claude/ paths. Run Step 4 verification to find and fix these.
  • For continuous-learning-v2, the ~/.claude/homunculus/ directory is always user-level — this is expected and not an error.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.35%
按下载量换算8,679

Claude

27.08%
按下载量换算6,649

Cursor

19.83%
按下载量换算4,869

Gemini CLI

8.74%
按下载量换算2,146

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills