@agentic15.com/agentic15-claude-zen 3.2.0 → 3.2.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/README.md +12 -1
- package/package.json +1 -1
- package/templates/.claude/settings.json +22 -22
package/README.md
CHANGED
|
@@ -18,16 +18,27 @@ npx @agentic15.com/agentic15-claude-zen my-project
|
|
|
18
18
|
npx "@agentic15.com/agentic15-claude-zen" my-project
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
**Step 2:
|
|
21
|
+
**Step 2: Navigate Into Project**
|
|
22
22
|
```bash
|
|
23
23
|
cd my-project
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
**Step 3: Launch Claude Code from Inside Project Directory**
|
|
27
|
+
|
|
28
|
+
Start Claude Code CLI from inside the `my-project` directory. Claude Code MUST be running from inside your project directory to access the framework files.
|
|
29
|
+
|
|
30
|
+
**Step 4: Use Framework Commands**
|
|
31
|
+
```bash
|
|
24
32
|
npx agentic15 auth # One-time GitHub setup
|
|
25
33
|
npx agentic15 plan # Enter interactive mode
|
|
26
34
|
# Type/paste your requirements, press Ctrl+D when done
|
|
27
35
|
npx agentic15 task next # Start first task
|
|
36
|
+
# Make your code changes with Claude...
|
|
28
37
|
npx agentic15 commit # Test, commit, push, PR
|
|
29
38
|
```
|
|
30
39
|
|
|
40
|
+
> **IMPORTANT**: Always launch Claude Code from inside your project directory, not from the parent directory. The framework relies on `.claude/` configuration files that must be accessible from the working directory.
|
|
41
|
+
>
|
|
31
42
|
> **Note**: Project creation uses the full package name `@agentic15.com/agentic15-claude-zen`.
|
|
32
43
|
> Once inside your project, use the short command `agentic15` for all workflows.
|
|
33
44
|
>
|
package/package.json
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
"Read(**)",
|
|
5
5
|
"Glob",
|
|
6
6
|
"Grep",
|
|
7
|
-
"Bash(npm run
|
|
8
|
-
"Bash(git status
|
|
9
|
-
"Bash(git log
|
|
10
|
-
"Bash(git diff
|
|
11
|
-
"Bash(git branch
|
|
7
|
+
"Bash(npm run:*)",
|
|
8
|
+
"Bash(git status:*)",
|
|
9
|
+
"Bash(git log:*)",
|
|
10
|
+
"Bash(git diff:*)",
|
|
11
|
+
"Bash(git branch:*)",
|
|
12
12
|
"Edit(./Agent/**)",
|
|
13
13
|
"Write(./Agent/**)",
|
|
14
14
|
"Edit(./scripts/**)",
|
|
@@ -38,29 +38,29 @@
|
|
|
38
38
|
"Edit(./.claude/TASK-TRACKER.json)",
|
|
39
39
|
"Read(./.claude/POST-INSTALL.md)",
|
|
40
40
|
"Read(./docs/**)",
|
|
41
|
-
"Bash(agentic15
|
|
42
|
-
"Bash(git
|
|
43
|
-
"Bash(gh
|
|
41
|
+
"Bash(agentic15:*)",
|
|
42
|
+
"Bash(git:*)",
|
|
43
|
+
"Bash(gh:*)",
|
|
44
44
|
"Bash(npm run task:*)",
|
|
45
45
|
"Bash(npm run plan:*)",
|
|
46
|
-
"Bash(curl
|
|
47
|
-
"Bash(wget
|
|
48
|
-
"Bash(rm -rf
|
|
49
|
-
"Bash(sudo
|
|
50
|
-
"Bash(npm install
|
|
51
|
-
"Bash(npm publish
|
|
52
|
-
"Bash(git push --force
|
|
53
|
-
"Bash(git merge
|
|
54
|
-
"Bash(psql
|
|
55
|
-
"Bash(mysql
|
|
56
|
-
"Bash(sqlite3
|
|
57
|
-
"Bash(mongosh
|
|
58
|
-
"Bash(redis-cli
|
|
46
|
+
"Bash(curl:*)",
|
|
47
|
+
"Bash(wget:*)",
|
|
48
|
+
"Bash(rm -rf:*)",
|
|
49
|
+
"Bash(sudo:*)",
|
|
50
|
+
"Bash(npm install:*)",
|
|
51
|
+
"Bash(npm publish:*)",
|
|
52
|
+
"Bash(git push --force:*)",
|
|
53
|
+
"Bash(git merge:*)",
|
|
54
|
+
"Bash(psql:*)",
|
|
55
|
+
"Bash(mysql:*)",
|
|
56
|
+
"Bash(sqlite3:*)",
|
|
57
|
+
"Bash(mongosh:*)",
|
|
58
|
+
"Bash(redis-cli:*)",
|
|
59
59
|
"Bash(node ./scripts/**)",
|
|
60
60
|
"Bash(node ./Agent/db/**)",
|
|
61
61
|
"Bash(bash ./scripts/**)",
|
|
62
62
|
"Bash(sh ./scripts/**)",
|
|
63
|
-
"Bash(git checkout -b
|
|
63
|
+
"Bash(git checkout -b:*)",
|
|
64
64
|
"WebFetch",
|
|
65
65
|
"WebSearch"
|
|
66
66
|
]
|