Skip to content

Commit 90ad2f3

Browse files
committed
docs: update README with latest stats and What's New section
- Add forks (5K+) and contributors (22) badges - Add Python and Java language badges - Add stats summary line (41K+ stars, 5K+ forks, 22 contributors) - Add What's New section covering v1.2.0 through v1.4.1 - Update What's Inside tree with new commands (PM2, multi-agent) - Update skills list with Django, Spring Boot, Python, configure-ecc - Update agents list with python-reviewer, database-reviewer - Update OpenCode feature parity table with latest counts - Update contribution ideas to reflect current language coverage
1 parent e4e94a7 commit 90ad2f3

File tree

1 file changed

+70
-13
lines changed

1 file changed

+70
-13
lines changed

README.md

Lines changed: 70 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,18 @@
33
# Everything Claude Code
44

55
[![Stars](https://img.shields.io/github/stars/affaan-m/everything-claude-code?style=flat)](https://github.com/affaan-m/everything-claude-code/stargazers)
6+
[![Forks](https://img.shields.io/github/forks/affaan-m/everything-claude-code?style=flat)](https://github.com/affaan-m/everything-claude-code/network/members)
7+
[![Contributors](https://img.shields.io/github/contributors/affaan-m/everything-claude-code?style=flat)](https://github.com/affaan-m/everything-claude-code/graphs/contributors)
68
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
79
![Shell](https://img.shields.io/badge/-Shell-4EAA25?logo=gnu-bash&logoColor=white)
810
![TypeScript](https://img.shields.io/badge/-TypeScript-3178C6?logo=typescript&logoColor=white)
11+
![Python](https://img.shields.io/badge/-Python-3776AB?logo=python&logoColor=white)
912
![Go](https://img.shields.io/badge/-Go-00ADD8?logo=go&logoColor=white)
13+
![Java](https://img.shields.io/badge/-Java-ED8B00?logo=openjdk&logoColor=white)
1014
![Markdown](https://img.shields.io/badge/-Markdown-000000?logo=markdown&logoColor=white)
1115

16+
> **41K+ stars** | **5K+ forks** | **22 contributors** | **6 languages supported**
17+
1218
---
1319

1420
<div align="center">
@@ -61,6 +67,38 @@ This repo is the raw code only. The guides explain everything.
6167

6268
---
6369

70+
## What's New
71+
72+
### v1.4.1 — Bug Fix (Feb 2026)
73+
74+
- **Fixed instinct import content loss**`parse_instinct_file()` was silently dropping all content after frontmatter (Action, Evidence, Examples sections) during `/instinct-import`. Fixed by community contributor @ericcai0814 ([#148](https://github.com/affaan-m/everything-claude-code/issues/148), [#161](https://github.com/affaan-m/everything-claude-code/pull/161))
75+
76+
### v1.4.0 — Multi-Language Rules, Installation Wizard & PM2 (Feb 2026)
77+
78+
- **Interactive installation wizard** — New `configure-ecc` skill provides guided setup with merge/overwrite detection
79+
- **PM2 & multi-agent orchestration** — 6 new commands (`/pm2`, `/multi-plan`, `/multi-execute`, `/multi-backend`, `/multi-frontend`, `/multi-workflow`) for managing complex multi-service workflows
80+
- **Multi-language rules architecture** — Rules restructured from flat files into `common/` + `typescript/` + `python/` + `golang/` directories. Install only the languages you need
81+
- **Chinese (zh-CN) translations** — Complete translation of all agents, commands, skills, and rules (80+ files)
82+
- **GitHub Sponsors support** — Sponsor the project via GitHub Sponsors
83+
- **Enhanced CONTRIBUTING.md** — Detailed PR templates for each contribution type
84+
85+
### v1.3.0 — OpenCode Plugin Support (Feb 2026)
86+
87+
- **Full OpenCode integration** — 12 agents, 24 commands, 16 skills with hook support via OpenCode's plugin system (20+ event types)
88+
- **3 native custom tools** — run-tests, check-coverage, security-audit
89+
- **LLM documentation**`llms.txt` for comprehensive OpenCode docs
90+
91+
### v1.2.0 — Unified Commands & Skills (Feb 2026)
92+
93+
- **Python/Django support** — Django patterns, security, TDD, and verification skills
94+
- **Java Spring Boot skills** — Patterns, security, TDD, and verification for Spring Boot
95+
- **Session management**`/sessions` command for session history
96+
- **Continuous learning v2** — Instinct-based learning with confidence scoring, import/export, evolution
97+
98+
See the full changelog in [Releases](https://github.com/affaan-m/everything-claude-code/releases).
99+
100+
---
101+
64102
## 🚀 Quick Start
65103

66104
Get up and running in under 2 minutes:
@@ -102,7 +140,7 @@ cp -r everything-claude-code/rules/golang/* ~/.claude/rules/
102140
/plugin list everything-claude-code@everything-claude-code
103141
```
104142

105-
**That's it!** You now have access to 15+ agents, 30+ skills, and 20+ commands.
143+
**That's it!** You now have access to 15+ agents, 30+ skills, and 30+ commands.
106144

107145
---
108146

@@ -161,8 +199,10 @@ everything-claude-code/
161199
| |-- e2e-runner.md # Playwright E2E testing
162200
| |-- refactor-cleaner.md # Dead code cleanup
163201
| |-- doc-updater.md # Documentation sync
164-
| |-- go-reviewer.md # Go code review (NEW)
165-
| |-- go-build-resolver.md # Go build error resolution (NEW)
202+
| |-- go-reviewer.md # Go code review
203+
| |-- go-build-resolver.md # Go build error resolution
204+
| |-- python-reviewer.md # Python code review (NEW)
205+
| |-- database-reviewer.md # Database/Supabase review (NEW)
166206
|
167207
|-- skills/ # Workflow definitions and domain knowledge
168208
| |-- coding-standards/ # Language best practices
@@ -176,8 +216,19 @@ everything-claude-code/
176216
| |-- security-review/ # Security checklist
177217
| |-- eval-harness/ # Verification loop evaluation (Longform Guide)
178218
| |-- verification-loop/ # Continuous verification (Longform Guide)
179-
| |-- golang-patterns/ # Go idioms and best practices (NEW)
180-
| |-- golang-testing/ # Go testing patterns, TDD, benchmarks (NEW)
219+
| |-- golang-patterns/ # Go idioms and best practices
220+
| |-- golang-testing/ # Go testing patterns, TDD, benchmarks
221+
| |-- django-patterns/ # Django patterns, models, views (NEW)
222+
| |-- django-security/ # Django security best practices (NEW)
223+
| |-- django-tdd/ # Django TDD workflow (NEW)
224+
| |-- django-verification/ # Django verification loops (NEW)
225+
| |-- python-patterns/ # Python idioms and best practices (NEW)
226+
| |-- python-testing/ # Python testing with pytest (NEW)
227+
| |-- springboot-patterns/ # Java Spring Boot patterns (NEW)
228+
| |-- springboot-security/ # Spring Boot security (NEW)
229+
| |-- springboot-tdd/ # Spring Boot TDD (NEW)
230+
| |-- springboot-verification/ # Spring Boot verification (NEW)
231+
| |-- configure-ecc/ # Interactive installation wizard (NEW)
181232
|
182233
|-- commands/ # Slash commands for quick execution
183234
| |-- tdd.md # /tdd - Test-driven development
@@ -197,7 +248,13 @@ everything-claude-code/
197248
| |-- instinct-status.md # /instinct-status - View learned instincts (NEW)
198249
| |-- instinct-import.md # /instinct-import - Import instincts (NEW)
199250
| |-- instinct-export.md # /instinct-export - Export instincts (NEW)
200-
| |-- evolve.md # /evolve - Cluster instincts into skills (NEW)
251+
| |-- evolve.md # /evolve - Cluster instincts into skills
252+
| |-- pm2.md # /pm2 - PM2 service lifecycle management (NEW)
253+
| |-- multi-plan.md # /multi-plan - Multi-agent task decomposition (NEW)
254+
| |-- multi-execute.md # /multi-execute - Orchestrated multi-agent workflows (NEW)
255+
| |-- multi-backend.md # /multi-backend - Backend multi-service orchestration (NEW)
256+
| |-- multi-frontend.md # /multi-frontend - Frontend multi-service orchestration (NEW)
257+
| |-- multi-workflow.md # /multi-workflow - General multi-service workflows (NEW)
201258
|
202259
|-- rules/ # Always-follow guidelines (copy to ~/.claude/rules/)
203260
| |-- README.md # Structure overview and installation guide
@@ -511,10 +568,10 @@ Please contribute! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
511568
512569
### Ideas for Contributions
513570
514-
- Language-specific skills (Python, Rust patterns) - Go now included!
515-
- Framework-specific configs (Django, Rails, Laravel)
516-
- DevOps agents (Kubernetes, Terraform, AWS)
517-
- Testing strategies (different frameworks)
571+
- Language-specific skills (Rust, C#, Swift, Kotlin) — Go, Python, Java already included
572+
- Framework-specific configs (Rails, Laravel, FastAPI, NestJS) — Django, Spring Boot already included
573+
- DevOps agents (Kubernetes, Terraform, AWS, Docker)
574+
- Testing strategies (different frameworks, visual regression)
518575
- Domain-specific knowledge (ML, data engineering, mobile)
519576
520577
---
@@ -539,9 +596,9 @@ The configuration is automatically detected from `.opencode/opencode.json`.
539596
540597
| Feature | Claude Code | OpenCode | Status |
541598
|---------|-------------|----------|--------|
542-
| Agents | ✅ 12 agents | ✅ 12 agents | **Full parity** |
543-
| Commands | ✅ 23 commands | ✅ 24 commands | **Full parity** |
544-
| Skills | ✅ 16 skills | ✅ 16 skills | **Full parity** |
599+
| Agents | ✅ 14 agents | ✅ 12 agents | **Claude Code leads** |
600+
| Commands | ✅ 30 commands | ✅ 24 commands | **Claude Code leads** |
601+
| Skills | ✅ 28 skills | ✅ 16 skills | **Claude Code leads** |
545602
| Hooks | ✅ 3 phases | ✅ 20+ events | **OpenCode has more!** |
546603
| Rules | ✅ 8 rules | ✅ 8 rules | **Full parity** |
547604
| MCP Servers | ✅ Full | ✅ Full | **Full parity** |

0 commit comments

Comments
 (0)