create-claude-stack 1.0.0
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 +126 -0
- package/bin/create.js +353 -0
- package/package.json +36 -0
- package/template/CLAUDE.md +88 -0
- package/template/agents/engineer.md +39 -0
- package/template/agents/obsidian.md +51 -0
- package/template/agents/pm.md +45 -0
- package/template/agents/researcher.md +57 -0
- package/template/hooks/discord-notify.sh +46 -0
- package/template/hooks/gsd-context-monitor.js +156 -0
- package/template/hooks/safety-guard.js +81 -0
- package/template/mcp.json +34 -0
- package/template/rules/agents.md +20 -0
- package/template/rules/code-standards.md +30 -0
- package/template/rules/cognitive.md +37 -0
- package/template/rules/git-workflow.md +22 -0
- package/template/rules/new-project.md +13 -0
- package/template/settings.json +145 -0
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(git:*)",
|
|
5
|
+
"Bash(npm:*)",
|
|
6
|
+
"Bash(npx:*)",
|
|
7
|
+
"Bash(node:*)",
|
|
8
|
+
"Bash(python:*)",
|
|
9
|
+
"Bash(python3:*)",
|
|
10
|
+
"Bash(pip:*)",
|
|
11
|
+
"Bash(ls:*)",
|
|
12
|
+
"Bash(echo:*)",
|
|
13
|
+
"Bash(mkdir:*)",
|
|
14
|
+
"Bash(touch:*)",
|
|
15
|
+
"Bash(cp:*)",
|
|
16
|
+
"Bash(mv:*)",
|
|
17
|
+
"Bash(which:*)",
|
|
18
|
+
"Bash(gh:*)",
|
|
19
|
+
"Bash(gsd:*)",
|
|
20
|
+
"Bash(markdownlint-cli2:*)",
|
|
21
|
+
"Bash(jq:*)",
|
|
22
|
+
"Bash(curl:*)",
|
|
23
|
+
"Bash(tsc:*)",
|
|
24
|
+
"Bash(ts-node:*)",
|
|
25
|
+
"Bash(npx playwright:*)",
|
|
26
|
+
"Bash(cat:*)",
|
|
27
|
+
"Bash(cd:*)"
|
|
28
|
+
],
|
|
29
|
+
"deny": [
|
|
30
|
+
"Read(node_modules/)"
|
|
31
|
+
],
|
|
32
|
+
"ask": [
|
|
33
|
+
"Bash(rm:*)",
|
|
34
|
+
"Bash(kill:*)",
|
|
35
|
+
"Bash(chmod:*)",
|
|
36
|
+
"Bash(chown:*)",
|
|
37
|
+
"Bash(sudo:*)"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"hooks": {
|
|
41
|
+
"PreToolUse": [
|
|
42
|
+
{
|
|
43
|
+
"matcher": "Bash",
|
|
44
|
+
"hooks": [
|
|
45
|
+
{
|
|
46
|
+
"type": "command",
|
|
47
|
+
"command": "node \"$HOME/.claude/hooks/safety-guard.js\""
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"PostToolUse": [
|
|
53
|
+
{
|
|
54
|
+
"matcher": "Bash|Task|Agent",
|
|
55
|
+
"hooks": [
|
|
56
|
+
{
|
|
57
|
+
"type": "command",
|
|
58
|
+
"command": "node \"$HOME/.claude/hooks/gsd-context-monitor.js\"",
|
|
59
|
+
"timeout": 10
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
"Notification": [
|
|
65
|
+
{
|
|
66
|
+
"matcher": "",
|
|
67
|
+
"hooks": [
|
|
68
|
+
{
|
|
69
|
+
"type": "command",
|
|
70
|
+
"command": "bash \"$HOME/.claude/hooks/discord-notify.sh\" notification"
|
|
71
|
+
}
|
|
72
|
+
]
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"PostCompact": [
|
|
76
|
+
{
|
|
77
|
+
"hooks": [
|
|
78
|
+
{
|
|
79
|
+
"type": "command",
|
|
80
|
+
"command": "cat \"$HOME/.claude/primer.md\" 2>/dev/null || true"
|
|
81
|
+
}
|
|
82
|
+
]
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"Stop": [
|
|
86
|
+
{
|
|
87
|
+
"hooks": [
|
|
88
|
+
{
|
|
89
|
+
"type": "command",
|
|
90
|
+
"command": "bash \"$HOME/.claude/hooks/discord-notify.sh\" stop"
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
]
|
|
95
|
+
},
|
|
96
|
+
"enabledPlugins": {
|
|
97
|
+
"context7@claude-plugins-official": true,
|
|
98
|
+
"code-review@claude-plugins-official": true,
|
|
99
|
+
"code-simplifier@claude-plugins-official": true,
|
|
100
|
+
"commit-commands@claude-plugins-official": true,
|
|
101
|
+
"superpowers@claude-plugins-official": true,
|
|
102
|
+
"claude-md-management@claude-plugins-official": true,
|
|
103
|
+
"claude-code-setup@claude-plugins-official": true,
|
|
104
|
+
"frontend-design@claude-plugins-official": true,
|
|
105
|
+
"ralph-loop@claude-plugins-official": true,
|
|
106
|
+
"everything-claude-code@everything-claude-code": true,
|
|
107
|
+
"skill-creator@claude-plugins-official": true,
|
|
108
|
+
"feature-dev@claude-plugins-official": true,
|
|
109
|
+
"app-security@claude-plugins-official": true
|
|
110
|
+
},
|
|
111
|
+
"extraKnownMarketplaces": {
|
|
112
|
+
"everything-claude-code": {
|
|
113
|
+
"source": {
|
|
114
|
+
"source": "github",
|
|
115
|
+
"repo": "affaan-m/everything-claude-code"
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
"allowedTools": [
|
|
120
|
+
"Read",
|
|
121
|
+
"Write",
|
|
122
|
+
"Edit",
|
|
123
|
+
"Bash",
|
|
124
|
+
"Glob",
|
|
125
|
+
"Grep",
|
|
126
|
+
"TodoWrite",
|
|
127
|
+
"WebFetch",
|
|
128
|
+
"WebSearch",
|
|
129
|
+
"Task",
|
|
130
|
+
"SlashCommand",
|
|
131
|
+
"mcp__*"
|
|
132
|
+
],
|
|
133
|
+
"autoApproveTools": [
|
|
134
|
+
"Read",
|
|
135
|
+
"Glob",
|
|
136
|
+
"Grep",
|
|
137
|
+
"TodoWrite",
|
|
138
|
+
"WebFetch",
|
|
139
|
+
"WebSearch"
|
|
140
|
+
],
|
|
141
|
+
"preferences": {
|
|
142
|
+
"concise": true,
|
|
143
|
+
"technical": true
|
|
144
|
+
}
|
|
145
|
+
}
|