From 2c26d2d67c9966bc814ec0b313e5a3d2e2f4a5e8 Mon Sep 17 00:00:00 2001 From: Affaan Mustafa Date: Mon, 16 Feb 2026 20:03:07 -0800 Subject: [PATCH 1/2] fix: add missing process.exit(0) to early return in post-edit-console-warn hook --- scripts/hooks/post-edit-console-warn.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/hooks/post-edit-console-warn.js b/scripts/hooks/post-edit-console-warn.js index 76f1ee2d..e4aa171b 100644 --- a/scripts/hooks/post-edit-console-warn.js +++ b/scripts/hooks/post-edit-console-warn.js @@ -28,7 +28,7 @@ process.stdin.on('end', () => { if (filePath && /\.(ts|tsx|js|jsx)$/.test(filePath)) { const content = readFile(filePath); - if (!content) { process.stdout.write(data); return; } + if (!content) { process.stdout.write(data); process.exit(0); } const lines = content.split('\n'); const matches = []; From 0b11849f1e706b66f9f7c6d95898d808e8dddeb8 Mon Sep 17 00:00:00 2001 From: Affaan Mustafa Date: Mon, 16 Feb 2026 20:04:57 -0800 Subject: [PATCH 2/2] chore: update skill count from 37 to 43, add 5 new skills to directory listing New community skills: content-hash-cache-pattern, cost-aware-llm-pipeline, regex-vs-llm-structured-text, swift-actor-persistence, swift-protocol-di-testing --- .cursor/README.md | 2 +- README.md | 9 +++++++-- README.zh-CN.md | 2 +- docs/ja-JP/README.md | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.cursor/README.md b/.cursor/README.md index 6d06ab02..79d66407 100644 --- a/.cursor/README.md +++ b/.cursor/README.md @@ -8,7 +8,7 @@ Pre-translated configurations for [Cursor IDE](https://cursor.com), part of the |----------|-------|-------------| | Rules | 27 | Coding standards, security, testing, patterns (common + TypeScript/Python/Go) | | Agents | 13 | Specialized AI agents (planner, architect, code-reviewer, tdd-guide, etc.) | -| Skills | 37 | Agent skills for backend, frontend, security, TDD, and more | +| Skills | 43 | Agent skills for backend, frontend, security, TDD, and more | | Commands | 31 | Slash commands for planning, reviewing, testing, and deployment | | MCP Config | 1 | Pre-configured MCP servers (GitHub, Supabase, Vercel, Railway, etc.) | diff --git a/README.md b/README.md index 129a83dd..6d4dedd2 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,7 @@ For manual install instructions see the README in the `rules/` folder. /plugin list everything-claude-code@everything-claude-code ``` -✨ **That's it!** You now have access to 13 agents, 37 skills, and 31 commands. +✨ **That's it!** You now have access to 13 agents, 43 skills, and 31 commands. --- @@ -246,6 +246,11 @@ everything-claude-code/ | |-- deployment-patterns/ # CI/CD, Docker, health checks, rollbacks (NEW) | |-- docker-patterns/ # Docker Compose, networking, volumes, container security (NEW) | |-- e2e-testing/ # Playwright E2E patterns and Page Object Model (NEW) +| |-- content-hash-cache-pattern/ # SHA-256 content hash caching for file processing (NEW) +| |-- cost-aware-llm-pipeline/ # LLM cost optimization, model routing, budget tracking (NEW) +| |-- regex-vs-llm-structured-text/ # Decision framework: regex vs LLM for text parsing (NEW) +| |-- swift-actor-persistence/ # Thread-safe Swift data persistence with actors (NEW) +| |-- swift-protocol-di-testing/ # Protocol-based DI for testable Swift code (NEW) | |-- commands/ # Slash commands for quick execution | |-- tdd.md # /tdd - Test-driven development @@ -803,7 +808,7 @@ The configuration is automatically detected from `.opencode/opencode.json`. |---------|-------------|----------|--------| | Agents | ✅ 13 agents | ✅ 12 agents | **Claude Code leads** | | Commands | ✅ 31 commands | ✅ 24 commands | **Claude Code leads** | -| Skills | ✅ 37 skills | ✅ 16 skills | **Claude Code leads** | +| Skills | ✅ 43 skills | ✅ 16 skills | **Claude Code leads** | | Hooks | ✅ 3 phases | ✅ 20+ events | **OpenCode has more!** | | Rules | ✅ 8 rules | ✅ 8 rules | **Full parity** | | MCP Servers | ✅ Full | ✅ Full | **Full parity** | diff --git a/README.zh-CN.md b/README.zh-CN.md index 423b3567..2dca34ee 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -95,7 +95,7 @@ cp -r everything-claude-code/rules/* ~/.claude/rules/ /plugin list everything-claude-code@everything-claude-code ``` -✨ **完成!** 你现在可以使用 13 个代理、37 个技能和 31 个命令。 +✨ **完成!** 你现在可以使用 13 个代理、43 个技能和 31 个命令。 --- diff --git a/docs/ja-JP/README.md b/docs/ja-JP/README.md index 0a67385b..f8bf4c98 100644 --- a/docs/ja-JP/README.md +++ b/docs/ja-JP/README.md @@ -140,7 +140,7 @@ cp -r everything-claude-code/rules/golang/* ~/.claude/rules/ /plugin list everything-claude-code@everything-claude-code ``` -✨ **完了です!** これで13のエージェント、37のスキル、31のコマンドにアクセスできます。 +✨ **完了です!** これで13のエージェント、43のスキル、31のコマンドにアクセスできます。 ---