From fec871e1cbec67918dc7b9656a4ceeffc1b550c2 Mon Sep 17 00:00:00 2001 From: Affaan Mustafa Date: Thu, 19 Mar 2026 22:47:46 -0700 Subject: [PATCH] fix: update catalog counts and resolve lint error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update agent count 26→27 in README.md (quick-start + comparison table) and AGENTS.md (summary + project structure) - Update skill count 108→109 in README.md (quick-start + comparison table) and AGENTS.md (summary) - Rename unused variable provenance → _provenance in tests/lib/skill-dashboard.test.js --- AGENTS.md | 4 ++-- README.md | 6 +++--- tests/lib/skill-dashboard.test.js | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index c417b340..b426ba26 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,6 +1,6 @@ # Everything Claude Code (ECC) — Agent Instructions -This is a **production-ready AI coding plugin** providing 26 specialized agents, 108 skills, 57 commands, and automated hook workflows for software development. +This is a **production-ready AI coding plugin** providing 27 specialized agents, 109 skills, 57 commands, and automated hook workflows for software development. ## Core Principles @@ -138,7 +138,7 @@ Troubleshoot failures: check test isolation → verify mocks → fix implementat ## Project Structure ``` -agents/ — 26 specialized subagents +agents/ — 27 specialized subagents skills/ — 108 workflow skills and domain knowledge commands/ — 57 slash commands hooks/ — Trigger-based automations diff --git a/README.md b/README.md index 818b7f1f..12457f4c 100644 --- a/README.md +++ b/README.md @@ -191,7 +191,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 26 agents, 108 skills, and 57 commands. +✨ **That's it!** You now have access to 27 agents, 109 skills, and 57 commands. --- @@ -1047,9 +1047,9 @@ The configuration is automatically detected from `.opencode/opencode.json`. | Feature | Claude Code | OpenCode | Status | |---------|-------------|----------|--------| -| Agents | ✅ 26 agents | ✅ 12 agents | **Claude Code leads** | +| Agents | ✅ 27 agents | ✅ 12 agents | **Claude Code leads** | | Commands | ✅ 57 commands | ✅ 31 commands | **Claude Code leads** | -| Skills | ✅ 108 skills | ✅ 37 skills | **Claude Code leads** | +| Skills | ✅ 109 skills | ✅ 37 skills | **Claude Code leads** | | Hooks | ✅ 8 event types | ✅ 11 events | **OpenCode has more!** | | Rules | ✅ 29 rules | ✅ 13 instructions | **Claude Code leads** | | MCP Servers | ✅ 14 servers | ✅ Full | **Full parity** | diff --git a/tests/lib/skill-dashboard.test.js b/tests/lib/skill-dashboard.test.js index b93473ef..0154f5a8 100644 --- a/tests/lib/skill-dashboard.test.js +++ b/tests/lib/skill-dashboard.test.js @@ -12,7 +12,7 @@ const { spawnSync } = require('child_process'); const dashboard = require('../../scripts/lib/skill-evolution/dashboard'); const versioning = require('../../scripts/lib/skill-evolution/versioning'); -const provenance = require('../../scripts/lib/skill-evolution/provenance'); +const _provenance = require('../../scripts/lib/skill-evolution/provenance'); const HEALTH_SCRIPT = path.join(__dirname, '..', '..', 'scripts', 'skills-health.js');