@agent-native/core 0.79.15 → 0.79.17

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/corpus/README.md CHANGED
@@ -28,4 +28,4 @@ rg -n "defineAction|useActionQuery" node_modules/@agent-native/core/corpus
28
28
  ## Generated Counts
29
29
 
30
30
  - core files: 2030
31
- - template files: 4398
31
+ - template files: 4399
@@ -1,5 +1,17 @@
1
1
  # @agent-native/core
2
2
 
3
+ ## 0.79.17
4
+
5
+ ### Patch Changes
6
+
7
+ - fed6702: Polish shared shell drawer edge borders during depth transitions.
8
+
9
+ ## 0.79.16
10
+
11
+ ### Patch Changes
12
+
13
+ - 5bf3efe: Fix Cloudflare Pages worker builds for content actions that import Node built-in helpers, and refine shared shell depth styling.
14
+
3
15
  ## 0.79.15
4
16
 
5
17
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-native/core",
3
- "version": "0.79.15",
3
+ "version": "0.79.17",
4
4
  "description": "Framework for agent-native application development — where AI agents and UI share SQL state, actions, and context",
5
5
  "homepage": "https://github.com/BuilderIO/agent-native#readme",
6
6
  "bugs": {
@@ -184,7 +184,7 @@ type AgentPanelStyle = React.CSSProperties & {
184
184
  "--agent-sidebar-width"?: string;
185
185
  };
186
186
  const AGENT_PANEL_HEADER_CLASS =
187
- "relative z-[240] flex h-12 shrink-0 items-center justify-between gap-2 border-b border-border";
187
+ "agent-native-shell-topbar relative z-[240] flex h-12 shrink-0 items-center justify-between gap-2 border-b border-border";
188
188
  const AGENT_PANEL_HEADER_STYLE = {
189
189
  paddingLeft: 8,
190
190
  paddingRight: 8,
@@ -1880,8 +1880,7 @@ function ResizeHandle({
1880
1880
  <div
1881
1881
  ref={ref}
1882
1882
  className={cn(
1883
- "relative z-20 shrink-0 w-px touch-none select-none transition-colors",
1884
- "bg-border hover:bg-accent active:bg-accent",
1883
+ "agent-sidebar-resize-handle relative z-20 w-px shrink-0 touch-none select-none bg-transparent transition-colors hover:bg-border active:bg-border",
1885
1884
  )}
1886
1885
  style={{ cursor: "col-resize" }}
1887
1886
  />
@@ -312,6 +312,7 @@ export const CLOUDFLARE_WORKER_NODE_BUILTIN_STUB_MODULES: Record<
312
312
  "copyFile",
313
313
  "cp",
314
314
  "lstat",
315
+ "mkdtemp",
315
316
  "mkdir",
316
317
  "readFile",
317
318
  "readdir",
@@ -362,12 +363,26 @@ export const CLOUDFLARE_WORKER_NODE_BUILTIN_STUB_MODULES: Record<
362
363
  "export const createRequire = () => globalThis.require ?? ((specifier) => { throw new Error('Cannot require: ' + specifier); });",
363
364
  ],
364
365
  ),
365
- net: cloudflareNodeBuiltinStubSource("net", [
366
- "Socket",
367
- "connect",
368
- "createConnection",
369
- "createServer",
370
- ]),
366
+ net: cloudflareNodeBuiltinStubSource(
367
+ "net",
368
+ ["Socket", "connect", "createConnection", "createServer", "isIP"],
369
+ [
370
+ `export const isIP = (value) => {
371
+ const input = String(value ?? "");
372
+ const ipv4Parts = input.split(".");
373
+ if (
374
+ ipv4Parts.length === 4 &&
375
+ ipv4Parts.every((part) => /^\\d{1,3}$/.test(part) && Number(part) >= 0 && Number(part) <= 255)
376
+ ) {
377
+ return 4;
378
+ }
379
+ if (input.includes(":") && /^[0-9A-Fa-f:.]+$/.test(input)) {
380
+ return 6;
381
+ }
382
+ return 0;
383
+ };`,
384
+ ],
385
+ ),
371
386
  os: cloudflareNodeBuiltinStubSource(
372
387
  "os",
373
388
  [
@@ -55,9 +55,10 @@
55
55
  --agent-native-lower-surface: hsl(
56
56
  var(--sidebar-background, var(--background))
57
57
  );
58
- --agent-native-raised-radius: 18px;
59
- --agent-native-raised-shadow-left: -12px 0 28px rgb(0 0 0 / 0.1);
60
- --agent-native-raised-shadow-right: 12px 0 28px rgb(0 0 0 / 0.1);
58
+ --agent-native-raised-border: hsl(var(--border));
59
+ --agent-native-raised-radius: 8px;
60
+ --agent-native-raised-shadow-left: -1px 0 3px rgb(0 0 0 / 0.018);
61
+ --agent-native-raised-shadow-right: 1px 0 3px rgb(0 0 0 / 0.018);
61
62
  background: var(--agent-native-lower-surface);
62
63
  }
63
64
 
@@ -66,9 +67,14 @@
66
67
  .agent-layout-shell {
67
68
  --agent-native-lower-surface: color-mix(
68
69
  in srgb,
69
- hsl(var(--sidebar-background, var(--background))) 94%,
70
+ hsl(var(--sidebar-background, var(--background))) 98%,
70
71
  black
71
72
  );
73
+ --agent-native-raised-border: color-mix(
74
+ in srgb,
75
+ hsl(var(--border)) 84%,
76
+ transparent
77
+ );
72
78
  }
73
79
 
74
80
  .dark .agent-sidebar-shell,
@@ -77,11 +83,9 @@
77
83
  .dark.agent-layout-shell {
78
84
  --agent-native-lower-surface: color-mix(
79
85
  in srgb,
80
- hsl(var(--sidebar-background, var(--background))) 86%,
86
+ hsl(var(--sidebar-background, var(--background))) 94%,
81
87
  black
82
88
  );
83
- --agent-native-raised-shadow-left: -14px 0 32px rgb(0 0 0 / 0.22);
84
- --agent-native-raised-shadow-right: 14px 0 32px rgb(0 0 0 / 0.22);
85
89
  }
86
90
  }
87
91
 
@@ -99,10 +103,25 @@
99
103
  background: var(--agent-native-lower-surface) !important;
100
104
  }
101
105
 
106
+ .agent-layout-shell .agent-layout-left-drawer {
107
+ border-inline-end-color: transparent !important;
108
+ }
109
+
110
+ .agent-layout-shell
111
+ .agent-layout-left-drawer
112
+ > :where(.border-e, .border-r):first-child {
113
+ border-inline-end-color: transparent !important;
114
+ border-right-color: transparent !important;
115
+ }
116
+
102
117
  .agent-sidebar-panel > .agent-sidebar-panel-inner {
103
118
  background: inherit;
104
119
  }
105
120
 
121
+ .agent-sidebar-resize-handle {
122
+ background: transparent;
123
+ }
124
+
106
125
  .agent-layout-main-surface,
107
126
  .agent-sidebar-main-surface {
108
127
  position: relative;
@@ -110,26 +129,45 @@
110
129
  background: hsl(var(--background));
111
130
  transition:
112
131
  border-radius 260ms cubic-bezier(0.32, 0.72, 0, 1),
132
+ border-color 260ms cubic-bezier(0.32, 0.72, 0, 1),
113
133
  box-shadow 260ms cubic-bezier(0.32, 0.72, 0, 1);
114
134
  }
115
135
 
136
+ .agent-layout-shell
137
+ :where(.agent-layout-main-surface, .agent-sidebar-main-surface)
138
+ > :first-child
139
+ > :where(header, div).border-b:first-child,
140
+ .agent-layout-shell
141
+ :where(.agent-layout-main-surface, .agent-sidebar-main-surface)
142
+ > :where(header, div).border-b:first-child,
143
+ .agent-layout-shell
144
+ .agent-layout-left-drawer
145
+ > :where(header, div).border-b:first-child,
146
+ .agent-layout-shell .agent-native-shell-topbar {
147
+ border-bottom-color: transparent !important;
148
+ }
149
+
116
150
  @media (min-width: 768px) {
117
151
  .agent-layout-main-surface,
118
- .agent-layout-shell > .agent-sidebar-shell {
152
+ .agent-layout-shell > .agent-sidebar-shell > .agent-sidebar-main-surface {
119
153
  border-start-start-radius: var(--agent-native-raised-radius);
120
154
  border-end-start-radius: var(--agent-native-raised-radius);
155
+ border-inline-start: 1px solid var(--agent-native-raised-border);
156
+ border-inline-end: 1px solid var(--agent-native-raised-border);
121
157
  box-shadow: var(--agent-native-raised-shadow-left);
122
158
  }
123
159
 
124
160
  .agent-sidebar-main-surface[data-agent-sidebar-main-state="open"][data-agent-sidebar-main-position="right"] {
125
161
  border-start-end-radius: var(--agent-native-raised-radius);
126
162
  border-end-end-radius: var(--agent-native-raised-radius);
163
+ border-inline-end: 1px solid var(--agent-native-raised-border);
127
164
  box-shadow: var(--agent-native-raised-shadow-right);
128
165
  }
129
166
 
130
167
  .agent-sidebar-main-surface[data-agent-sidebar-main-state="open"][data-agent-sidebar-main-position="left"] {
131
168
  border-start-start-radius: var(--agent-native-raised-radius);
132
169
  border-end-start-radius: var(--agent-native-raised-radius);
170
+ border-inline-start: 1px solid var(--agent-native-raised-border);
133
171
  box-shadow: var(--agent-native-raised-shadow-left);
134
172
  }
135
173
  }
@@ -248,7 +248,7 @@ export function LibraryLayout({ children }: LibraryLayoutProps) {
248
248
  scope={recordingScope}
249
249
  browserTabId={getBrowserTabId()}
250
250
  >
251
- <div className="flex h-full w-full">
251
+ <div className="agent-layout-shell flex h-full w-full">
252
252
  {/* Mobile backdrop */}
253
253
  {sidebarOpen && (
254
254
  <div
@@ -260,7 +260,7 @@ export function LibraryLayout({ children }: LibraryLayoutProps) {
260
260
  {/* Left sidebar */}
261
261
  <aside
262
262
  className={cn(
263
- "fixed inset-y-0 start-0 z-50 flex h-full w-[260px] flex-col overflow-hidden border-e border-border bg-sidebar transition-[width,transform] duration-200 ease-out md:static md:z-auto",
263
+ "agent-layout-left-drawer fixed inset-y-0 start-0 z-50 flex h-full w-[260px] flex-col overflow-hidden border-e border-border bg-sidebar transition-[width,transform] duration-200 ease-out md:static md:z-auto",
264
264
  showCollapsedSidebar && "md:w-14",
265
265
  sidebarOpen
266
266
  ? "translate-x-0"
@@ -541,7 +541,7 @@ export function LibraryLayout({ children }: LibraryLayoutProps) {
541
541
  </aside>
542
542
 
543
543
  {/* Main content area */}
544
- <div className="flex min-w-0 flex-1 flex-col">
544
+ <div className="agent-layout-main-surface flex min-w-0 flex-1 flex-col">
545
545
  {!pageOwnsToolbar && (
546
546
  <header className="flex shrink-0 items-center gap-3 border-b border-border px-5 py-3">
547
547
  <button
@@ -0,0 +1,6 @@
1
+ ---
2
+ type: improved
3
+ date: 2026-06-26
4
+ ---
5
+
6
+ The Clips library now matches the shared recessed shell styling.
@@ -1 +1 @@
1
- {"version":3,"file":"AgentPanel.d.ts","sourceRoot":"","sources":["../../src/client/AgentPanel.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"AgentPanel.d.ts","sourceRoot":"","sources":["../../src/client/AgentPanel.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAmBH,OAAO,KASN,MAAM,OAAO,CAAC;AA0Cf,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAW7D,OAAO,KAAK,EACV,gCAAgC,EAChC,0BAA0B,EAC3B,MAAM,4BAA4B,CAAC;AA4DpC,KAAK,SAAS,GAAG,MAAM,GAAG,KAAK,GAAG,WAAW,GAAG,UAAU,CAAC;AAC3D,wBAAgB,iCAAiC,CAC/C,IAAI,EAAE,SAAS,EACf,iBAAiB,EAAE,OAAO,GACzB,SAAS,CAEX;AA0LD,wBAAgB,0BAA0B,CACxC,IAAI,EAAE,gCAAgC,CAAC,MAAM,CAAC,EAC9C,WAAW,EAAE,MAAM;;;;;;EAcpB;AAED,wBAAgB,8BAA8B,CAC5C,IAAI,EAAE,gCAAgC,CAAC,MAAM,CAAC,EAC9C,WAAW,EAAE,MAAM,WAOpB;AAED,wBAAgB,qCAAqC,CACnD,IAAI,EAAE,gCAAgC,CAAC,MAAM,CAAC,EAC9C,WAAW,EAAE,MAAM,EACnB,qBAAqB,EAAE,MAAM,WAO9B;AAED,wBAAgB,6BAA6B,CAAC,OAAO,EAAE,MAAM,EAAE,WAE9D;AAID,MAAM,WAAW,oBAAoB;IACnC,0EAA0E;IAC1E,OAAO,EAAE,OAAO,CAAC;IACjB,qDAAqD;IACrD,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,yDAAyD;IACzD,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,oDAAoD;IACpD,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,kDAAkD;IAClD,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,4EAA4E;IAC5E,4BAA4B,CAAC,EAAE,MAAM,CAAC;IACtC,mEAAmE;IACnE,2BAA2B,CAAC,EAAE,MAAM,CAAC;IACrC,wEAAwE;IACxE,8BAA8B,CAAC,EAAE,MAAM,CAAC;CACzC;AAgGD,MAAM,WAAW,eAAgB,SAAQ,IAAI,CAC3C,kBAAkB,EAClB,eAAe,CAChB;IACC,oCAAoC;IACpC,WAAW,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC;IAC7B,wCAAwC;IACxC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,6CAA6C;IAC7C,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,6GAA6G;IAC7G,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IACxB,iFAAiF;IACjF,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,6HAA6H;IAC7H,kBAAkB,CAAC,EAAE,MAAM,IAAI,CAAC;IAChC,iGAAiG;IACjG,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,yFAAyF;IACzF,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,yEAAyE;IACzE,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B;;;;;;;OAOG;IACH,KAAK,CAAC,EAAE,OAAO,uBAAuB,EAAE,eAAe,GAAG,IAAI,CAAC;IAC/D,mEAAmE;IACnE,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,+CAA+C;IAC/C,aAAa,CAAC,EAAE,0BAA0B,CAAC,eAAe,CAAC,CAAC;IAC5D,gFAAgF;IAChF,UAAU,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC7B,mFAAmF;IACnF,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,kFAAkF;IAClF,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,kFAAkF;IAClF,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,uDAAuD;IACvD,UAAU,CAAC,EAAE,oBAAoB,CAAC;CACnC;AA0oDD,wBAAgB,UAAU,CAAC,KAAK,EAAE,eAAe,qBAgBhD;AAED,MAAM,MAAM,oBAAoB,GAAG,OAAO,GAAG,MAAM,CAAC;AAEpD,MAAM,WAAW,qBAAsB,SAAQ,eAAe;IAC5D;;;;OAIG;IACH,IAAI,CAAC,EAAE,oBAAoB,CAAC;IAC5B;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B;AAED,wBAAgB,8CAA8C,CAC5D,IAAI,EAAE,oBAAoB,GAAG,SAAS,EACtC,WAAW,EAAE,OAAO,GAAG,SAAS,GAC/B,OAAO,CAET;AAED,wBAAgB,uCAAuC,CACrD,IAAI,EAAE,oBAAoB,GAAG,SAAS,EACtC,iBAAiB,EAAE,OAAO,GAAG,SAAS,GACrC,OAAO,CAET;AAED;;;;;;GAMG;AACH,wBAAgB,gBAAgB,CAAC,EAC/B,IAAc,EACd,SAAS,EACT,WAAoB,EACpB,YAAY,EACZ,KAAK,EACL,kBAA0B,EAC1B,qBAAqB,EACrB,GAAG,KAAK,EACT,EAAE,qBAAqB,qBA2BvB;AAID,MAAM,WAAW,iBAAiB;IAChC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,gDAAgD;IAChD,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,gDAAgD;IAChD,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,+EAA+E;IAC/E,kBAAkB,CAAC,EAAE,kBAAkB,CAAC,oBAAoB,CAAC,CAAC;IAC9D,+DAA+D;IAC/D,mBAAmB,CAAC,EAAE,kBAAkB,CAAC,qBAAqB,CAAC,CAAC;IAChE,kEAAkE;IAClE,gBAAgB,CAAC,EAAE,kBAAkB,CAAC,kBAAkB,CAAC,CAAC;IAC1D;yDACqD;IACrD,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,uEAAuE;IACvE,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,0DAA0D;IAC1D,QAAQ,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAC5B,sDAAsD;IACtD,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,kFAAkF;IAClF,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,wEAAwE;IACxE,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB;;;OAGG;IACH,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,6EAA6E;IAC7E,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,gEAAgE;IAChE,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,iFAAiF;IACjF,mBAAmB,CAAC,EAAE,MAAM,IAAI,CAAC;IACjC;;;;;OAKG;IACH,KAAK,CAAC,EAAE,OAAO,uBAAuB,EAAE,eAAe,GAAG,IAAI,CAAC;IAC/D,mEAAmE;IACnE,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,+CAA+C;IAC/C,aAAa,CAAC,EAAE,0BAA0B,CAAC,eAAe,CAAC,CAAC;CAC7D;AAED;;;GAGG;AACH,wBAAgB,YAAY,CAAC,EAC3B,QAAQ,EACR,cAAsC,EACtC,WAAW,EACX,kBAAkB,EAClB,mBAAmB,EACnB,gBAAgB,EAChB,mBAAmB,EACnB,YAAY,EACZ,QAAkB,EAClB,WAAmB,EACnB,aAAoB,EACpB,cAAqB,EACrB,kBAA0B,EAC1B,UAAU,EACV,iBAAyB,EACzB,mBAAmB,EACnB,KAAK,EACL,YAAY,EACZ,aAAa,GACd,EAAE,iBAAiB,qBA0kBnB;AAED;;;GAGG;AACH,wBAAgB,cAAc,SAqB7B;AAED;;;GAGG;AACH,wBAAgB,iBAAiB,CAAC,EAAE,SAAS,EAAE,EAAE;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,qBAuBtE"}
@@ -93,7 +93,7 @@ const AGENT_PANEL_ROOT_STYLE = {
93
93
  fontSize: 13,
94
94
  lineHeight: 1.2,
95
95
  };
96
- const AGENT_PANEL_HEADER_CLASS = "relative z-[240] flex h-12 shrink-0 items-center justify-between gap-2 border-b border-border";
96
+ const AGENT_PANEL_HEADER_CLASS = "agent-native-shell-topbar relative z-[240] flex h-12 shrink-0 items-center justify-between gap-2 border-b border-border";
97
97
  const AGENT_PANEL_HEADER_STYLE = {
98
98
  paddingLeft: 8,
99
99
  paddingRight: 8,
@@ -788,7 +788,7 @@ function ResizeHandle({ position, onDrag, }) {
788
788
  document.body.style.cursor = "";
789
789
  };
790
790
  }, [position]);
791
- return (_jsx("div", { ref: ref, className: cn("relative z-20 shrink-0 w-px touch-none select-none transition-colors", "bg-border hover:bg-accent active:bg-accent"), style: { cursor: "col-resize" } }));
791
+ return (_jsx("div", { ref: ref, className: cn("agent-sidebar-resize-handle relative z-20 w-px shrink-0 touch-none select-none bg-transparent transition-colors hover:bg-border active:bg-border"), style: { cursor: "col-resize" } }));
792
792
  }
793
793
  /**
794
794
  * Syncs the current URL (pathname + search + hash) to application_state