@agentic15.com/agentic15-claude-zen 2.0.3 โ 2.0.6
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/README.md +74 -206
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,206 +1,74 @@
|
|
|
1
|
-
# Agentic15 Claude Zen
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
[ 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
|
+
[](https://www.npmjs.com/package/@agentic15.com/agentic15-claude-zen)
|
|
6
|
+
[](https://opensource.org/licenses/Apache-2.0)
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## Quick Start
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
# Bash/Mac/Linux
|
|
14
|
+
npx @agentic15.com/agentic15-claude-zen my-project
|
|
15
|
+
|
|
16
|
+
# PowerShell (Windows)
|
|
17
|
+
npx "@agentic15.com/agentic15-claude-zen" my-project
|
|
18
|
+
|
|
19
|
+
# Then
|
|
20
|
+
cd my-project
|
|
21
|
+
npx agentic15 auth
|
|
22
|
+
npx agentic15 plan "Build a todo app"
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
**See [WORKFLOWS.md](WORKFLOWS.md) for complete workflows.**
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## What It Does
|
|
30
|
+
|
|
31
|
+
**5 Commands:**
|
|
32
|
+
- `npx agentic15 plan` - Generate and lock plans
|
|
33
|
+
- `npx agentic15 task next` - Start next task
|
|
34
|
+
- `npx agentic15 commit` - Test + commit + push + PR
|
|
35
|
+
- `npx agentic15 status` - Check progress
|
|
36
|
+
- `npm test` - Run tests
|
|
37
|
+
|
|
38
|
+
**Automates:**
|
|
39
|
+
- Feature branches (`feature/task-001`)
|
|
40
|
+
- Commit messages (`[TASK-001] Task title`)
|
|
41
|
+
- GitHub push
|
|
42
|
+
- Pull requests
|
|
43
|
+
- Issue tracking
|
|
44
|
+
|
|
45
|
+
**Workflow:**
|
|
46
|
+
```
|
|
47
|
+
plan โ task โ code โ test โ commit โ PR โ merge โ repeat
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## Documentation
|
|
53
|
+
|
|
54
|
+
- **[WORKFLOWS.md](WORKFLOWS.md)** - Complete workflows with diagrams
|
|
55
|
+
- **[CHANGELOG.md](CHANGELOG.md)** - Version history
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## Requirements
|
|
60
|
+
|
|
61
|
+
- Node.js 18+
|
|
62
|
+
- Git
|
|
63
|
+
- GitHub account
|
|
64
|
+
- GitHub CLI (`gh`)
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## License
|
|
69
|
+
|
|
70
|
+
Apache 2.0 - See [LICENSE](LICENSE)
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
**Support:** https://github.com/agentic15/claude-zen/issues
|
package/package.json
CHANGED