Guides users through ECC's agents, skills, commands, hooks, rules, and installation profiles by reading live repository content.
How this skill is triggered — by the user, by Claude, or both
Slash command
/everything-claude-code:ecc-guideThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
当用户需要帮助理解、导航、安装或选择 Everything Claude Code 的各个部分时,使用此技能。
当用户需要帮助理解、导航、安装或选择 Everything Claude Code 的各个部分时,使用此技能。
当用户出现以下情况时使用此技能:
从当前文件回答,而非记忆。ECC 变化很快,因此硬编码的目录计数、功能列表和安装说明会过时。
当 ECC 仓库可用时,在给出具体答案之前检查相关文件:
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
使用回答用户问题所需的最少读取量。
README.md:安装路径、卸载/重置指南、公开定位、常见问题AGENTS.md:贡献者指南和项目结构agent.yaml:导出的 gitagent 接口和命令列表commands/:维护的斜杠命令兼容层skills/*/SKILL.md:可复用工作流和领域手册agents/*.md:委派的子智能体角色提示rules/:语言和工具规则hooks/README.md、hooks/hooks.json、scripts/hooks/:钩子行为和安全门控manifests/install-*.json:选择性安装模块、组件、配置文件和目标支持docs/:工具指南、架构说明、翻译文档、发布文档先给出答案,然后给出下一步操作。大多数用户不需要完整的目录转储。
良好的首次响应结构:
避免:
给出简短菜单:
指向 README.md 进行安装/重置,指向 /project-init 进行项目特定入门。
对于"我应该用什么来做 X?":
skills/、commands/ 和 agents/。有用的搜索:
rg -n "<query>" skills commands agents docs
find skills -maxdepth 2 -name SKILL.md | sort
使用托管安装路径:
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
对于特定技能安装:
node scripts/install-plan.js --skills <skill-id> --target claude --json
node scripts/install-apply.js --skills <skill-id> --target claude --dry-run
警告用户不要叠加插件安装和完整手动/配置文件安装,除非他们有意需要重复接口。
当用户想要为目标仓库配置 ECC 时,使用 /project-init。预期序列是:
CLAUDE.md 和设置文件首先询问目标工具和安装路径,然后检查:
.claude/、.cursor/、.codex/、.gemini/、.opencode/、.codebuddy/、.joycode/ 或 .qwen/hooks/hooks.json对于仓库健康检查,建议:
npm run harness:audit -- --format text
npm run observability:ready
npm test
使用 <skill-or-command>。它适合因为 <reason>。
规范文件:<path>
验证命令:<command>
下一步:<one concrete action>
最佳匹配:
- <path>: <why it matters>
- <path>: <why it matters>
推荐:<which one to use first and why>
检测到:<stack evidence>
目标:<harness>
计划:<profile/modules/skills>
试运行:<command>
将更改:<paths>
应用前需要批准:<yes/no>
/project-init:针对目标仓库的技术栈感知入门计划/harness-audit:确定性就绪评分卡/skill-health:技能质量审查/skill-create:从本地 git 历史生成新技能/security-scan:检查 Claude/OpenCode 配置安全性npx claudepluginhub aaione/everything-claude-code-zhGuides users through ECC's agents, skills, commands, hooks, rules, install profiles, and project onboarding by inspecting the live repository surface.
Interactive installer for Everything Claude Code — guides users through selecting and installing skills and rules to user-level or project-level directories, verifies paths, and optionally optimizes installed files.
Creates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.