claude-flow-novice 1.1.4 → 1.1.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.
- package/.claude/agents/backend-dev.json +9 -0
- package/.claude/agents/code-analyzer.json +9 -0
- package/.claude/agents/coder.json +9 -0
- package/.claude/agents/planner.json +9 -0
- package/.claude/agents/researcher.json +9 -0
- package/.claude/agents/reviewer.json +9 -0
- package/.claude/agents/system-architect.json +9 -0
- package/.claude/agents/tester.json +9 -0
- package/.claude/hooks.json +24 -0
- package/package.json +1 -1
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"hooks": {
|
|
3
|
+
"pre_task": {
|
|
4
|
+
"enabled": true,
|
|
5
|
+
"command": "npx claude-flow-novice@latest hooks pre-task --description \"$TASK_DESCRIPTION\"",
|
|
6
|
+
"description": "Pre-task coordination hook"
|
|
7
|
+
},
|
|
8
|
+
"post_edit": {
|
|
9
|
+
"enabled": true,
|
|
10
|
+
"command": "npx claude-flow-novice@latest hooks post-edit --file \"$FILE_PATH\" --memory-key \"swarm/$AGENT_ID/$STEP\"",
|
|
11
|
+
"description": "Post-edit memory storage hook"
|
|
12
|
+
},
|
|
13
|
+
"post_task": {
|
|
14
|
+
"enabled": true,
|
|
15
|
+
"command": "npx claude-flow-novice@latest hooks post-task --task-id \"$TASK_ID\"",
|
|
16
|
+
"description": "Post-task completion hook"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"memory": {
|
|
20
|
+
"enabled": true,
|
|
21
|
+
"persistence": "local",
|
|
22
|
+
"namespace": "claude-flow-novice"
|
|
23
|
+
}
|
|
24
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-flow-novice",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "Simplified Claude Flow for beginners - AI agent orchestration made easy. Enhanced init command creates complete agent system (8 core agents), MCP configuration, and automated hooks. All memory leaks eliminated, zero deprecated dependencies, full project setup in one command.",
|
|
5
5
|
"mcpName": "io.github.ruvnet/claude-flow",
|
|
6
6
|
"main": "dist/index.js",
|