claude-cli-advanced-starter-pack 1.0.3 → 1.0.4

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": "claude-cli-advanced-starter-pack",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Advanced Claude Code CLI toolkit - agents, hooks, skills, MCP servers, phased development, and GitHub integration",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -1227,17 +1227,12 @@ export default async function ${hookName.replace(/-/g, '_')}(context) {
1227
1227
  */
1228
1228
  function generateSettingsJson(projectName) {
1229
1229
  return JSON.stringify({
1230
- "$schema": "https://raw.githubusercontent.com/anthropics/claude-code/main/.claude/settings.schema.json",
1231
- "project": {
1232
- "name": projectName,
1233
- "description": "Project configured with Claude CLI Advanced Starter Pack"
1234
- },
1230
+ "$schema": "https://json.schemastore.org/claude-code-settings.json",
1235
1231
  "permissions": {
1236
- "allowedTools": ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "Task"],
1237
- "deniedTools": []
1232
+ "allow": [],
1233
+ "deny": []
1238
1234
  },
1239
- "agents": [],
1240
- "hooks": []
1235
+ "hooks": {}
1241
1236
  }, null, 2);
1242
1237
  }
1243
1238
 
@@ -1246,12 +1241,12 @@ function generateSettingsJson(projectName) {
1246
1241
  */
1247
1242
  function generateSettingsLocalJson() {
1248
1243
  return JSON.stringify({
1249
- "$schema": "https://raw.githubusercontent.com/anthropics/claude-code/main/.claude/settings.schema.json",
1244
+ "$schema": "https://json.schemastore.org/claude-code-settings.json",
1250
1245
  "permissions": {
1251
- "allowedTools": [],
1252
- "deniedTools": []
1246
+ "allow": [],
1247
+ "deny": []
1253
1248
  },
1254
- "hooks": []
1249
+ "hooks": {}
1255
1250
  }, null, 2);
1256
1251
  }
1257
1252