sumulige-claude 1.0.3 → 1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sumulige-claude",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "The Best Agent Harness for Claude Code",
5
5
  "main": "cli.js",
6
6
  "bin": {
@@ -1,33 +1,46 @@
1
1
  {
2
- "matcher": "UserPromptSubmit|PreToolUse|PostToolUse|AgentStop",
3
- "hooks": [
4
- {
5
- "command": "\"$CLAUDE_PROJECT_DIR\"/.claude/hooks/project-kickoff.cjs",
6
- "timeout": 1
7
- },
8
- {
9
- "command": "\"$CLAUDE_PROJECT_DIR\"/.claude/hooks/thinking-silent.cjs",
10
- "timeout": 1
11
- },
12
- {
13
- "command": "\"$CLAUDE_PROJECT_DIR\"/.claude/hooks/rag-skill-loader.cjs",
14
- "timeout": 1
15
- },
16
- {
17
- "command": "\"$CLAUDE_PROJECT_DIR\"/.claude/hooks/code-formatter.cjs",
18
- "timeout": 5
19
- },
20
- {
21
- "command": "\"$CLAUDE_PROJECT_DIR\"/.claude/hooks/verify-work.cjs",
22
- "timeout": 1
23
- },
24
- {
25
- "command": "\"$CLAUDE_PROJECT_DIR\"/.claude/hooks/multi-session.cjs",
26
- "timeout": 1
27
- },
28
- {
29
- "command": "\"$CLAUDE_PROJECT_DIR\"/.claude/hooks/todo-manager.cjs",
30
- "timeout": 1
31
- }
32
- ]
33
- }
2
+ "hooks": {
3
+ "PostToolUse": [
4
+ {
5
+ "matcher": "*",
6
+ "hooks": [
7
+ {
8
+ "type": "command",
9
+ "command": "node \"$CLAUDE_PROJECT_DIR\"/.claude/hooks/project-kickoff.cjs",
10
+ "timeout": 1000
11
+ },
12
+ {
13
+ "type": "command",
14
+ "command": "node \"$CLAUDE_PROJECT_DIR\"/.claude/hooks/thinking-silent.cjs",
15
+ "timeout": 1000
16
+ },
17
+ {
18
+ "type": "command",
19
+ "command": "node \"$CLAUDE_PROJECT_DIR\"/.claude/hooks/rag-skill-loader.cjs",
20
+ "timeout": 1000
21
+ },
22
+ {
23
+ "type": "command",
24
+ "command": "node \"$CLAUDE_PROJECT_DIR\"/.claude/hooks/code-formatter.cjs",
25
+ "timeout": 5000
26
+ },
27
+ {
28
+ "type": "command",
29
+ "command": "node \"$CLAUDE_PROJECT_DIR\"/.claude/hooks/verify-work.cjs",
30
+ "timeout": 1000
31
+ },
32
+ {
33
+ "type": "command",
34
+ "command": "node \"$CLAUDE_PROJECT_DIR\"/.claude/hooks/multi-session.cjs",
35
+ "timeout": 1000
36
+ },
37
+ {
38
+ "type": "command",
39
+ "command": "node \"$CLAUDE_PROJECT_DIR\"/.claude/hooks/todo-manager.cjs",
40
+ "timeout": 1000
41
+ }
42
+ ]
43
+ }
44
+ ]
45
+ }
46
+ }