@agentic15.com/agentic15-claude-zen 8.1.0 β 8.1.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-plugin/plugin.json +1 -1
- package/CHANGELOG.md +11 -0
- package/README.md +7 -25
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
Copyright 2024-2026 agentic15.com
|
|
9
9
|
|
|
10
|
+
## [8.1.1] - 2026-01-05
|
|
11
|
+
|
|
12
|
+
### π Fixed
|
|
13
|
+
|
|
14
|
+
**README Publishing Issue**
|
|
15
|
+
- Fixed prepublishOnly script overwriting updated README
|
|
16
|
+
- Root README.md now contains skills documentation
|
|
17
|
+
- Ensures published package shows v8.x and Claude Code skills
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
10
21
|
## [8.1.0] - 2026-01-05
|
|
11
22
|
|
|
12
23
|
### π Documentation
|
package/README.md
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
[](https://www.npmjs.com/package/@agentic15.com/agentic15-claude-zen)
|
|
6
6
|
[](https://opensource.org/licenses/Apache-2.0)
|
|
7
7
|
|
|
8
|
-
> **Latest:** v7.0.1 - Token-Efficient Architecture & Autonomous UI Verification
|
|
9
8
|
|
|
10
9
|
---
|
|
11
10
|
|
|
@@ -21,13 +20,14 @@ Agentic15 Claude Zen is a structured development framework designed to work seam
|
|
|
21
20
|
|
|
22
21
|
**Philosophy:** Structure, not enforcement. The framework provides commands and organization, while Claude decides when tests are appropriate.
|
|
23
22
|
|
|
24
|
-
|
|
23
|
+
Includes integrated Claude Code plugin with 7 native skills for seamless workflow automation directly in your Claude Code conversations.
|
|
25
24
|
|
|
26
25
|
</td>
|
|
27
26
|
<td width="50%">
|
|
28
27
|
|
|
29
28
|
### Key Benefits
|
|
30
29
|
|
|
30
|
+
- β
**Claude Code skills** - Native `/agentic15:*` commands
|
|
31
31
|
- β
**Task tracking** and organization
|
|
32
32
|
- β
**Consistent workflow** structure
|
|
33
33
|
- β
**Dual-platform support** - GitHub or Azure DevOps
|
|
@@ -36,7 +36,7 @@ Agentic15 Claude Zen is a structured development framework designed to work seam
|
|
|
36
36
|
- β
**Token-efficient architecture** - 2K tokens (not 2M)
|
|
37
37
|
- β
**Service layer pattern** - Production-ready from Day 1
|
|
38
38
|
- β
**Flexible** - no mandatory testing
|
|
39
|
-
- β
**
|
|
39
|
+
- β
**CLI + Plugin** - One package, dual interface
|
|
40
40
|
|
|
41
41
|
</td>
|
|
42
42
|
</tr>
|
|
@@ -100,11 +100,11 @@ npx agentic15 task next
|
|
|
100
100
|
|
|
101
101
|
---
|
|
102
102
|
|
|
103
|
-
##
|
|
103
|
+
## Token-Efficient Architecture
|
|
104
104
|
|
|
105
|
-
###
|
|
105
|
+
### Service Layer Pattern
|
|
106
106
|
|
|
107
|
-
For data-driven applications (Database + API + UI),
|
|
107
|
+
For data-driven applications (Database + API + UI), the framework includes a token-efficient architecture pattern:
|
|
108
108
|
|
|
109
109
|
**The Problem:**
|
|
110
110
|
- Traditional approach: Claude updates 1000+ UI files with mockβreal transitions
|
|
@@ -323,22 +323,4 @@ Apache 2.0 - See [LICENSE](./Agent/LICENSE) for details.
|
|
|
323
323
|
|
|
324
324
|
Copyright 2024-2026 agentic15.com
|
|
325
325
|
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
## Version History
|
|
329
|
-
|
|
330
|
-
### v7.0.1 (2026-01-04) - Documentation Improvements
|
|
331
|
-
- **README:** 58% smaller (340 lines vs 806)
|
|
332
|
-
- **Organization:** Links to detailed guides instead of embedding
|
|
333
|
-
|
|
334
|
-
### v7.0.0 (2026-01-04) - Token-Efficient Architecture
|
|
335
|
-
- **Service Layer Pattern:** 1000x token reduction for data-driven apps
|
|
336
|
-
- **Autonomous UI Verification:** Visual testing with screenshots + accessibility
|
|
337
|
-
- **Workflow Consistency:** Plan branches, sync support, archive naming
|
|
338
|
-
|
|
339
|
-
### v6.0.0 (2025-12-31) - Dual-Platform Support
|
|
340
|
-
- GitHub and Azure DevOps integration
|
|
341
|
-
- Platform auto-detection
|
|
342
|
-
- Unified command structure
|
|
343
|
-
|
|
344
|
-
See [CHANGELOG.md](./Agent/CHANGELOG.md) for complete history.
|
|
326
|
+
See [CHANGELOG.md](./Agent/CHANGELOG.md) for version history.
|
package/package.json
CHANGED