claude-code-orchestrator-kit 1.2.3 → 1.2.4
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.
|
@@ -73,33 +73,69 @@ When invoked, you must follow these steps systematically:
|
|
|
73
73
|
pnpm outdated --json || npm outdated --json
|
|
74
74
|
```
|
|
75
75
|
|
|
76
|
-
6. **CRITICAL:
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
**
|
|
76
|
+
6. **CRITICAL: Verify Real Versions from npm Registry (MANDATORY)**
|
|
77
|
+
|
|
78
|
+
⚠️ **NEVER trust `outdated` command output blindly!** It may show:
|
|
79
|
+
- Pre-release versions as "latest"
|
|
80
|
+
- Versions that don't exist yet
|
|
81
|
+
- Incorrect version numbers
|
|
82
|
+
|
|
83
|
+
**For EVERY package you report as outdated, you MUST:**
|
|
84
|
+
|
|
85
|
+
**Step 1: Get dist-tags to check what "latest" really is**:
|
|
86
|
+
```bash
|
|
87
|
+
npm view package-name dist-tags --json
|
|
88
|
+
```
|
|
89
|
+
This shows actual tags like `{"latest": "18.3.1", "next": "19.0.0-rc.1", "canary": "..."}`.
|
|
90
|
+
|
|
91
|
+
**Step 2: Verify the version exists**:
|
|
92
|
+
```bash
|
|
93
|
+
npm view package-name@VERSION version
|
|
94
|
+
```
|
|
95
|
+
If version doesn't exist, npm will return an error.
|
|
96
|
+
|
|
97
|
+
**Unstable version patterns to EXCLUDE from recommendations**:
|
|
98
|
+
- `alpha`, `beta`, `rc`, `canary`, `next`, `experimental`, `dev`, `preview`, `nightly`
|
|
99
|
+
- Any version with `-` followed by prerelease identifier
|
|
100
|
+
|
|
101
|
+
**Step 3: Find latest stable if "latest" tag points to unstable**:
|
|
92
102
|
```bash
|
|
93
|
-
# Get all available versions and find latest stable
|
|
94
103
|
npm view package-name versions --json
|
|
95
104
|
```
|
|
96
|
-
Then select the
|
|
105
|
+
Then select the HIGHEST version WITHOUT prerelease suffix (no `-` after version number).
|
|
106
|
+
|
|
107
|
+
**Example workflow**:
|
|
108
|
+
```bash
|
|
109
|
+
# pnpm outdated shows: react latest = 19.0.0-rc.1
|
|
110
|
+
|
|
111
|
+
# Step 1: Check dist-tags
|
|
112
|
+
npm view react dist-tags --json
|
|
113
|
+
# → {"latest": "18.3.1", "next": "19.0.0-rc.1", "canary": "..."}
|
|
114
|
+
# ✅ Actual latest is 18.3.1, NOT 19.0.0-rc.1!
|
|
115
|
+
|
|
116
|
+
# Step 2: Verify version exists
|
|
117
|
+
npm view react@18.3.1 version
|
|
118
|
+
# → 18.3.1 ✅
|
|
119
|
+
|
|
120
|
+
# Report 18.3.1 as target version
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
**Another example (when dist-tags shows unstable as latest)**:
|
|
124
|
+
```bash
|
|
125
|
+
# npm view some-package dist-tags --json
|
|
126
|
+
# → {"latest": "5.0.0-beta.2", "stable": "4.2.1"}
|
|
127
|
+
|
|
128
|
+
# Step 3: Find latest stable manually
|
|
129
|
+
npm view some-package versions --json
|
|
130
|
+
# → [..., "4.2.0", "4.2.1", "5.0.0-alpha.1", "5.0.0-beta.1", "5.0.0-beta.2"]
|
|
131
|
+
|
|
132
|
+
# Report 4.2.1 as target (highest without prerelease suffix)
|
|
133
|
+
```
|
|
97
134
|
|
|
98
|
-
**
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
- Report `18.3.1` as target version, NOT `19.0.0-rc.1`
|
|
135
|
+
**VALIDATION RULE**: Do NOT include any package in report unless you have:
|
|
136
|
+
1. ✅ Verified target version exists via `npm view package@version`
|
|
137
|
+
2. ✅ Confirmed it's a stable release (no prerelease suffix)
|
|
138
|
+
3. ✅ Noted if unstable versions were excluded in the report
|
|
103
139
|
|
|
104
140
|
7. Categorize by update type:
|
|
105
141
|
- **Critical**: Security fixes (from audit)
|
|
@@ -165,6 +201,19 @@ Generate `dependency-audit-report.md`:
|
|
|
165
201
|
|
|
166
202
|
---
|
|
167
203
|
|
|
204
|
+
## Version Validation Methodology
|
|
205
|
+
|
|
206
|
+
All recommended versions were verified against npm registry:
|
|
207
|
+
|
|
208
|
+
1. **Dist-tags check**: `npm view {package} dist-tags --json` - get actual "latest" tag
|
|
209
|
+
2. **Version existence**: `npm view {package}@{version} version` - confirm version exists
|
|
210
|
+
3. **Stability filter**: Excluded all pre-release versions (alpha, beta, rc, canary, next, etc.)
|
|
211
|
+
|
|
212
|
+
**Packages with unstable "latest" adjusted**: {count}
|
|
213
|
+
**All versions verified**: ✅ Yes
|
|
214
|
+
|
|
215
|
+
---
|
|
216
|
+
|
|
168
217
|
## Detailed Findings
|
|
169
218
|
|
|
170
219
|
### Priority: Critical
|
|
@@ -233,9 +282,15 @@ pnpm update lodash@^4.17.21
|
|
|
233
282
|
**Priority**: high
|
|
234
283
|
**Package**: react
|
|
235
284
|
**Current Version**: 17.0.2
|
|
236
|
-
**Latest Stable Version**: 18.3.1
|
|
285
|
+
**Latest Stable Version**: 18.3.1 ✅ (verified via `npm view react@18.3.1`)
|
|
237
286
|
**Update Type**: major
|
|
238
|
-
|
|
287
|
+
|
|
288
|
+
**Version Verification**:
|
|
289
|
+
```
|
|
290
|
+
npm view react dist-tags --json → {"latest":"18.3.1","next":"19.1.0","canary":"..."}
|
|
291
|
+
npm view react@18.3.1 version → 18.3.1 ✅
|
|
292
|
+
```
|
|
293
|
+
**Note**: Unstable versions excluded: 19.x (rc/canary/next)
|
|
239
294
|
|
|
240
295
|
**Analysis**:
|
|
241
296
|
- React 18 includes new features:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-orchestrator-kit",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
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",
|