@agentic15.com/agentic15-claude-zen 6.0.0 → 6.0.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/CHANGELOG.md +15 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
Copyright 2024-2025 agentic15.com
|
|
9
9
|
|
|
10
|
+
## [6.0.1] - 2025-12-31
|
|
11
|
+
|
|
12
|
+
### Summary
|
|
13
|
+
Patch release to fix README documentation sync for npm package.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- **README Sync Script**: Updated `sync-readme` script to use ESM syntax (`import()` instead of `require()`)
|
|
17
|
+
- The prepublishOnly hook now correctly syncs the latest README.md before publishing
|
|
18
|
+
- npm package page will now show complete dual-platform documentation
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
- Package now includes full 17.3kB README with Azure DevOps documentation (was 11.5kB)
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
10
25
|
## [6.0.0] - 2025-12-31
|
|
11
26
|
|
|
12
27
|
### 🎉 MAJOR RELEASE - Dual-Platform Support (GitHub + Azure DevOps)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentic15.com/agentic15-claude-zen",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"description": "Structured AI-assisted development framework for Claude Code with dual-platform support (GitHub and Azure DevOps)",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"test": "node test/integration.test.js",
|
|
13
13
|
"test:e2e": "node test/e2e-verification.test.js",
|
|
14
14
|
"test:site": "node test/verify-test-site.js",
|
|
15
|
-
"sync-readme": "node -e \"
|
|
15
|
+
"sync-readme": "node -e \"import('fs').then(fs => fs.copyFileSync('../README.md', 'README.md'))\"",
|
|
16
16
|
"prepublishOnly": "npm run sync-readme"
|
|
17
17
|
},
|
|
18
18
|
"keywords": [
|