vault: add ECC autonomous loops, dmux, Ralphinho notes and update guide to v1.10.0

New notes:
- Autonomous Loops 自主循环模式 (6 patterns with examples)
- dmux 多Agent并行编排 (5 workflow patterns + orchestrate-worktrees)
- Ralphinho RFC-DAG 编排模式 (DAG decomposition + merge queue)

Updated:
- Everything Claude Code 完整指南: v1.8.0 -> v1.10.0 (608 files, legacy commands mapping)
This commit is contained in:
Yaojia Wang
2026-04-06 16:08:39 +02:00
parent fc28e6ebad
commit e4cee2f21d
4 changed files with 993 additions and 11 deletions

View File

@@ -7,18 +7,20 @@ source: "https://github.com/affaan-m/everything-claude-code"
# Everything Claude Code 完整指南
生产级 Claude Code 插件系统,包含 108 skills、25 agents、57 commands、hooks 和 rules。v1.8.0,经过 10+ 个月的高强度日常使用演化。方法论与最佳实践见 [[Everything Claude Code 方法论与最佳实践]],按场景速查见 [[Everything Claude Code 用法速查]]。
生产级 Claude Code 插件系统。v1.10.0 (2026-04-06 更新),包含 215 skills、112 agents、82 commands、hooks 和 rules (608 files total)。方法论与最佳实践见 [[Everything Claude Code 方法论与最佳实践]],按场景速查见 [[Everything Claude Code 用法速查]]。
自主循环和并行编排详见:[[Autonomous Loops 自主循环模式]]、[[dmux 多Agent并行编排]]、[[Ralphinho RFC-DAG 编排模式]]
## 项目架构
```
everything-claude-code/
├── agents/ (16个) - 专用子代理
├── skills/ (65个) - 工作流定义和领域知识
├── commands/ (40个) - slash 命令
everything-claude-code/ (v1.10.0, 608 files)
├── agents/ (112个) - 专用子代理 (.agents/ + agents/)
├── skills/ (215个) - 工作流定义和领域知识
├── commands/ (82个) - slash 命令
├── hooks/ - 基于事件的自动化
├── rules/ - 始终遵循的规则(按语言分层
├── scripts/ - 跨平台 Node.js 工具脚本
├── rules/ - 始终遵循的规则(15种语言 + common
├── scripts/ (93个) - 跨平台 Node.js 工具脚本
├── mcp-configs/- MCP 服务器配置模板
└── contexts/ - 动态注入的上下文文件
```
@@ -30,12 +32,50 @@ everything-claude-code/
/plugin marketplace add affaan-m/everything-claude-code
/plugin install everything-claude-code@everything-claude-code
# Rules 手动安装(插件无法分发规则)
git clone https://github.com/affaan-m/everything-claude-code.git
cd everything-claude-code
./install.sh python typescript # 按需选语言
# Rules 安装 (v1.10.0 新方式:插件内置 install.sh)
# 插件缓存位于 ~/.claude/plugins/cache/everything-claude-code/ecc/{version}/
cd ~/.claude/plugins/cache/everything-claude-code/ecc/1.10.0
bash install.sh --profile full # 安装全部 (608 files)
bash install.sh python typescript golang # 按需选语言
```
## v1.10.0 主要变更
### Legacy Commands -> Skills 迁移
12 个 command 变为 legacy shim推荐直接使用对应 skill
| Legacy Command | 替代 Skill |
|---|---|
| `/ecc:orchestrate` | `dmux-workflows` / `autonomous-agent-harness` |
| `/ecc:verify` | `verification-loop` |
| `/ecc:tdd` | `tdd-workflow` |
| `/ecc:eval` | `eval-harness` |
| `/ecc:e2e` | `e2e-testing` |
| `/ecc:docs` | `documentation-lookup` |
| `/ecc:claw` | `nanoclaw-repl` |
| `/ecc:agent-sort` | `agent-sort` |
| `/ecc:context-budget` | `context-budget` |
| `/ecc:devfleet` | `claude-devfleet` |
| `/ecc:prompt-optimize` | `prompt-optimizer` |
| `/ecc:rules-distill` | `rules-distill` |
Legacy shim 仍然可用(向后兼容),只是内部转发到对应 skill。
### 模块化安装
新增 manifest-based 安装系统20 个模块:
- rules-core, agents-core, commands-core, hooks-runtime
- platform-configs, framework-language, database
- workflow-quality, security, research-apis
- business-content, operator-workflows, social-distribution
- media-generation, orchestration, swift-apple
- agentic-patterns, devops-infra, supply-chain-domain, document-processing
### 新增语言支持
Rules 新增java, kotlin, dart, csharp, cpp, rust, perl, php, web, zh (中文)
---
## 全部 65 Skills
@@ -256,6 +296,9 @@ ECC_DISABLED_HOOKS="pre:bash:tmux-reminder,post:edit:typecheck"
### Resources
- [[Everything Claude Code 方法论与最佳实践]]
- [[Everything Claude Code 用法速查]]
- [[Autonomous Loops 自主循环模式]]
- [[dmux 多Agent并行编排]]
- [[Ralphinho RFC-DAG 编排模式]]
### Zettelkasten
- [[Everything Claude Code 最佳实践]]