@axiom-lattice/core 2.1.96 → 2.1.97
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 +202 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +202 -16
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -7088,8 +7088,18 @@ var codeEvalPlugin = {
|
|
|
7088
7088
|
description: "Enables safe code execution",
|
|
7089
7089
|
configSchema: {
|
|
7090
7090
|
type: "object",
|
|
7091
|
+
title: "Code Evaluation Configuration",
|
|
7092
|
+
description: "Configure code execution sandbox settings",
|
|
7093
|
+
required: ["vmIsolation"],
|
|
7091
7094
|
properties: {
|
|
7092
|
-
vmIsolation: {
|
|
7095
|
+
vmIsolation: {
|
|
7096
|
+
type: "string",
|
|
7097
|
+
title: "VM Isolation",
|
|
7098
|
+
description: "Controls how code execution is isolated between agents and projects",
|
|
7099
|
+
enum: ["global", "agent", "project"],
|
|
7100
|
+
default: "global",
|
|
7101
|
+
widget: "segmented"
|
|
7102
|
+
}
|
|
7093
7103
|
}
|
|
7094
7104
|
},
|
|
7095
7105
|
defaultConfig: { vmIsolation: "global" }
|
|
@@ -7138,9 +7148,18 @@ var browserPlugin = {
|
|
|
7138
7148
|
description: "Provides browser automation capabilities",
|
|
7139
7149
|
configSchema: {
|
|
7140
7150
|
type: "object",
|
|
7151
|
+
title: "Browser Configuration",
|
|
7152
|
+
description: "Configure browser automation settings",
|
|
7153
|
+
required: ["vmIsolation"],
|
|
7141
7154
|
properties: {
|
|
7142
|
-
vmIsolation: {
|
|
7143
|
-
|
|
7155
|
+
vmIsolation: {
|
|
7156
|
+
type: "string",
|
|
7157
|
+
title: "VM Isolation",
|
|
7158
|
+
description: "Controls how browser instances are isolated between agents and projects",
|
|
7159
|
+
enum: ["global", "agent", "project"],
|
|
7160
|
+
default: "agent",
|
|
7161
|
+
widget: "segmented"
|
|
7162
|
+
}
|
|
7144
7163
|
}
|
|
7145
7164
|
},
|
|
7146
7165
|
defaultConfig: { headless: true, vmIsolation: "agent" }
|
|
@@ -7186,8 +7205,17 @@ var sqlPlugin = {
|
|
|
7186
7205
|
],
|
|
7187
7206
|
configSchema: {
|
|
7188
7207
|
type: "object",
|
|
7208
|
+
title: "SQL Configuration",
|
|
7209
|
+
description: "Configure database connection settings",
|
|
7210
|
+
required: ["databaseKeys"],
|
|
7189
7211
|
properties: {
|
|
7190
|
-
databaseKeys: {
|
|
7212
|
+
databaseKeys: {
|
|
7213
|
+
type: "array",
|
|
7214
|
+
title: "Select Databases",
|
|
7215
|
+
description: "Select databases this agent can access (multi-select from registered databases)",
|
|
7216
|
+
items: { type: "string" },
|
|
7217
|
+
widget: "databaseSelect"
|
|
7218
|
+
}
|
|
7191
7219
|
}
|
|
7192
7220
|
},
|
|
7193
7221
|
defaultConfig: { databaseKeys: [] }
|
|
@@ -8201,7 +8229,32 @@ var skillPlugin = {
|
|
|
8201
8229
|
meta: {
|
|
8202
8230
|
type: "skill",
|
|
8203
8231
|
name: "Skills",
|
|
8204
|
-
description: "Provides skill loading capabilities for the agent"
|
|
8232
|
+
description: "Provides skill loading capabilities for the agent",
|
|
8233
|
+
configSchema: {
|
|
8234
|
+
type: "object",
|
|
8235
|
+
title: "Skills Configuration",
|
|
8236
|
+
description: "Configure which skills this agent can use",
|
|
8237
|
+
properties: {
|
|
8238
|
+
readAll: {
|
|
8239
|
+
type: "boolean",
|
|
8240
|
+
title: "Read All Skills",
|
|
8241
|
+
description: "When enabled, the agent will have access to all available skills automatically",
|
|
8242
|
+
default: false,
|
|
8243
|
+
widget: "switch"
|
|
8244
|
+
},
|
|
8245
|
+
skills: {
|
|
8246
|
+
type: "array",
|
|
8247
|
+
title: "Select Skills",
|
|
8248
|
+
description: "Select which skills this agent can use (ignored if 'Read All Skills' is enabled)",
|
|
8249
|
+
items: { type: "string" },
|
|
8250
|
+
widget: "skillSelect"
|
|
8251
|
+
}
|
|
8252
|
+
}
|
|
8253
|
+
},
|
|
8254
|
+
defaultConfig: {
|
|
8255
|
+
readAll: false,
|
|
8256
|
+
skills: []
|
|
8257
|
+
}
|
|
8205
8258
|
},
|
|
8206
8259
|
middleware: (cfg) => createSkillMiddleware(cfg)
|
|
8207
8260
|
};
|
|
@@ -9079,8 +9132,18 @@ var filesystemPlugin = {
|
|
|
9079
9132
|
description: "Provides file system operations for reading, writing, and managing files",
|
|
9080
9133
|
configSchema: {
|
|
9081
9134
|
type: "object",
|
|
9135
|
+
title: "Filesystem Configuration",
|
|
9136
|
+
description: "Configure filesystem isolation and access settings",
|
|
9137
|
+
required: ["vmIsolation"],
|
|
9082
9138
|
properties: {
|
|
9083
|
-
vmIsolation: {
|
|
9139
|
+
vmIsolation: {
|
|
9140
|
+
type: "string",
|
|
9141
|
+
title: "VM Isolation",
|
|
9142
|
+
description: "Controls how filesystem access is isolated between agents and projects",
|
|
9143
|
+
enum: ["global", "agent", "project"],
|
|
9144
|
+
default: "global",
|
|
9145
|
+
widget: "segmented"
|
|
9146
|
+
}
|
|
9084
9147
|
}
|
|
9085
9148
|
},
|
|
9086
9149
|
defaultConfig: { vmIsolation: "global" }
|
|
@@ -9137,9 +9200,23 @@ var metricsPlugin = {
|
|
|
9137
9200
|
],
|
|
9138
9201
|
configSchema: {
|
|
9139
9202
|
type: "object",
|
|
9203
|
+
title: "Metrics Configuration",
|
|
9204
|
+
description: "Configure metrics server access settings",
|
|
9140
9205
|
properties: {
|
|
9141
|
-
connectAll: {
|
|
9142
|
-
|
|
9206
|
+
connectAll: {
|
|
9207
|
+
type: "boolean",
|
|
9208
|
+
title: "Connect All Servers",
|
|
9209
|
+
description: "When enabled, the agent will connect to all available metrics servers automatically",
|
|
9210
|
+
default: false,
|
|
9211
|
+
widget: "switch"
|
|
9212
|
+
},
|
|
9213
|
+
serverKeys: {
|
|
9214
|
+
type: "array",
|
|
9215
|
+
title: "Select Metrics Servers",
|
|
9216
|
+
description: "Select metrics servers this agent can query (ignored if 'Connect All Servers' is enabled)",
|
|
9217
|
+
items: { type: "string" },
|
|
9218
|
+
widget: "metricsSelect"
|
|
9219
|
+
}
|
|
9143
9220
|
}
|
|
9144
9221
|
},
|
|
9145
9222
|
defaultConfig: { connectAll: false, serverKeys: [] }
|
|
@@ -9748,9 +9825,23 @@ var collectionPlugin = {
|
|
|
9748
9825
|
],
|
|
9749
9826
|
configSchema: {
|
|
9750
9827
|
type: "object",
|
|
9828
|
+
title: "Collection Configuration",
|
|
9829
|
+
description: "Configure collection access for this agent",
|
|
9751
9830
|
properties: {
|
|
9752
|
-
connectAll: {
|
|
9753
|
-
|
|
9831
|
+
connectAll: {
|
|
9832
|
+
type: "boolean",
|
|
9833
|
+
title: "Connect All Collections",
|
|
9834
|
+
description: "When enabled, the agent will have access to all collections automatically",
|
|
9835
|
+
default: false,
|
|
9836
|
+
widget: "switch"
|
|
9837
|
+
},
|
|
9838
|
+
collectionKeys: {
|
|
9839
|
+
type: "array",
|
|
9840
|
+
title: "Select Collections",
|
|
9841
|
+
description: "Select which collections this agent can access",
|
|
9842
|
+
items: { type: "string" },
|
|
9843
|
+
widget: "collectionSelect"
|
|
9844
|
+
}
|
|
9754
9845
|
}
|
|
9755
9846
|
},
|
|
9756
9847
|
defaultConfig: { connectAll: false, collectionKeys: [] }
|
|
@@ -9881,7 +9972,14 @@ var askUserClarifyPlugin = {
|
|
|
9881
9972
|
meta: {
|
|
9882
9973
|
type: "ask_user_to_clarify",
|
|
9883
9974
|
name: "Ask User To Clarify",
|
|
9884
|
-
description: "Enables the agent to ask users clarifying questions"
|
|
9975
|
+
description: "Enables the agent to ask users clarifying questions",
|
|
9976
|
+
configSchema: {
|
|
9977
|
+
type: "object",
|
|
9978
|
+
title: "Ask User To Clarify Configuration",
|
|
9979
|
+
description: "Configure user clarification settings",
|
|
9980
|
+
properties: {}
|
|
9981
|
+
},
|
|
9982
|
+
defaultConfig: {}
|
|
9885
9983
|
},
|
|
9886
9984
|
middleware: () => createAskUserClarifyMiddleware()
|
|
9887
9985
|
};
|
|
@@ -10779,7 +10877,14 @@ var widgetPlugin = {
|
|
|
10779
10877
|
meta: {
|
|
10780
10878
|
type: "widget",
|
|
10781
10879
|
name: "Widget",
|
|
10782
|
-
description: "Enables the agent to render interactive HTML widgets"
|
|
10880
|
+
description: "Enables the agent to render interactive HTML widgets",
|
|
10881
|
+
configSchema: {
|
|
10882
|
+
type: "object",
|
|
10883
|
+
title: "Widget Configuration",
|
|
10884
|
+
description: "Configure widget rendering capabilities (zero configuration required)",
|
|
10885
|
+
properties: {}
|
|
10886
|
+
},
|
|
10887
|
+
defaultConfig: {}
|
|
10783
10888
|
},
|
|
10784
10889
|
middleware: () => createWidgetMiddleware()
|
|
10785
10890
|
};
|
|
@@ -11402,7 +11507,24 @@ var clawPlugin = {
|
|
|
11402
11507
|
meta: {
|
|
11403
11508
|
type: "claw",
|
|
11404
11509
|
name: "Memory",
|
|
11405
|
-
description: "Injects and manages memory/bootstrap files in the runtime workspace"
|
|
11510
|
+
description: "Injects and manages memory/bootstrap files in the runtime workspace",
|
|
11511
|
+
configSchema: {
|
|
11512
|
+
type: "object",
|
|
11513
|
+
title: "Memory Configuration",
|
|
11514
|
+
description: "Configure bootstrap file injection behavior",
|
|
11515
|
+
properties: {
|
|
11516
|
+
injectBootstrapFiles: {
|
|
11517
|
+
type: "boolean",
|
|
11518
|
+
title: "Inject Bootstrap Files",
|
|
11519
|
+
description: "Automatically inject default bootstrap files into the workspace context",
|
|
11520
|
+
default: true,
|
|
11521
|
+
widget: "switch"
|
|
11522
|
+
}
|
|
11523
|
+
}
|
|
11524
|
+
},
|
|
11525
|
+
defaultConfig: {
|
|
11526
|
+
injectBootstrapFiles: true
|
|
11527
|
+
}
|
|
11406
11528
|
},
|
|
11407
11529
|
middleware: (cfg) => createClawMiddleware(cfg)
|
|
11408
11530
|
};
|
|
@@ -11598,7 +11720,46 @@ var datePlugin = {
|
|
|
11598
11720
|
meta: {
|
|
11599
11721
|
type: "date",
|
|
11600
11722
|
name: "Current Date",
|
|
11601
|
-
description: "Injects the current date into the agent system prompt"
|
|
11723
|
+
description: "Injects the current date into the agent system prompt",
|
|
11724
|
+
configSchema: {
|
|
11725
|
+
type: "object",
|
|
11726
|
+
title: "Date Configuration",
|
|
11727
|
+
description: "Configure timezone for the current date",
|
|
11728
|
+
properties: {
|
|
11729
|
+
timezone: {
|
|
11730
|
+
type: "string",
|
|
11731
|
+
title: "Timezone",
|
|
11732
|
+
description: "Select timezone for displaying the current date",
|
|
11733
|
+
default: "UTC",
|
|
11734
|
+
enumLabels: {
|
|
11735
|
+
"UTC": "UTC (Coordinated Universal Time)",
|
|
11736
|
+
"America/New_York": "New York (EST/EDT)",
|
|
11737
|
+
"America/Chicago": "Chicago (CST/CDT)",
|
|
11738
|
+
"America/Denver": "Denver (MST/MDT)",
|
|
11739
|
+
"America/Los_Angeles": "Los Angeles (PST/PDT)",
|
|
11740
|
+
"America/Toronto": "Toronto (EST/EDT)",
|
|
11741
|
+
"America/Sao_Paulo": "S\xE3o Paulo (BRT)",
|
|
11742
|
+
"Europe/London": "London (GMT/BST)",
|
|
11743
|
+
"Europe/Paris": "Paris (CET/CEST)",
|
|
11744
|
+
"Europe/Berlin": "Berlin (CET/CEST)",
|
|
11745
|
+
"Europe/Moscow": "Moscow (MSK)",
|
|
11746
|
+
"Asia/Dubai": "Dubai (GST)",
|
|
11747
|
+
"Asia/Kolkata": "Kolkata (IST)",
|
|
11748
|
+
"Asia/Shanghai": "Shanghai (CST)",
|
|
11749
|
+
"Asia/Hong_Kong": "Hong Kong (HKT)",
|
|
11750
|
+
"Asia/Singapore": "Singapore (SGT)",
|
|
11751
|
+
"Asia/Tokyo": "Tokyo (JST)",
|
|
11752
|
+
"Asia/Seoul": "Seoul (KST)",
|
|
11753
|
+
"Australia/Sydney": "Sydney (AEDT/AEST)",
|
|
11754
|
+
"Pacific/Auckland": "Auckland (NZDT/NZST)"
|
|
11755
|
+
},
|
|
11756
|
+
widget: "select"
|
|
11757
|
+
}
|
|
11758
|
+
}
|
|
11759
|
+
},
|
|
11760
|
+
defaultConfig: {
|
|
11761
|
+
timezone: "UTC"
|
|
11762
|
+
}
|
|
11602
11763
|
},
|
|
11603
11764
|
middleware: (cfg) => createDateMiddleware(cfg)
|
|
11604
11765
|
};
|
|
@@ -14622,7 +14783,25 @@ var schedulerPlugin = {
|
|
|
14622
14783
|
meta: {
|
|
14623
14784
|
type: "scheduler",
|
|
14624
14785
|
name: "Scheduler",
|
|
14625
|
-
description: "Enables the agent to schedule future work"
|
|
14786
|
+
description: "Enables the agent to schedule future work",
|
|
14787
|
+
configSchema: {
|
|
14788
|
+
type: "object",
|
|
14789
|
+
title: "Scheduler Configuration",
|
|
14790
|
+
description: "Configure retry behavior for scheduled tasks",
|
|
14791
|
+
properties: {
|
|
14792
|
+
defaultMaxRetries: {
|
|
14793
|
+
type: "integer",
|
|
14794
|
+
title: "Default Max Retries",
|
|
14795
|
+
description: "Default retry count for scheduled tasks created through the middleware",
|
|
14796
|
+
default: 0,
|
|
14797
|
+
minimum: 0,
|
|
14798
|
+
widget: "numberInput"
|
|
14799
|
+
}
|
|
14800
|
+
}
|
|
14801
|
+
},
|
|
14802
|
+
defaultConfig: {
|
|
14803
|
+
defaultMaxRetries: 0
|
|
14804
|
+
}
|
|
14626
14805
|
},
|
|
14627
14806
|
middleware: (cfg) => createSchedulerMiddleware(cfg)
|
|
14628
14807
|
};
|
|
@@ -14762,7 +14941,14 @@ var taskPlugin = {
|
|
|
14762
14941
|
meta: {
|
|
14763
14942
|
type: "task",
|
|
14764
14943
|
name: "Task Management",
|
|
14765
|
-
description: "Enables persistent task management with delegation and tracking"
|
|
14944
|
+
description: "Enables persistent task management with delegation and tracking",
|
|
14945
|
+
configSchema: {
|
|
14946
|
+
type: "object",
|
|
14947
|
+
title: "Task Management Configuration",
|
|
14948
|
+
description: "Zero-configuration task management",
|
|
14949
|
+
properties: {}
|
|
14950
|
+
},
|
|
14951
|
+
defaultConfig: {}
|
|
14766
14952
|
},
|
|
14767
14953
|
middleware: () => createTaskMiddleware()
|
|
14768
14954
|
};
|