# everything-claude-code > > Anthropic hackathon 冠军的 Claude Code 配置精华合集,适配 OpenClaw agent 使用。 - Author: Vika Laka - Repository: ViskaWei/clawdbot - Version: 20260204230459 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-07 - Source: https://github.com/ViskaWei/clawdbot - Web: https://mule.run/skillshub/@@ViskaWei/clawdbot~everything-claude-code:20260204230459 --- # Everything Claude Code Skill > Anthropic hackathon 冠军的 Claude Code 配置精华合集,适配 OpenClaw agent 使用。 ## 📍 资源位置 完整 repo: `/Users/viskawei/clawd/resources/everything-claude-code/` ## 🎯 核心能力 ### 1. Agents (子代理模板) | Agent | 用途 | 文件位置 | |-------|------|----------| | **planner** | 功能规划、架构设计 | `agents/planner.md` | | **code-reviewer** | 代码审查、质量检查 | `agents/code-reviewer.md` | | **tdd-guide** | 测试驱动开发指导 | `agents/tdd-guide.md` | | **security-reviewer** | 安全漏洞分析 | `agents/security-reviewer.md` | | **architect** | 系统设计决策 | `agents/architect.md` | | **python-reviewer** | Python 代码审查 | `agents/python-reviewer.md` | | **e2e-runner** | Playwright E2E 测试 | `agents/e2e-runner.md` | ### 2. Skills (工作流模板) | Skill | 用途 | 目录 | |-------|------|------| | **continuous-learning** | 从会话自动提取可复用模式 | `skills/continuous-learning/` | | **continuous-learning-v2** | instinct-based 学习系统 | `skills/continuous-learning-v2/` | | **verification-loop** | 构建→类型→lint→测试→安全验证 | `skills/verification-loop/` | | **iterative-retrieval** | 子代理渐进式上下文获取 | `skills/iterative-retrieval/` | | **tdd-workflow** | TDD 方法论 | `skills/tdd-workflow/` | | **python-patterns** | Python 最佳实践 | `skills/python-patterns/` | | **python-testing** | Python 测试模式 | `skills/python-testing/` | ### 3. Commands (常用命令模板) | Command | 用途 | |---------|------| | `/plan` | 实现规划 | | `/tdd` | 测试驱动开发 | | `/code-review` | 代码审查 | | `/verify` | 验证循环 | | `/learn` | 提取模式 | ### 4. Rules (规则模板) | Rule | 用途 | |------|------| | `security.md` | 安全检查规则 | | `coding-style.md` | 代码风格规则 | | `testing.md` | 测试要求规则 | | `performance.md` | 性能考量规则 | --- ## 🔧 快速使用 ### 用 Planner 规划功能 ``` 读取 /Users/viskawei/clawd/resources/everything-claude-code/agents/planner.md 然后按照其模板为 [你的功能] 创建实现计划 ``` ### 用 Verification Loop 验证代码 ``` 读取 /Users/viskawei/clawd/resources/everything-claude-code/skills/verification-loop/SKILL.md 然后对当前项目执行验证循环 ``` ### 用 Code Reviewer 审查代码 ``` 读取 /Users/viskawei/clawd/resources/everything-claude-code/agents/code-reviewer.md 然后对 [文件/目录] 进行代码审查 ``` --- ## 💡 精华模式 ### Iterative Retrieval (子代理上下文问题解决方案) 子代理不知道需要什么上下文 → 4阶段循环: ``` DISPATCH (广泛搜索) → EVALUATE (评估相关性) → REFINE (细化条件) → LOOP (重复,最多3次) ``` ### Verification Loop (代码验证流程) ``` Build → Types → Lint → Tests → Security → Diff Review → Report ``` ### Continuous Learning v2 (自动学习) ``` 观察 Hook → observations.jsonl → 模式检测 → instincts/ → /evolve → skills/commands ``` --- ## 📚 进阶资料 - [Longform Guide](https://x.com/affaanmustafa/status/2014040193557471352) - 作者详细解读 - [GitHub Repo](https://github.com/affaan-m/everything-claude-code) - 完整源码 - 中文版 README: `resources/everything-claude-code/README.zh-CN.md`