@axiom-lattice/react-sdk 2.1.60 → 2.1.61
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 +23 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1279,6 +1279,29 @@ var DEFAULT_MIDDLEWARE_TYPES = [
|
|
|
1279
1279
|
{ id: "show_widget", name: "Show Widget", description: "Render interactive HTML widgets or SVG diagrams" }
|
|
1280
1280
|
]
|
|
1281
1281
|
},
|
|
1282
|
+
{
|
|
1283
|
+
type: "claw",
|
|
1284
|
+
name: "Memory",
|
|
1285
|
+
description: "Injects and manages memory/bootstrap files (such as AGENTS.md and USER.md) in the runtime workspace",
|
|
1286
|
+
schema: {
|
|
1287
|
+
type: "object",
|
|
1288
|
+
title: "Memory Configuration",
|
|
1289
|
+
description: "Configure bootstrap file injection behavior",
|
|
1290
|
+
properties: {
|
|
1291
|
+
injectBootstrapFiles: {
|
|
1292
|
+
type: "boolean",
|
|
1293
|
+
title: "Inject Bootstrap Files",
|
|
1294
|
+
description: "Automatically inject default bootstrap files into the workspace context",
|
|
1295
|
+
default: true,
|
|
1296
|
+
widget: "switch"
|
|
1297
|
+
}
|
|
1298
|
+
}
|
|
1299
|
+
},
|
|
1300
|
+
defaultConfig: {
|
|
1301
|
+
injectBootstrapFiles: true
|
|
1302
|
+
},
|
|
1303
|
+
tools: []
|
|
1304
|
+
},
|
|
1282
1305
|
{
|
|
1283
1306
|
type: "date",
|
|
1284
1307
|
name: "Current Date",
|