ai-workflow-init 7.1.0 → 7.2.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/.claude/CLAUDE.md CHANGED
@@ -27,7 +27,7 @@
27
27
 
28
28
  ### 2. Deep Understanding
29
29
  - If unclear about requirements, edge cases, or expected behavior → **Ask first**
30
- - Use `AskUserQuestion` tool to ask multiple questions at once (up to 4)
30
+ - Batch related questions into a single block (avoid asking one at a time)
31
31
  - Never assume or guess - clarification prevents wasted effort
32
32
  - Key questions:
33
33
  - "What should happen when X occurs?"
package/cli.js CHANGED
@@ -419,19 +419,6 @@ function installClaudeCode() {
419
419
  run(`wget -qO ${claudeMdPath} ${RAW_BASE}/.claude/CLAUDE.md`);
420
420
  }
421
421
 
422
- // Download settings.json from repo (project-level, shareable with team)
423
- step("🚚 Downloading Claude Code hooks (.claude/settings.json)...");
424
- const claudeSettingsPath = ".claude/settings.json";
425
- if (existsSync(claudeSettingsPath)) {
426
- skip(`Skipping (already exists): ${claudeSettingsPath}`);
427
- } else {
428
- try {
429
- run(`curl -fsSL ${RAW_BASE}/.claude/settings.json -o ${claudeSettingsPath}`);
430
- } catch (_) {
431
- run(`wget -qO ${claudeSettingsPath} ${RAW_BASE}/.claude/settings.json`);
432
- }
433
- success(`Downloaded: ${claudeSettingsPath}`);
434
- }
435
422
 
436
423
  // Download skills folder (always overwrite to get latest)
437
424
  step("🚚 Downloading Claude Code skills (.claude/skills)...");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-workflow-init",
3
- "version": "7.1.0",
3
+ "version": "7.2.0",
4
4
  "description": "Initialize AI workflow docs & commands into any repo with one command",
5
5
  "bin": {
6
6
  "ai-workflow-init": "./cli.js"