claude-code-orchestrator-kit 1.2.5 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/commands/speckit.implement.md +6 -0
- package/README.md +49 -7
- package/package.json +1 -1
|
@@ -55,6 +55,7 @@ You **MUST** consider the user input before proceeding (if not empty).
|
|
|
55
55
|
- Automatically proceed to step 3
|
|
56
56
|
|
|
57
57
|
3. Load and analyze the implementation context:
|
|
58
|
+
- **REQUIRED**: Read `.specify/memory/constitution.md` for project principles, security requirements, and quality gates
|
|
58
59
|
- **REQUIRED**: Read tasks.md for the complete task list and execution plan
|
|
59
60
|
- **REQUIRED**: Read plan.md for tech stack, architecture, and file structure
|
|
60
61
|
- **IF EXISTS**: Read data-model.md for entities and relationships
|
|
@@ -156,6 +157,11 @@ You **MUST** consider the user input before proceeding (if not empty).
|
|
|
156
157
|
- Use WebSearch + Context7 to find and evaluate libraries
|
|
157
158
|
- If suitable library found: install and configure instead of implementing from scratch
|
|
158
159
|
- Check: weekly downloads >1000, recent commits, TypeScript support, no critical vulnerabilities
|
|
160
|
+
3.6. FETCH LIBRARY DOCS (MANDATORY): Before writing code that uses ANY library:
|
|
161
|
+
- Call `mcp__context7__resolve-library-id` to get library ID
|
|
162
|
+
- Call `mcp__context7__get-library-docs` with relevant topic (e.g., "hooks", "routing", "auth")
|
|
163
|
+
- Use fetched docs to ensure correct API usage and avoid deprecated patterns
|
|
164
|
+
- This applies to React, Next.js, Supabase, Zod, tRPC, and ALL other libraries
|
|
159
165
|
4. EXECUTE:
|
|
160
166
|
- Direct: Use Edit/Write tools for trivial tasks only
|
|
161
167
|
- Delegated: Launch Task tool with complete context (code snippets, file paths, patterns, validation criteria)
|
package/README.md
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
Complete toolkit with **33+ AI agents**, **quality gates**, **health monitoring**, and **workflow automation** for building robust, production-ready projects with Claude Code.
|
|
6
6
|
|
|
7
7
|
[](LICENSE)
|
|
8
|
-
[](#mcp-configurations)
|
|
9
|
+
[](#agents-ecosystem)
|
|
10
|
+
[](#slash-commands)
|
|
11
11
|
[](https://github.com/maslennikov-ig)
|
|
12
12
|
|
|
13
13
|
---
|
|
@@ -38,8 +38,8 @@ Complete toolkit with **33+ AI agents**, **quality gates**, **health monitoring*
|
|
|
38
38
|
|
|
39
39
|
**Claude Code Orchestrator Kit** is a comprehensive automation framework designed to supercharge your development workflow with Claude Code. It provides:
|
|
40
40
|
|
|
41
|
-
- **🤖
|
|
42
|
-
- **⚡ MCP Server Management** —
|
|
41
|
+
- **🤖 36+ Specialized AI Agents** — Orchestrators and workers for bugs, security, dependencies, dead code, reuse, and more
|
|
42
|
+
- **⚡ MCP Server Management** — 7 pre-configured MCP setups for different use cases (600-5000 tokens)
|
|
43
43
|
- **🔧 20+ Slash Commands** — Health checks, SpecKit, worktree management, releases
|
|
44
44
|
- **📊 Quality Gates** — Automated type-checking, builds, tests, coverage, security audits
|
|
45
45
|
- **🎯 Skills Library** — 15+ reusable utilities for validation, reporting, and automation
|
|
@@ -620,6 +620,23 @@ Dead code detection and removal.
|
|
|
620
620
|
|
|
621
621
|
---
|
|
622
622
|
|
|
623
|
+
#### `/health-reuse`
|
|
624
|
+
Code duplication detection and consolidation.
|
|
625
|
+
|
|
626
|
+
**Features:**
|
|
627
|
+
- Detects duplicated types, interfaces, and schemas
|
|
628
|
+
- Identifies repeated logic patterns
|
|
629
|
+
- Consolidates duplicates into Single Source of Truth (SSOT)
|
|
630
|
+
- Refactors consuming code to use shared definitions
|
|
631
|
+
- Prevents technical debt accumulation
|
|
632
|
+
|
|
633
|
+
**Usage:**
|
|
634
|
+
```
|
|
635
|
+
/health-reuse
|
|
636
|
+
```
|
|
637
|
+
|
|
638
|
+
---
|
|
639
|
+
|
|
623
640
|
#### `/health-metrics`
|
|
624
641
|
Monthly ecosystem health reports.
|
|
625
642
|
|
|
@@ -776,6 +793,18 @@ Dead code cleanup workflow.
|
|
|
776
793
|
|
|
777
794
|
---
|
|
778
795
|
|
|
796
|
+
#### `reuse-orchestrator`
|
|
797
|
+
Code duplication elimination workflow.
|
|
798
|
+
|
|
799
|
+
**Phases:**
|
|
800
|
+
1. **Detection**: `reuse-hunter` scans for duplicated types/logic
|
|
801
|
+
2. **Analysis**: Group duplicates and identify best SSOT location
|
|
802
|
+
3. **Consolidation**: `reuse-fixer` merges duplicates into shared files
|
|
803
|
+
4. **Refactoring**: Updates all references to point to SSOT
|
|
804
|
+
5. **Validation**: Ensures no breaking changes via quality gates
|
|
805
|
+
|
|
806
|
+
---
|
|
807
|
+
|
|
779
808
|
### Worker Agents
|
|
780
809
|
|
|
781
810
|
#### Development
|
|
@@ -1070,6 +1099,19 @@ echo ".env.local" >> .gitignore
|
|
|
1070
1099
|
|
|
1071
1100
|
---
|
|
1072
1101
|
|
|
1102
|
+
### 6. Adopt Library-First Approach
|
|
1103
|
+
|
|
1104
|
+
Before writing new custom code (>20 lines), always search for existing solutions:
|
|
1105
|
+
|
|
1106
|
+
1. **Search**: Check npm/PyPI for libraries with >1k weekly downloads
|
|
1107
|
+
2. **Evaluate**: Check maintenance status, types support, and bundle size
|
|
1108
|
+
3. **Adopt**: Use library if it covers >70% of functionality
|
|
1109
|
+
4. **Build**: Only write custom code for unique business logic or when no good library exists
|
|
1110
|
+
|
|
1111
|
+
**Why?** Reduces maintenance burden, leverages community testing, and speeds up development.
|
|
1112
|
+
|
|
1113
|
+
---
|
|
1114
|
+
|
|
1073
1115
|
## 🔧 Troubleshooting
|
|
1074
1116
|
|
|
1075
1117
|
### MCP Server Not Working
|
|
@@ -1248,8 +1290,8 @@ Special thanks to the open-source community and all contributors!
|
|
|
1248
1290
|
|
|
1249
1291
|
## 📊 Project Stats
|
|
1250
1292
|
|
|
1251
|
-
- **
|
|
1252
|
-
- **
|
|
1293
|
+
- **36+** AI Agents (Orchestrators + Workers)
|
|
1294
|
+
- **20+** Slash Commands
|
|
1253
1295
|
- **18+** Reusable Skills
|
|
1254
1296
|
- **7** MCP Configurations (including Serena LSP)
|
|
1255
1297
|
- **3** Quality Gate Scripts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-orchestrator-kit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Complete automation and orchestration system for Claude Code with 33+ AI agents, quality gates, health monitoring, and workflow automation",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|