@ian2018cs/agenthub 0.1.68 → 0.1.69

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/dist/index.html CHANGED
@@ -25,7 +25,7 @@
25
25
 
26
26
  <!-- Prevent zoom on iOS -->
27
27
  <meta name="format-detection" content="telephone=no" />
28
- <script type="module" crossorigin src="/assets/index-C9BhBQzI.js"></script>
28
+ <script type="module" crossorigin src="/assets/index-u5cEXvaS.js"></script>
29
29
  <link rel="modulepreload" crossorigin href="/assets/vendor-react-Bv0Nkan8.js">
30
30
  <link rel="modulepreload" crossorigin href="/assets/vendor-codemirror-sVRjxPVQ.js">
31
31
  <link rel="modulepreload" crossorigin href="/assets/vendor-utils-00TdZexr.js">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ian2018cs/agenthub",
3
- "version": "0.1.68",
3
+ "version": "0.1.69",
4
4
  "description": "A web-based UI for AI Agents",
5
5
  "type": "module",
6
6
  "main": "server/index.js",
@@ -794,7 +794,7 @@ router.post('/submit', async (req, res) => {
794
794
 
795
795
  // Save ZIP to disk
796
796
  const publicPaths = getPublicPaths();
797
- const userSubmitDir = path.join(publicPaths.agentSubmissionsDir, String(userId));
797
+ const userSubmitDir = path.join(publicPaths.agentSubmissionsDir, userUuid);
798
798
  await fs.mkdir(userSubmitDir, { recursive: true });
799
799
 
800
800
  const timestamp = Date.now();