@agentic15.com/agentic15-claude-zen 2.0.2 โ†’ 2.0.5

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.
Files changed (2) hide show
  1. package/README.md +68 -206
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,206 +1,68 @@
1
- # Agentic15 Claude Zen
2
-
3
- > **Code with Intelligence, Ship with Confidence**
4
-
5
- [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
6
- [![npm version](https://badge.fury.io/js/@agentic15.com%2Fagentic15-claude-zen.svg)](https://www.npmjs.com/package/@agentic15.com/agentic15-claude-zen)
7
- [![GitHub stars](https://img.shields.io/github/stars/agentic15/claude-zen.svg)](https://github.com/agentic15/claude-zen/stargazers)
8
-
9
- **Agentic15 Claude Zen** is a professional, enterprise-grade framework for structured AI-assisted software development with Claude Code. It enforces quality standards, automates testing, and ensures every commit meets production requirements.
10
-
11
- ## ๐ŸŽฏ What is Agentic15 Claude Zen?
12
-
13
- A comprehensive development framework that transforms Claude Code into a disciplined, production-ready development environment through:
14
-
15
- - **Structured Project Management**: Hierarchical plans, task tracking, and progress monitoring
16
- - **Automated Quality Enforcement**: Git hooks that validate tests, code quality, and UI components
17
- - **Smart Testing**: Only test changed files (perfect for 43,000+ line codebases)
18
- - **UI Component Workflows**: Enforced 3-file pattern (component, test, integration site)
19
- - **Framework Agnostic**: Works with React, Vue, Angular, Svelte, and more
20
-
21
- ## ๐Ÿš€ Quick Start
22
-
23
- Install from [npm](https://www.npmjs.com/package/@agentic15.com/agentic15-claude-zen):
24
-
25
- ```bash
26
- # Create a new project
27
- npx @agentic15.com/agentic15-claude-zen my-project
28
-
29
- # Navigate to project
30
- cd my-project
31
-
32
- # Read the post-install guide
33
- cat .claude/POST-INSTALL.md
34
-
35
- # Start developing
36
- npm run plan:generate "Build a todo app with React"
37
- ```
38
-
39
- ## ๐Ÿ“š Documentation
40
-
41
- Comprehensive documentation is available in the [GitHub repository](https://github.com/agentic15/claude-zen):
42
-
43
- - **[Getting Started](https://github.com/agentic15/claude-zen/blob/main/docs/getting-started/README.md)** - Installation, configuration, quick start
44
- - **[User Workflows](https://github.com/agentic15/claude-zen/blob/main/docs/workflows/user-workflow.md)** - How humans interact with the framework
45
- - **[Agent Workflows](https://github.com/agentic15/claude-zen/blob/main/docs/workflows/agent-workflow.md)** - How Claude Code operates within the framework
46
- - **[Plan Management](https://github.com/agentic15/claude-zen/blob/main/docs/workflows/plan-management.md)** - Creating, locking, and amending plans
47
- - **[Task Management](https://github.com/agentic15/claude-zen/blob/main/docs/workflows/task-management.md)** - Starting, tracking, and completing tasks
48
- - **[Test Execution](https://github.com/agentic15/claude-zen/blob/main/docs/workflows/test-execution.md)** - Smart testing strategies for all project sizes
49
- - **[Architecture](https://github.com/agentic15/claude-zen/blob/main/docs/architecture/README.md)** - Design principles, SOLID patterns, directory structure
50
-
51
- ## โœจ Key Features
52
-
53
- ### ๐Ÿ“‹ Structured Development
54
- - Hierarchical project planning (Project โ†’ Subproject โ†’ Milestone โ†’ Task)
55
- - Immutable plans with audit trail for amendments
56
- - Dependency tracking and validation
57
- - Progress monitoring and time estimation
58
-
59
- ### ๐Ÿ”’ Quality Enforcement
60
- - **Pre-commit hooks** validate tests, code quality, and UI components
61
- - **Smart testing** runs only changed files during commits
62
- - **Test quality validation** blocks empty tests, missing assertions
63
- - **UI integration validation** enforces component + test + integration site pattern
64
-
65
- ### โšก Performance
66
- - Token-optimized with prompt caching
67
- - Smart file change detection for testing
68
- - Minified and bundled hooks for fast execution
69
- - Scales to projects with 43,000+ lines of code
70
-
71
- ### ๐ŸŽจ UI Development
72
- - Framework-agnostic (React, Vue, Angular, Svelte)
73
- - Complete Jest + Babel configuration included
74
- - Testing Library integration
75
- - Integration site for stakeholder previews
76
-
77
- ## ๐Ÿ—๏ธ Directory Structure
78
-
79
- ```
80
- your-project/
81
- โ”œโ”€โ”€ .claude/ # Framework configuration (DO NOT EDIT)
82
- โ”‚ โ”œโ”€โ”€ hooks/ # Git hooks for enforcement
83
- โ”‚ โ”œโ”€โ”€ plans/ # Project plans and task tracking
84
- โ”‚ โ”œโ”€โ”€ CLAUDE.md # Instructions for Claude Code
85
- โ”‚ โ”œโ”€โ”€ POST-INSTALL.md # Setup guide
86
- โ”‚ โ””โ”€โ”€ settings.json # Claude Code hook configuration
87
- โ”œโ”€โ”€ Agent/ # Your workspace (EDIT HERE)
88
- โ”‚ โ”œโ”€โ”€ src/ # Source code
89
- โ”‚ โ”œโ”€โ”€ tests/ # Test files
90
- โ”‚ โ””โ”€โ”€ db/ # Database scripts
91
- โ”œโ”€โ”€ scripts/ # Build and deployment scripts
92
- โ”œโ”€โ”€ test-site/ # Integration testing site (UI projects)
93
- โ”œโ”€โ”€ jest.config.js # Test configuration
94
- โ”œโ”€โ”€ .babelrc # Transpiler configuration
95
- โ””โ”€โ”€ package.json # Project dependencies
96
- ```
97
-
98
- ## ๐Ÿ”ง Core Workflows
99
-
100
- ### For Project Owners (Humans)
101
-
102
- 1. **Create a plan**: `npm run plan:generate "Your project description"`
103
- 2. **Review and approve**: Claude creates `PROJECT-PLAN.json`
104
- 3. **Lock the plan**: `npm run plan:init`
105
- 4. **Start a task**: `npm run task:start TASK-001`
106
- 5. **Monitor progress**: `npm run task:status`
107
- 6. **Complete task**: `npm run task:done TASK-001`
108
-
109
- ### For AI Agents (Claude Code)
110
-
111
- 1. **Read task requirements**: `.claude/plans/*/tasks/TASK-XXX.json`
112
- 2. **Write code** in `Agent/` directory
113
- 3. **Write tests** with real assertions
114
- 4. **Run tests**: `npm test` (must pass)
115
- 5. **Commit**: Git hooks validate automatically
116
- 6. **Mark complete**: After all criteria met
117
-
118
- ## ๐Ÿงช Smart Testing
119
-
120
- **Problem**: Large codebases with 43,000+ lines take too long to test on every commit.
121
-
122
- **Solution**: Git hooks test ONLY changed files:
123
-
124
- - Detects staged files
125
- - Maps source files to test files
126
- - Runs related tests only
127
- - Manual `npm test` still runs full suite
128
-
129
- ```bash
130
- # During git commit (fast - changed files only)
131
- git commit -m "Fix bug"
132
- # โ†’ Tests 3 files in 2 seconds
133
-
134
- # Manual full test suite (slower - all files)
135
- npm test
136
- # โ†’ Tests 500 files in 45 seconds
137
- ```
138
-
139
- ## ๐ŸŽจ UI Component Workflow
140
-
141
- Every UI component requires 3 files:
142
-
143
- 1. **Component**: `Agent/src/components/Button.jsx`
144
- 2. **Test**: `Agent/tests/components/Button.test.jsx`
145
- 3. **Integration**: `test-site/src/components/Button.jsx`
146
-
147
- Git hooks BLOCK commits missing any of these files.
148
-
149
- ## ๐Ÿค Contributing
150
-
151
- We welcome contributions! Please see [CONTRIBUTING.md](https://github.com/agentic15/claude-zen/blob/main/CONTRIBUTING.md) for guidelines.
152
-
153
- ### Development Setup
154
-
155
- ```bash
156
- # Clone the repository
157
- git clone https://github.com/agentic15/claude-zen.git
158
- cd claude-zen
159
-
160
- # Install dependencies
161
- npm install
162
-
163
- # Run tests
164
- npm test
165
-
166
- # Build package
167
- npm run build
168
- ```
169
-
170
- ## ๐Ÿ” Security
171
-
172
- For security vulnerabilities, please email security@agentic15.com
173
-
174
- See [SECURITY.md](https://github.com/agentic15/claude-zen/blob/main/SECURITY.md) for our security policy.
175
-
176
- ## ๐Ÿ“„ License
177
-
178
- Copyright 2024-2025 agentic15.com
179
-
180
- Licensed under the Apache License, Version 2.0 (the "License");
181
- you may not use this file except in compliance with the License.
182
- You may obtain a copy of the License at
183
-
184
- http://www.apache.org/licenses/LICENSE-2.0
185
-
186
- Unless required by applicable law or agreed to in writing, software
187
- distributed under the License is distributed on an "AS IS" BASIS,
188
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189
- See the License for the specific language governing permissions and
190
- limitations under the License.
191
-
192
- See [LICENSE](https://github.com/agentic15/claude-zen/blob/main/LICENSE) for full text.
193
-
194
- ## ๐Ÿข About agentic15.com
195
-
196
- **agentic15.com** is a software development company specializing in AI-assisted development tools and frameworks.
197
-
198
- - **Website**: https://agentic15.com
199
- - **Documentation**: https://docs.agentic15.com
200
- - **GitHub**: https://github.com/agentic15
201
- - **Twitter**: https://twitter.com/agentic15
202
- - **Email**: hello@agentic15.com
203
-
204
- ---
205
-
206
- **"Code with Intelligence, Ship with Confidence"** - agentic15.com
1
+ # Agentic15 Claude Zen
2
+
3
+ AI-Assisted Development Framework with Automated Workflows
4
+
5
+ [![npm version](https://badge.fury.io/js/@agentic15.com%2Fagentic15-claude-zen.svg)](https://www.npmjs.com/package/@agentic15.com/agentic15-claude-zen)
6
+ [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
7
+
8
+ ---
9
+
10
+ ## Quick Start
11
+
12
+ ```bash
13
+ npx @agentic15.com/agentic15-claude-zen my-project
14
+ cd my-project
15
+ npx agentic15 auth
16
+ npx agentic15 plan "Build a todo app"
17
+ ```
18
+
19
+ **See [WORKFLOWS.md](WORKFLOWS.md) for complete workflows.**
20
+
21
+ ---
22
+
23
+ ## What It Does
24
+
25
+ **5 Commands:**
26
+ - `npx agentic15 plan` - Generate and lock plans
27
+ - `npx agentic15 task next` - Start next task
28
+ - `npx agentic15 commit` - Test + commit + push + PR
29
+ - `npx agentic15 status` - Check progress
30
+ - `npm test` - Run tests
31
+
32
+ **Automates:**
33
+ - Feature branches (`feature/task-001`)
34
+ - Commit messages (`[TASK-001] Task title`)
35
+ - GitHub push
36
+ - Pull requests
37
+ - Issue tracking
38
+
39
+ **Workflow:**
40
+ ```
41
+ plan โ†’ task โ†’ code โ†’ test โ†’ commit โ†’ PR โ†’ merge โ†’ repeat
42
+ ```
43
+
44
+ ---
45
+
46
+ ## Documentation
47
+
48
+ - **[WORKFLOWS.md](WORKFLOWS.md)** - Complete workflows with diagrams
49
+ - **[CHANGELOG.md](CHANGELOG.md)** - Version history
50
+
51
+ ---
52
+
53
+ ## Requirements
54
+
55
+ - Node.js 18+
56
+ - Git
57
+ - GitHub account
58
+ - GitHub CLI (`gh`)
59
+
60
+ ---
61
+
62
+ ## License
63
+
64
+ Apache 2.0 - See [LICENSE](LICENSE)
65
+
66
+ ---
67
+
68
+ **Support:** https://github.com/agentic15/claude-zen/issues
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentic15.com/agentic15-claude-zen",
3
- "version": "2.0.2",
3
+ "version": "2.0.5",
4
4
  "description": "Structured AI-assisted development framework for Claude Code with enforced quality standards",
5
5
  "main": "dist/index.js",
6
6
  "bin": {