agentvibes 5.13.0 → 5.14.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.
Files changed (82) hide show
  1. package/.claude/audio/ui/CREDITS.txt +16 -16
  2. package/.claude/commands/agent-vibes-bmad-voices.md +117 -117
  3. package/.claude/commands/agent-vibes-rdp.md +24 -24
  4. package/.claude/config/audio-effects.cfg.sample +52 -52
  5. package/.claude/docs/TERMUX_SETUP.md +408 -408
  6. package/.claude/github-star-reminder.txt +1 -1
  7. package/.claude/hooks/kokoro-server.py +219 -219
  8. package/.claude/hooks/kokoro-tts.py +141 -141
  9. package/.claude/hooks/party-stage-roster.py +328 -328
  10. package/.claude/hooks/play-tts-kokoro.sh +7 -2
  11. package/.claude/hooks/play-tts-ssh-remote.sh +38 -3
  12. package/.claude/hooks/requirements.txt +6 -6
  13. package/.claude/hooks/soprano-gradio-synth.py +139 -139
  14. package/.claude/hooks/translator.py +237 -237
  15. package/.claude/hooks-windows/kokoro-server.py +219 -219
  16. package/.claude/hooks-windows/kokoro-tts.py +107 -107
  17. package/.claude/hooks-windows/play-tts.ps1 +17 -0
  18. package/.claude/hooks-windows/soprano-gradio-synth.py +153 -153
  19. package/.claude/verbosity.txt +1 -1
  20. package/.clawdbot/README.md +105 -105
  21. package/CLAUDE.md +84 -176
  22. package/README.md +27 -2
  23. package/RELEASE_NOTES.md +86 -0
  24. package/WINDOWS-SETUP.md +208 -208
  25. package/bin/agent-vibes +39 -39
  26. package/bin/mcp-server.js +121 -121
  27. package/bin/test-bmad-pr +78 -78
  28. package/mcp-server/QUICK_START.md +203 -203
  29. package/mcp-server/README.md +345 -345
  30. package/mcp-server/examples/claude_desktop_config.json +11 -11
  31. package/mcp-server/examples/claude_desktop_config_piper.json +9 -9
  32. package/mcp-server/examples/custom_instructions.md +169 -169
  33. package/mcp-server/install-deps.js +12 -2
  34. package/mcp-server/server.py +2111 -2085
  35. package/mcp-server/test_mcp_correctness.py +504 -504
  36. package/mcp-server/test_windows_script_parity.py +339 -339
  37. package/package.json +7 -4
  38. package/setup-ssh-receiver.ps1 +259 -0
  39. package/setup-windows.ps1 +39 -29
  40. package/src/cli/list-personalities.js +110 -110
  41. package/src/commands/bmad-voices.js +394 -394
  42. package/src/console/brand-colors.js +13 -13
  43. package/src/console/constants/personalities.js +44 -44
  44. package/src/console/tabs/agents-tab.js +14 -4
  45. package/src/console/tabs/help-tab.js +314 -314
  46. package/src/console/tabs/readme-tab.js +272 -272
  47. package/src/console/tabs/settings-tab.js +31 -6
  48. package/src/console/tabs/setup-tab.js +154 -32
  49. package/src/console/tabs/voices-tab.js +48 -6
  50. package/src/console/widgets/destroy-list.js +25 -25
  51. package/src/console/widgets/notice.js +55 -55
  52. package/src/installer/language-screen.js +31 -31
  53. package/src/installer/music-file-input.js +304 -304
  54. package/src/installer.js +103 -43
  55. package/src/services/language-service.js +47 -47
  56. package/src/services/llm-provider-service.js +4 -1
  57. package/src/services/provider-voice-catalog.js +9 -5
  58. package/src/utils/audio-format-validator.js +277 -277
  59. package/src/utils/dependency-checker.js +469 -469
  60. package/src/utils/file-ownership-verifier.js +358 -358
  61. package/src/utils/music-file-validator.js +285 -285
  62. package/src/utils/preview-list-prompt.js +144 -144
  63. package/src/utils/secure-music-storage.js +412 -412
  64. package/templates/agentvibes-receiver.ps1 +311 -0
  65. package/templates/agentvibes-receiver.sh +297 -297
  66. package/voice-assignments.json +8244 -8244
  67. package/.agentvibes/config.json +0 -17
  68. package/.agentvibes/install-manifest.json +0 -342
  69. package/.claude/config/audio-effects.cfg +0 -7
  70. package/.claude/config/audio-effects.cfg.bak-kokoro +0 -7
  71. package/.claude/config/background-music-enabled.txt +0 -1
  72. package/.claude/config/background-music-position.txt +0 -27
  73. package/.claude/config/background-music-volume.txt +0 -1
  74. package/.claude/config/background-music.cfg +0 -1
  75. package/.claude/config/background-music.txt +0 -1
  76. package/.claude/config/language.txt +0 -1
  77. package/.claude/config/personality.txt +0 -1
  78. package/.claude/config/reverb-level.txt +0 -1
  79. package/.claude/config/tts-speech-rate.txt +0 -1
  80. package/.claude/config/tts-verbosity.txt +0 -1
  81. package/.claude/hooks-windows/audio-cache-utils.ps1.user.bak +0 -119
  82. package/.claude/hooks-windows/soprano-gradio-synth.py.user.bak +0 -153
