@getcatalystiq/agent-plane-ui 0.1.25 → 0.1.27

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.
@@ -1,11 +1,11 @@
1
1
  'use strict';
2
2
 
3
- var chunk7NGE4WHD_cjs = require('./chunk-7NGE4WHD.cjs');
3
+ var chunk7EBIKKRM_cjs = require('./chunk-7EBIKKRM.cjs');
4
4
  require('./chunk-XXF4U7WL.cjs');
5
5
 
6
6
 
7
7
 
8
8
  Object.defineProperty(exports, "AgentIdentityTab", {
9
9
  enumerable: true,
10
- get: function () { return chunk7NGE4WHD_cjs.AgentIdentityTab; }
10
+ get: function () { return chunk7EBIKKRM_cjs.AgentIdentityTab; }
11
11
  });
@@ -0,0 +1,2 @@
1
+ export { AgentIdentityTab } from './chunk-UMNJ5SV6.js';
2
+ import './chunk-XFI227OB.js';
@@ -105,13 +105,15 @@ function AgentIdentityTab({
105
105
  setError("");
106
106
  try {
107
107
  const data = await onExportSoul();
108
- const blob = new Blob([JSON.stringify(data, null, 2)], {
108
+ const slug = (data.name || "soulspec").toLowerCase().replace(/[^a-z0-9]+/g, "-");
109
+ const exportPayload = data.manifest ? { manifest: data.manifest, files: data.files } : { files: data.files };
110
+ const blob = new Blob([JSON.stringify(exportPayload, null, 2)], {
109
111
  type: "application/json"
110
112
  });
111
113
  const url = URL.createObjectURL(blob);
112
114
  const a = document.createElement("a");
113
115
  a.href = url;
114
- a.download = `${data.name || "soulspec"}.json`;
116
+ a.download = `${slug}-soul.json`;
115
117
  a.click();
116
118
  URL.revokeObjectURL(url);
117
119
  } catch (err) {
@@ -103,13 +103,15 @@ function AgentIdentityTab({
103
103
  setError("");
104
104
  try {
105
105
  const data = await onExportSoul();
106
- const blob = new Blob([JSON.stringify(data, null, 2)], {
106
+ const slug = (data.name || "soulspec").toLowerCase().replace(/[^a-z0-9]+/g, "-");
107
+ const exportPayload = data.manifest ? { manifest: data.manifest, files: data.files } : { files: data.files };
108
+ const blob = new Blob([JSON.stringify(exportPayload, null, 2)], {
107
109
  type: "application/json"
108
110
  });
109
111
  const url = URL.createObjectURL(blob);
110
112
  const a = document.createElement("a");
111
113
  a.href = url;
112
- a.download = `${data.name || "soulspec"}.json`;
114
+ a.download = `${slug}-soul.json`;
113
115
  a.click();
114
116
  URL.revokeObjectURL(url);
115
117
  } catch (err) {
package/dist/editor.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  var chunkVZ43ATC5_cjs = require('./chunk-VZ43ATC5.cjs');
4
- var chunk7NGE4WHD_cjs = require('./chunk-7NGE4WHD.cjs');
4
+ var chunk7EBIKKRM_cjs = require('./chunk-7EBIKKRM.cjs');
5
5
  var chunkXXF4U7WL_cjs = require('./chunk-XXF4U7WL.cjs');
6
6
  var react = require('react');
7
7
  var CodeMirror = require('@uiw/react-codemirror');
@@ -187,6 +187,6 @@ Object.defineProperty(exports, "FileTreeEditor", {
187
187
  });
188
188
  Object.defineProperty(exports, "AgentIdentityTab", {
189
189
  enumerable: true,
190
- get: function () { return chunk7NGE4WHD_cjs.AgentIdentityTab; }
190
+ get: function () { return chunk7EBIKKRM_cjs.AgentIdentityTab; }
191
191
  });
192
192
  exports.PluginEditorPage = PluginEditorPage;
package/dist/editor.d.cts CHANGED
@@ -67,8 +67,9 @@ interface AgentIdentityTabProps {
67
67
  onImportSoul?: (ref: string) => Promise<{
68
68
  files: Record<string, string>;
69
69
  }>;
70
- /** Export the current SoulSpec as JSON. Returns file map + agent name. */
70
+ /** Export the current SoulSpec as JSON. Returns manifest + file map + agent name. */
71
71
  onExportSoul?: () => Promise<{
72
+ manifest?: Record<string, unknown>;
72
73
  files: Record<string, string>;
73
74
  name: string;
74
75
  }>;
package/dist/editor.d.ts CHANGED
@@ -67,8 +67,9 @@ interface AgentIdentityTabProps {
67
67
  onImportSoul?: (ref: string) => Promise<{
68
68
  files: Record<string, string>;
69
69
  }>;
70
- /** Export the current SoulSpec as JSON. Returns file map + agent name. */
70
+ /** Export the current SoulSpec as JSON. Returns manifest + file map + agent name. */
71
71
  onExportSoul?: () => Promise<{
72
+ manifest?: Record<string, unknown>;
72
73
  files: Record<string, string>;
73
74
  name: string;
74
75
  }>;
package/dist/editor.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { useApi, Skeleton, FileTreeEditor, Card, CardHeader, CardTitle, CardContent } from './chunk-CE2RHDPY.js';
2
2
  export { FileTreeEditor } from './chunk-CE2RHDPY.js';
3
- export { AgentIdentityTab } from './chunk-GFFQIJPU.js';
3
+ export { AgentIdentityTab } from './chunk-UMNJ5SV6.js';
4
4
  import { useNavigation, useAgentPlaneClient, Badge, Button } from './chunk-XFI227OB.js';
5
5
  import { useState, useCallback } from 'react';
6
6
  import CodeMirror from '@uiw/react-codemirror';
package/dist/index.cjs CHANGED
@@ -4069,7 +4069,7 @@ function AgentA2aInfo({
4069
4069
  ] })
4070
4070
  ] });
4071
4071
  }
4072
- var AgentIdentityTab = React.lazy(() => import('./agent-identity-tab-AL2SL3CR.cjs').then((m) => ({ default: m.AgentIdentityTab })));
4072
+ var AgentIdentityTab = React.lazy(() => import('./agent-identity-tab-HADOCEAN.cjs').then((m) => ({ default: m.AgentIdentityTab })));
4073
4073
  function AgentDetailPage({ agentId, a2aBaseUrl, tenantSlug, adminApiBaseUrl, adminApiKey }) {
4074
4074
  const { LinkComponent, basePath } = chunkXXF4U7WL_cjs.useNavigation();
4075
4075
  const { mutate } = swr.useSWRConfig();
@@ -4114,7 +4114,7 @@ function AgentDetailPage({ agentId, a2aBaseUrl, tenantSlug, adminApiBaseUrl, adm
4114
4114
  },
4115
4115
  onExportSoul: async () => {
4116
4116
  const result = await adminFetch(`/api/agents/${agentId}/export-soul`);
4117
- return { files: result.files, name: agent?.name ?? "agent" };
4117
+ return { manifest: result.manifest, files: result.files, name: result.manifest?.name ?? agent?.name ?? "agent" };
4118
4118
  },
4119
4119
  onPublishSoul: async (owner) => {
4120
4120
  await adminFetch(`/api/agents/${agentId}/publish-soul`, {
package/dist/index.js CHANGED
@@ -4045,7 +4045,7 @@ function AgentA2aInfo({
4045
4045
  ] })
4046
4046
  ] });
4047
4047
  }
4048
- var AgentIdentityTab = lazy(() => import('./agent-identity-tab-6T672HO7.js').then((m) => ({ default: m.AgentIdentityTab })));
4048
+ var AgentIdentityTab = lazy(() => import('./agent-identity-tab-LROKQ7HM.js').then((m) => ({ default: m.AgentIdentityTab })));
4049
4049
  function AgentDetailPage({ agentId, a2aBaseUrl, tenantSlug, adminApiBaseUrl, adminApiKey }) {
4050
4050
  const { LinkComponent, basePath } = useNavigation();
4051
4051
  const { mutate } = useSWRConfig();
@@ -4090,7 +4090,7 @@ function AgentDetailPage({ agentId, a2aBaseUrl, tenantSlug, adminApiBaseUrl, adm
4090
4090
  },
4091
4091
  onExportSoul: async () => {
4092
4092
  const result = await adminFetch(`/api/agents/${agentId}/export-soul`);
4093
- return { files: result.files, name: agent?.name ?? "agent" };
4093
+ return { manifest: result.manifest, files: result.files, name: result.manifest?.name ?? agent?.name ?? "agent" };
4094
4094
  },
4095
4095
  onPublishSoul: async (owner) => {
4096
4096
  await adminFetch(`/api/agents/${agentId}/publish-soul`, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getcatalystiq/agent-plane-ui",
3
- "version": "0.1.25",
3
+ "version": "0.1.27",
4
4
  "description": "Embeddable React component library for AgentPlane",
5
5
  "type": "module",
6
6
  "exports": {
@@ -1,2 +0,0 @@
1
- export { AgentIdentityTab } from './chunk-GFFQIJPU.js';
2
- import './chunk-XFI227OB.js';