ai-terminal-remote-bot 1.0.0 → 1.0.2

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": "ai-terminal-remote-bot",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Secure remote terminal bot with Claude Code integration",
5
5
  "type": "module",
6
6
  "bin": {
@@ -29,6 +29,7 @@ export class MediaModule {
29
29
  throw new Error('Path traversal detected.');
30
30
  }
31
31
 
32
+ fs.mkdirSync(resolvedDir, { recursive: true });
32
33
  fs.writeFileSync(resolved, buffer);
33
34
  return resolved;
34
35
  }