claude-code-autoconfig 1.0.202 → 1.0.203

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.
@@ -6,5 +6,5 @@ allowed-tools: Bash
6
6
  Run exactly this command, then reply with a single confirmation line and nothing else:
7
7
 
8
8
  ```
9
- rm -f ~/.claude/sounds/arcade-beeps.enabled && echo "arcade beeps DISABLED."
9
+ rm -f "${CLAUDE_PROJECT_DIR:-.}/.claude/sounds/arcade-beeps.enabled" ~/.claude/sounds/arcade-beeps.enabled && echo "arcade beeps DISABLED."
10
10
  ```
@@ -6,5 +6,5 @@ allowed-tools: Bash
6
6
  Run exactly this command, then reply with a single confirmation line and nothing else:
7
7
 
8
8
  ```
9
- mkdir -p ~/.claude/sounds && touch ~/.claude/sounds/arcade-beeps.enabled && echo "arcade beeps ENABLED (every turn-end beeps: awaiting=low, complete=high). Disable with /disable-arcade-beeps."
9
+ mkdir -p "${CLAUDE_PROJECT_DIR:-.}/.claude/sounds" && touch "${CLAUDE_PROJECT_DIR:-.}/.claude/sounds/arcade-beeps.enabled" && echo "arcade beeps ENABLED for this project (every turn-end beeps: awaiting=low, complete=high). Disable with /disable-arcade-beeps."
10
10
  ```
@@ -3,9 +3,12 @@
3
3
  * arcade-beeps — optional Pole-Position status cues for the Claude Code tab.
4
4
  * Companion to terminal-title.js. Registered (settings.json) on Stop + Notification.
5
5
  *
6
- * OFF unless the enable flag exists: ~/.claude/sounds/arcade-beeps.enabled
6
+ * OFF unless the enable flag exists: <install>/.claude/sounds/arcade-beeps.enabled
7
7
  * toggle via /enable-arcade-beeps /disable-arcade-beeps
8
- * The flag is GLOBAL (homedir), so one toggle covers every project you've installed into.
8
+ * The flag lives beside THIS install's sounds dir, so it is PER-PROJECT: a fresh
9
+ * `npx claude-code-autoconfig` install never beeps until /enable-arcade-beeps is run in that
10
+ * project. (A copy of this hook living in ~/.claude/hooks keys off ~/.claude/sounds — a
11
+ * deliberate consequence: a global install gets a global toggle.)
9
12
  *
10
13
  * Mapping (matches the ◐/✻ tab glyph that terminal-title.js paints on the SAME event):
11
14
  * Stop, turn ended on a question -> ◐ awaiting -> get-ready tick (pp3-getready-G4.wav, G4/384Hz)
@@ -38,7 +41,7 @@ const path = require('path');
38
41
  const { spawnSync } = require('child_process');
39
42
 
40
43
  const ASSET_DIR = path.join(__dirname, '..', 'sounds'); // wavs ship beside the hook
41
- const FLAG = path.join(os.homedir(), '.claude', 'sounds', 'arcade-beeps.enabled'); // global toggle
44
+ const FLAG = path.join(ASSET_DIR, 'arcade-beeps.enabled'); // per-install toggle, beside the wavs
42
45
  const LOG = path.join(os.homedir(), '.claude', 'hooks', '.titles', 'arcade-beeps.log');
43
46
  const DEBUG = process.env.ARCADE_BEEPS_DEBUG === '1';
44
47
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.0.203
4
+ - fix(arcade-beeps): Arcade beeps are now off by default in every install — turn them on per project with /enable-arcade-beeps, off again with /disable-arcade-beeps.
5
+
3
6
  ## v1.0.202
4
7
  - feat(terminal-title): The 'awaiting your reply' tab indicator now also catches sign-off style endings like 'Ready when you are', and quietly logs a warning if a Claude Code update changes the data the hooks rely on.
5
8
 
@@ -147,6 +150,3 @@
147
150
  ## v1.0.154
148
151
  - fix: enforce ls -t over find in gls command to avoid permission prompts
149
152
 
150
- ## v1.0.153
151
- - style: left-align all table cells in docs info cards
152
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-autoconfig",
3
- "version": "1.0.202",
3
+ "version": "1.0.203",
4
4
  "description": "Intelligent, self-configuring setup for Claude Code. One command analyzes your project, configures Claude, and shows you what it did.",
5
5
  "author": "ADAC 1001 <info@adac1001.com>",
6
6
  "license": "MIT",