@@ -1,285 +1,285 @@
1
- /**
2
- * Music File Validator - Security-Critical Path and File Validation
3
- * Story 4.1: Path Validation and Security Hardening
4
- *
5
- * CRITICAL: All functions enforce CLAUDE.md security requirements:
6
- * - Use path.resolve() for all path operations
7
- * - Verify file ownership before processing external files
8
- * - Prevent path traversal attacks via traversal patterns, symlinks, etc.
9
- * - Validate file exists, is readable, and owned by current user
10
- *
11
- * @module music-file-validator
12
- * @requires fs
13
- * @requires path
14
- * @requires os
15
- */
16
-
17
- import fs from 'node:fs';
18
- import path from 'node:path';
19
- import os from 'node:os';
20
-
21
- /**
22
- * Story 4.1: Validate that a file path is safe and within user's home directory
23
- *
24
- * Security checks:
25
- * 1. Resolves path to absolute form (prevents ../ tricks)
26
- * 2. Validates path is within home directory
27
- * 3. Rejects symlinks pointing outside home
28
- * 4. Verifies file ownership matches current user
29
- * 5. Checks file is readable
30
- *
31
- * @param {string} userPath - Path provided by user (absolute or relative)
32
- * @param {string} userHomeDir - User's home directory (default: process.env.HOME)
33
- * @returns {Object} { isValid: boolean, error: string|null, resolvedPath: string|null }
34
- * @throws {Error} If path validation encounters unexpected errors
35
- */
36
- export function isPathSafe(userPath, userHomeDir = null) {
37
- try {
38
- // Parameter validation
39
- if (!userPath || typeof userPath !== 'string') {
40
- return {
41
- isValid: false,
42
- error: 'Path must be a non-empty string',
43
- resolvedPath: null
44
- };
45
- }
46
-
47
- // Use provided home dir or default to environment
48
- const homeDir = userHomeDir || (process.env.HOME || process.env.USERPROFILE);
49
- if (!homeDir) {
50
- return {
51
- isValid: false,
52
- error: 'Unable to determine home directory',
53
- resolvedPath: null
54
- };
55
- }
56
-
57
- // CRITICAL: Use path.resolve() to get absolute path (CLAUDE.md requirement)
58
- // This prevents directory traversal attacks like "../../etc/passwd"
59
- const resolvedPath = path.resolve(userPath);
60
- const resolvedHome = path.resolve(homeDir);
61
-
62
- // Check if path is within home directory
63
- // Must either match exactly OR start with home + separator (prevents /home/user2 bypass)
64
- const isWithinHome = resolvedPath === resolvedHome ||
65
- resolvedPath.startsWith(resolvedHome + path.sep);
66
-
67
- if (!isWithinHome) {
68
- return {
69
- isValid: false,
70
- error: `Security validation failed: path must be within home directory (${resolvedHome})`,
71
- resolvedPath: null
72
- };
73
- }
74
-
75
- // SECURITY: Use lstatSync first to detect symlinks before following them (#131)
76
- let lstats;
77
- try {
78
- lstats = fs.lstatSync(resolvedPath);
79
- } catch (err) {
80
- if (err.code === 'ENOENT') {
81
- return { isValid: false, error: `File not found: ${userPath}`, resolvedPath: null };
82
- }
83
- return { isValid: false, error: `Cannot access file: ${err.message}`, resolvedPath: null };
84
- }
85
-
86
- // Check if symlink - if so, verify target is also within home directory
87
- if (lstats.isSymbolicLink()) {
88
- try {
89
- const targetPath = fs.realpathSync(resolvedPath);
90
- const isTargetWithinHome = targetPath === resolvedHome ||
91
- targetPath.startsWith(resolvedHome + path.sep);
92
-
93
- if (!isTargetWithinHome) {
94
- return {
95
- isValid: false,
96
- error: 'Security validation failed: symlink target must be within home directory',
97
- resolvedPath: null
98
- };
99
- }
100
- } catch (err) {
101
- return {
102
- isValid: false,
103
- error: `Failed to resolve symlink: ${err.message}`,
104
- resolvedPath: null
105
- };
106
- }
107
- }
108
-
109
- // Get file stats (follows symlinks for regular file check)
110
- const stats = fs.statSync(resolvedPath);
111
-
112
- // Check if it's a regular file (not directory, special file, etc)
113
- if (!stats.isFile()) {
114
- return {
115
- isValid: false,
116
- error: `Path must be a regular file, not a ${stats.isDirectory() ? 'directory' : 'special file'}`,
117
- resolvedPath: null
118
- };
119
- }
120
-
121
- // CRITICAL: Verify file ownership (CLAUDE.md requirement)
122
- // Prevent other users from planting malicious files
123
- // SECURITY: Fail-secure on platforms where getuid is unavailable (#131)
124
- const currentUserId = process.getuid ? process.getuid() : null;
125
- if (currentUserId === null) {
126
- return {
127
- isValid: false,
128
- error: 'Security validation failed: unable to verify file ownership on this platform',
129
- resolvedPath: null
130
- };
131
- }
132
- if (stats.uid !== currentUserId) {
133
- return {
134
- isValid: false,
135
- error: 'Security validation failed: file not owned by current user',
136
- resolvedPath: null
137
- };
138
- }
139
-
140
- // Check if file is readable
141
- try {
142
- fs.accessSync(resolvedPath, fs.constants.R_OK);
143
- } catch (err) {
144
- return {
145
- isValid: false,
146
- error: `File is not readable: ${err.message}`,
147
- resolvedPath: null
148
- };
149
- }
150
-
151
- // All checks passed
152
- return {
153
- isValid: true,
154
- error: null,
155
- resolvedPath
156
- };
157
-
158
- } catch (err) {
159
- // Unexpected error during validation
160
- return {
161
- isValid: false,
162
- error: `Unexpected validation error: ${err.message}`,
163
- resolvedPath: null
164
- };
165
- }
166
- }
167
-
168
- /**
169
- * Verify file size is within acceptable limits for music files
170
- *
171
- * @param {string} filePath - Path to file (must already be validated with isPathSafe)
172
- * @param {number} maxSizeBytes - Maximum file size in bytes (default: 50MB)
173
- * @returns {Object} { isValid: boolean, error: string|null, sizeBytes: number }
174
- */
175
- export function validateFileSize(filePath, maxSizeBytes = 50 * 1024 * 1024) {
176
- try {
177
- if (!fs.existsSync(filePath)) {
178
- return {
179
- isValid: false,
180
- error: 'File does not exist',
181
- sizeBytes: 0
182
- };
183
- }
184
-
185
- const stats = fs.statSync(filePath);
186
- const sizeBytes = stats.size;
187
-
188
- if (sizeBytes > maxSizeBytes) {
189
- const sizeMB = (sizeBytes / 1024 / 1024).toFixed(2);
190
- const maxMB = (maxSizeBytes / 1024 / 1024).toFixed(2);
191
- return {
192
- isValid: false,
193
- error: `File size (${sizeMB}MB) exceeds maximum (${maxMB}MB)`,
194
- sizeBytes
195
- };
196
- }
197
-
198
- if (sizeBytes === 0) {
199
- return {
200
- isValid: false,
201
- error: 'File is empty',
202
- sizeBytes
203
- };
204
- }
205
-
206
- return {
207
- isValid: true,
208
- error: null,
209
- sizeBytes
210
- };
211
-
212
- } catch (err) {
213
- return {
214
- isValid: false,
215
- error: `Error checking file size: ${err.message}`,
216
- sizeBytes: 0
217
- };
218
- }
219
- }
220
-
221
- /**
222
- * Get secure temp directory for audio file operations
223
- * Uses XDG_RUNTIME_DIR if available (follows CLAUDE.md requirement)
224
- * Falls back to user-specific /tmp directory
225
- *
226
- * @param {string} prefix - Directory name prefix (default: 'agentvibes-music')
227
- * @returns {string} Secure temp directory path
228
- */
229
- export function getSecureTempDir(prefix = 'agentvibes-music') {
230
- const xdgRuntime = process.env.XDG_RUNTIME_DIR;
231
-
232
- if (xdgRuntime && fs.existsSync(xdgRuntime)) {
233
- return path.join(xdgRuntime, `${prefix}-${process.pid}`);
234
- }
235
-
236
- // Fallback to user-specific /tmp
237
- const userTmp = path.join(os.tmpdir(), `${prefix}-${process.env.USER || 'user'}`);
238
- return userTmp;
239
- }
240
-
241
- /**
242
- * Create secure temp directory with restrictive permissions
243
- *
244
- * @param {string} dirPath - Directory path to create
245
- * @returns {Object} { success: boolean, error: string|null, dirPath: string|null }
246
- */
247
- export function createSecureTempDir(dirPath) {
248
- try {
249
- // Create directory if it doesn't exist
250
- if (!fs.existsSync(dirPath)) {
251
- fs.mkdirSync(dirPath, { recursive: true, mode: 0o700 });
252
- } else {
253
- // If exists, verify permissions are restrictive
254
- const stats = fs.statSync(dirPath);
255
- // Check if world-readable (mode & 0o077 should be 0 for secure)
256
- if ((stats.mode & 0o077) !== 0) {
257
- return {
258
- success: false,
259
- error: 'Temp directory has insecure permissions',
260
- dirPath: null
261
- };
262
- }
263
- }
264
-
265
- return {
266
- success: true,
267
- error: null,
268
- dirPath
269
- };
270
-
271
- } catch (err) {
272
- return {
273
- success: false,
274
- error: `Failed to create secure temp directory: ${err.message}`,
275
- dirPath: null
276
- };
277
- }
278
- }
279
-
280
- export default {
281
- isPathSafe,
282
- validateFileSize,
283
- getSecureTempDir,
284
- createSecureTempDir
285
- };
1
+ /**
2
+ * Music File Validator - Security-Critical Path and File Validation
3
+ * Story 4.1: Path Validation and Security Hardening
4
+ *
5
+ * CRITICAL: All functions enforce CLAUDE.md security requirements:
6
+ * - Use path.resolve() for all path operations
7
+ * - Verify file ownership before processing external files
8
+ * - Prevent path traversal attacks via traversal patterns, symlinks, etc.
9
+ * - Validate file exists, is readable, and owned by current user
10
+ *
11
+ * @module music-file-validator
12
+ * @requires fs
13
+ * @requires path
14
+ * @requires os
15
+ */
16
+
17
+ import fs from 'node:fs';
18
+ import path from 'node:path';
19
+ import os from 'node:os';
20
+
21
+ /**
22
+ * Story 4.1: Validate that a file path is safe and within user's home directory
23
+ *
24
+ * Security checks:
25
+ * 1. Resolves path to absolute form (prevents ../ tricks)
26
+ * 2. Validates path is within home directory
27
+ * 3. Rejects symlinks pointing outside home
28
+ * 4. Verifies file ownership matches current user
29
+ * 5. Checks file is readable
30
+ *
31
+ * @param {string} userPath - Path provided by user (absolute or relative)
32
+ * @param {string} userHomeDir - User's home directory (default: process.env.HOME)
33
+ * @returns {Object} { isValid: boolean, error: string|null, resolvedPath: string|null }
34
+ * @throws {Error} If path validation encounters unexpected errors
35
+ */
36
+ export function isPathSafe(userPath, userHomeDir = null) {
37
+ try {
38
+ // Parameter validation
39
+ if (!userPath || typeof userPath !== 'string') {
40
+ return {
41
+ isValid: false,
42
+ error: 'Path must be a non-empty string',
43
+ resolvedPath: null
44
+ };
45
+ }
46
+
47
+ // Use provided home dir or default to environment
48
+ const homeDir = userHomeDir || (process.env.HOME || process.env.USERPROFILE);
49
+ if (!homeDir) {
50
+ return {
51
+ isValid: false,
52
+ error: 'Unable to determine home directory',
53
+ resolvedPath: null
54
+ };
55
+ }
56
+
57
+ // CRITICAL: Use path.resolve() to get absolute path (CLAUDE.md requirement)
58
+ // This prevents directory traversal attacks like "../../etc/passwd"
59
+ const resolvedPath = path.resolve(userPath);
60
+ const resolvedHome = path.resolve(homeDir);
61
+
62
+ // Check if path is within home directory
63
+ // Must either match exactly OR start with home + separator (prevents /home/user2 bypass)
64
+ const isWithinHome = resolvedPath === resolvedHome ||
65
+ resolvedPath.startsWith(resolvedHome + path.sep);
66
+
67
+ if (!isWithinHome) {
68
+ return {
69
+ isValid: false,
70
+ error: `Security validation failed: path must be within home directory (${resolvedHome})`,
71
+ resolvedPath: null
72
+ };
73
+ }
74
+
75
+ // SECURITY: Use lstatSync first to detect symlinks before following them (#131)
76
+ let lstats;
77
+ try {
78
+ lstats = fs.lstatSync(resolvedPath);
79
+ } catch (err) {
80
+ if (err.code === 'ENOENT') {
81
+ return { isValid: false, error: `File not found: ${userPath}`, resolvedPath: null };
82
+ }
83
+ return { isValid: false, error: `Cannot access file: ${err.message}`, resolvedPath: null };
84
+ }
85
+
86
+ // Check if symlink - if so, verify target is also within home directory
87
+ if (lstats.isSymbolicLink()) {
88
+ try {
89
+ const targetPath = fs.realpathSync(resolvedPath);
90
+ const isTargetWithinHome = targetPath === resolvedHome ||
91
+ targetPath.startsWith(resolvedHome + path.sep);
92
+
93
+ if (!isTargetWithinHome) {
94
+ return {
95
+ isValid: false,
96
+ error: 'Security validation failed: symlink target must be within home directory',
97
+ resolvedPath: null
98
+ };
99
+ }
100
+ } catch (err) {
101
+ return {
102
+ isValid: false,
103
+ error: `Failed to resolve symlink: ${err.message}`,
104
+ resolvedPath: null
105
+ };
106
+ }
107
+ }
108
+
109
+ // Get file stats (follows symlinks for regular file check)
110
+ const stats = fs.statSync(resolvedPath);
111
+
112
+ // Check if it's a regular file (not directory, special file, etc)
113
+ if (!stats.isFile()) {
114
+ return {
115
+ isValid: false,
116
+ error: `Path must be a regular file, not a ${stats.isDirectory() ? 'directory' : 'special file'}`,
117
+ resolvedPath: null
118
+ };
119
+ }
120
+
121
+ // CRITICAL: Verify file ownership (CLAUDE.md requirement)
122
+ // Prevent other users from planting malicious files
123
+ // SECURITY: Fail-secure on platforms where getuid is unavailable (#131)
124
+ const currentUserId = process.getuid ? process.getuid() : null;
125
+ if (currentUserId === null) {
126
+ return {
127
+ isValid: false,
128
+ error: 'Security validation failed: unable to verify file ownership on this platform',
129
+ resolvedPath: null
130
+ };
131
+ }
132
+ if (stats.uid !== currentUserId) {
133
+ return {
134
+ isValid: false,
135
+ error: 'Security validation failed: file not owned by current user',
136
+ resolvedPath: null
137
+ };
138
+ }
139
+
140
+ // Check if file is readable
141
+ try {
142
+ fs.accessSync(resolvedPath, fs.constants.R_OK);
143
+ } catch (err) {
144
+ return {
145
+ isValid: false,
146
+ error: `File is not readable: ${err.message}`,
147
+ resolvedPath: null
148
+ };
149
+ }
150
+
151
+ // All checks passed
152
+ return {
153
+ isValid: true,
154
+ error: null,
155
+ resolvedPath
156
+ };
157
+
158
+ } catch (err) {
159
+ // Unexpected error during validation
160
+ return {
161
+ isValid: false,
162
+ error: `Unexpected validation error: ${err.message}`,
163
+ resolvedPath: null
164
+ };
165
+ }
166
+ }
167
+
168
+ /**
169
+ * Verify file size is within acceptable limits for music files
170
+ *
171
+ * @param {string} filePath - Path to file (must already be validated with isPathSafe)
172
+ * @param {number} maxSizeBytes - Maximum file size in bytes (default: 50MB)
173
+ * @returns {Object} { isValid: boolean, error: string|null, sizeBytes: number }
174
+ */
175
+ export function validateFileSize(filePath, maxSizeBytes = 50 * 1024 * 1024) {
176
+ try {
177
+ if (!fs.existsSync(filePath)) {
178
+ return {
179
+ isValid: false,
180
+ error: 'File does not exist',
181
+ sizeBytes: 0
182
+ };
183
+ }
184
+
185
+ const stats = fs.statSync(filePath);
186
+ const sizeBytes = stats.size;
187
+
188
+ if (sizeBytes > maxSizeBytes) {
189
+ const sizeMB = (sizeBytes / 1024 / 1024).toFixed(2);
190
+ const maxMB = (maxSizeBytes / 1024 / 1024).toFixed(2);
191
+ return {
192
+ isValid: false,
193
+ error: `File size (${sizeMB}MB) exceeds maximum (${maxMB}MB)`,
194
+ sizeBytes
195
+ };
196
+ }
197
+
198
+ if (sizeBytes === 0) {
199
+ return {
200
+ isValid: false,
201
+ error: 'File is empty',
202
+ sizeBytes
203
+ };
204
+ }
205
+
206
+ return {
207
+ isValid: true,
208
+ error: null,
209
+ sizeBytes
210
+ };
211
+
212
+ } catch (err) {
213
+ return {
214
+ isValid: false,
215
+ error: `Error checking file size: ${err.message}`,
216
+ sizeBytes: 0
217
+ };
218
+ }
219
+ }
220
+
221
+ /**
222
+ * Get secure temp directory for audio file operations
223
+ * Uses XDG_RUNTIME_DIR if available (follows CLAUDE.md requirement)
224
+ * Falls back to user-specific /tmp directory
225
+ *
226
+ * @param {string} prefix - Directory name prefix (default: 'agentvibes-music')
227
+ * @returns {string} Secure temp directory path
228
+ */
229
+ export function getSecureTempDir(prefix = 'agentvibes-music') {
230
+ const xdgRuntime = process.env.XDG_RUNTIME_DIR;
231
+
232
+ if (xdgRuntime && fs.existsSync(xdgRuntime)) {
233
+ return path.join(xdgRuntime, `${prefix}-${process.pid}`);
234
+ }
235
+
236
+ // Fallback to user-specific /tmp
237
+ const userTmp = path.join(os.tmpdir(), `${prefix}-${process.env.USER || 'user'}`);
238
+ return userTmp;
239
+ }
240
+
241
+ /**
242
+ * Create secure temp directory with restrictive permissions
243
+ *
244
+ * @param {string} dirPath - Directory path to create
245
+ * @returns {Object} { success: boolean, error: string|null, dirPath: string|null }
246
+ */
247
+ export function createSecureTempDir(dirPath) {
248
+ try {
249
+ // Create directory if it doesn't exist
250
+ if (!fs.existsSync(dirPath)) {
251
+ fs.mkdirSync(dirPath, { recursive: true, mode: 0o700 });
252
+ } else {
253
+ // If exists, verify permissions are restrictive
254
+ const stats = fs.statSync(dirPath);
255
+ // Check if world-readable (mode & 0o077 should be 0 for secure)
256
+ if ((stats.mode & 0o077) !== 0) {
257
+ return {
258
+ success: false,
259
+ error: 'Temp directory has insecure permissions',
260
+ dirPath: null
261
+ };
262
+ }
263
+ }
264
+
265
+ return {
266
+ success: true,
267
+ error: null,
268
+ dirPath
269
+ };
270
+
271
+ } catch (err) {
272
+ return {
273
+ success: false,
274
+ error: `Failed to create secure temp directory: ${err.message}`,
275
+ dirPath: null
276
+ };
277
+ }
278
+ }
279
+
280
+ export default {
281
+ isPathSafe,
282
+ validateFileSize,
283
+ getSecureTempDir,
284
+ createSecureTempDir
285
+ };