agentvibes 2.13.4 → 2.13.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.
|
@@ -7,7 +7,14 @@
|
|
|
7
7
|
|
|
8
8
|
set -euo pipefail
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
# Security: Use secure temp directory with restrictive permissions
|
|
11
|
+
# Must match the logic in tts-queue.sh exactly
|
|
12
|
+
if [[ -n "${XDG_RUNTIME_DIR:-}" ]] && [[ -d "$XDG_RUNTIME_DIR" ]]; then
|
|
13
|
+
QUEUE_DIR="$XDG_RUNTIME_DIR/agentvibes-tts-queue"
|
|
14
|
+
else
|
|
15
|
+
# Fallback to user-specific temp directory
|
|
16
|
+
QUEUE_DIR="/tmp/agentvibes-tts-queue-$USER"
|
|
17
|
+
fi
|
|
11
18
|
WORKER_PID_FILE="$QUEUE_DIR/worker.pid"
|
|
12
19
|
IDLE_TIMEOUT=5 # Exit after 5 seconds of no new requests
|
|
13
20
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "agentvibes",
|
|
4
|
-
"version": "2.13.
|
|
4
|
+
"version": "2.13.5",
|
|
5
5
|
"description": "Now your AI Agents can finally talk back! Professional TTS voice for Claude Code and Claude Desktop (via MCP) with multi-provider support.",
|
|
6
6
|
"homepage": "https://agentvibes.org",
|
|
7
7
|
"keywords": [
|