@surf-kit/agent 0.2.0 → 0.2.1

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.js CHANGED
@@ -2355,8 +2355,8 @@ var container = cva(
2355
2355
  {
2356
2356
  variants: {
2357
2357
  status: {
2358
- pending: "border-neutral-200 bg-neutral-50",
2359
- running: "border-sky-200 bg-sky-50",
2358
+ pending: "border-border bg-surface",
2359
+ running: "border-status-info-subtle bg-status-info-subtle/30",
2360
2360
  success: "border-status-success-subtle bg-status-success-subtle/30",
2361
2361
  error: "border-status-error-subtle bg-status-error-subtle/30"
2362
2362
  }
@@ -2446,7 +2446,7 @@ function MCPToolCall({ call, isExpanded = false, onToggleExpand, className }) {
2446
2446
  /* @__PURE__ */ jsx39(
2447
2447
  "pre",
2448
2448
  {
2449
- className: "text-xs font-mono text-text-primary bg-neutral-100 rounded p-2 overflow-x-auto whitespace-pre-wrap",
2449
+ className: "text-xs font-mono text-text-primary bg-surface-sunken rounded p-2 overflow-x-auto whitespace-pre-wrap",
2450
2450
  "data-testid": "mcp-tool-result",
2451
2451
  children: typeof call.result === "string" ? call.result : JSON.stringify(call.result, null, 2)
2452
2452
  }
@@ -2524,7 +2524,7 @@ function MCPResourceView({ resource, className }) {
2524
2524
  ) : isTextMime(mimeType) ? /* @__PURE__ */ jsx40(
2525
2525
  "pre",
2526
2526
  {
2527
- className: "text-xs font-mono text-text-primary bg-neutral-100 rounded p-2 overflow-x-auto whitespace-pre-wrap",
2527
+ className: "text-xs font-mono text-text-primary bg-surface-sunken rounded p-2 overflow-x-auto whitespace-pre-wrap",
2528
2528
  "data-testid": "mcp-resource-code",
2529
2529
  children: typeof content === "string" ? content : "[Binary data]"
2530
2530
  }