@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.js
CHANGED
|
@@ -8847,8 +8847,18 @@ var codeEvalPlugin = {
|
|
|
8847
8847
|
description: "Enables safe code execution",
|
|
8848
8848
|
configSchema: {
|
|
8849
8849
|
type: "object",
|
|
8850
|
+
title: "Code Evaluation Configuration",
|
|
8851
|
+
description: "Configure code execution sandbox settings",
|
|
8852
|
+
required: ["vmIsolation"],
|
|
8850
8853
|
properties: {
|
|
8851
|
-
vmIsolation: {
|
|
8854
|
+
vmIsolation: {
|
|
8855
|
+
type: "string",
|
|
8856
|
+
title: "VM Isolation",
|
|
8857
|
+
description: "Controls how code execution is isolated between agents and projects",
|
|
8858
|
+
enum: ["global", "agent", "project"],
|
|
8859
|
+
default: "global",
|
|
8860
|
+
widget: "segmented"
|
|
8861
|
+
}
|
|
8852
8862
|
}
|
|
8853
8863
|
},
|
|
8854
8864
|
defaultConfig: { vmIsolation: "global" }
|
|
@@ -8897,9 +8907,18 @@ var browserPlugin = {
|
|
|
8897
8907
|
description: "Provides browser automation capabilities",
|
|
8898
8908
|
configSchema: {
|
|
8899
8909
|
type: "object",
|
|
8910
|
+
title: "Browser Configuration",
|
|
8911
|
+
description: "Configure browser automation settings",
|
|
8912
|
+
required: ["vmIsolation"],
|
|
8900
8913
|
properties: {
|
|
8901
|
-
vmIsolation: {
|
|
8902
|
-
|
|
8914
|
+
vmIsolation: {
|
|
8915
|
+
type: "string",
|
|
8916
|
+
title: "VM Isolation",
|
|
8917
|
+
description: "Controls how browser instances are isolated between agents and projects",
|
|
8918
|
+
enum: ["global", "agent", "project"],
|
|
8919
|
+
default: "agent",
|
|
8920
|
+
widget: "segmented"
|
|
8921
|
+
}
|
|
8903
8922
|
}
|
|
8904
8923
|
},
|
|
8905
8924
|
defaultConfig: { headless: true, vmIsolation: "agent" }
|
|
@@ -8945,8 +8964,17 @@ var sqlPlugin = {
|
|
|
8945
8964
|
],
|
|
8946
8965
|
configSchema: {
|
|
8947
8966
|
type: "object",
|
|
8967
|
+
title: "SQL Configuration",
|
|
8968
|
+
description: "Configure database connection settings",
|
|
8969
|
+
required: ["databaseKeys"],
|
|
8948
8970
|
properties: {
|
|
8949
|
-
databaseKeys: {
|
|
8971
|
+
databaseKeys: {
|
|
8972
|
+
type: "array",
|
|
8973
|
+
title: "Select Databases",
|
|
8974
|
+
description: "Select databases this agent can access (multi-select from registered databases)",
|
|
8975
|
+
items: { type: "string" },
|
|
8976
|
+
widget: "databaseSelect"
|
|
8977
|
+
}
|
|
8950
8978
|
}
|
|
8951
8979
|
},
|
|
8952
8980
|
defaultConfig: { databaseKeys: [] }
|
|
@@ -9960,7 +9988,32 @@ var skillPlugin = {
|
|
|
9960
9988
|
meta: {
|
|
9961
9989
|
type: "skill",
|
|
9962
9990
|
name: "Skills",
|
|
9963
|
-
description: "Provides skill loading capabilities for the agent"
|
|
9991
|
+
description: "Provides skill loading capabilities for the agent",
|
|
9992
|
+
configSchema: {
|
|
9993
|
+
type: "object",
|
|
9994
|
+
title: "Skills Configuration",
|
|
9995
|
+
description: "Configure which skills this agent can use",
|
|
9996
|
+
properties: {
|
|
9997
|
+
readAll: {
|
|
9998
|
+
type: "boolean",
|
|
9999
|
+
title: "Read All Skills",
|
|
10000
|
+
description: "When enabled, the agent will have access to all available skills automatically",
|
|
10001
|
+
default: false,
|
|
10002
|
+
widget: "switch"
|
|
10003
|
+
},
|
|
10004
|
+
skills: {
|
|
10005
|
+
type: "array",
|
|
10006
|
+
title: "Select Skills",
|
|
10007
|
+
description: "Select which skills this agent can use (ignored if 'Read All Skills' is enabled)",
|
|
10008
|
+
items: { type: "string" },
|
|
10009
|
+
widget: "skillSelect"
|
|
10010
|
+
}
|
|
10011
|
+
}
|
|
10012
|
+
},
|
|
10013
|
+
defaultConfig: {
|
|
10014
|
+
readAll: false,
|
|
10015
|
+
skills: []
|
|
10016
|
+
}
|
|
9964
10017
|
},
|
|
9965
10018
|
middleware: (cfg) => createSkillMiddleware(cfg)
|
|
9966
10019
|
};
|
|
@@ -10838,8 +10891,18 @@ var filesystemPlugin = {
|
|
|
10838
10891
|
description: "Provides file system operations for reading, writing, and managing files",
|
|
10839
10892
|
configSchema: {
|
|
10840
10893
|
type: "object",
|
|
10894
|
+
title: "Filesystem Configuration",
|
|
10895
|
+
description: "Configure filesystem isolation and access settings",
|
|
10896
|
+
required: ["vmIsolation"],
|
|
10841
10897
|
properties: {
|
|
10842
|
-
vmIsolation: {
|
|
10898
|
+
vmIsolation: {
|
|
10899
|
+
type: "string",
|
|
10900
|
+
title: "VM Isolation",
|
|
10901
|
+
description: "Controls how filesystem access is isolated between agents and projects",
|
|
10902
|
+
enum: ["global", "agent", "project"],
|
|
10903
|
+
default: "global",
|
|
10904
|
+
widget: "segmented"
|
|
10905
|
+
}
|
|
10843
10906
|
}
|
|
10844
10907
|
},
|
|
10845
10908
|
defaultConfig: { vmIsolation: "global" }
|
|
@@ -10896,9 +10959,23 @@ var metricsPlugin = {
|
|
|
10896
10959
|
],
|
|
10897
10960
|
configSchema: {
|
|
10898
10961
|
type: "object",
|
|
10962
|
+
title: "Metrics Configuration",
|
|
10963
|
+
description: "Configure metrics server access settings",
|
|
10899
10964
|
properties: {
|
|
10900
|
-
connectAll: {
|
|
10901
|
-
|
|
10965
|
+
connectAll: {
|
|
10966
|
+
type: "boolean",
|
|
10967
|
+
title: "Connect All Servers",
|
|
10968
|
+
description: "When enabled, the agent will connect to all available metrics servers automatically",
|
|
10969
|
+
default: false,
|
|
10970
|
+
widget: "switch"
|
|
10971
|
+
},
|
|
10972
|
+
serverKeys: {
|
|
10973
|
+
type: "array",
|
|
10974
|
+
title: "Select Metrics Servers",
|
|
10975
|
+
description: "Select metrics servers this agent can query (ignored if 'Connect All Servers' is enabled)",
|
|
10976
|
+
items: { type: "string" },
|
|
10977
|
+
widget: "metricsSelect"
|
|
10978
|
+
}
|
|
10902
10979
|
}
|
|
10903
10980
|
},
|
|
10904
10981
|
defaultConfig: { connectAll: false, serverKeys: [] }
|
|
@@ -11509,9 +11586,23 @@ var collectionPlugin = {
|
|
|
11509
11586
|
],
|
|
11510
11587
|
configSchema: {
|
|
11511
11588
|
type: "object",
|
|
11589
|
+
title: "Collection Configuration",
|
|
11590
|
+
description: "Configure collection access for this agent",
|
|
11512
11591
|
properties: {
|
|
11513
|
-
connectAll: {
|
|
11514
|
-
|
|
11592
|
+
connectAll: {
|
|
11593
|
+
type: "boolean",
|
|
11594
|
+
title: "Connect All Collections",
|
|
11595
|
+
description: "When enabled, the agent will have access to all collections automatically",
|
|
11596
|
+
default: false,
|
|
11597
|
+
widget: "switch"
|
|
11598
|
+
},
|
|
11599
|
+
collectionKeys: {
|
|
11600
|
+
type: "array",
|
|
11601
|
+
title: "Select Collections",
|
|
11602
|
+
description: "Select which collections this agent can access",
|
|
11603
|
+
items: { type: "string" },
|
|
11604
|
+
widget: "collectionSelect"
|
|
11605
|
+
}
|
|
11515
11606
|
}
|
|
11516
11607
|
},
|
|
11517
11608
|
defaultConfig: { connectAll: false, collectionKeys: [] }
|
|
@@ -11642,7 +11733,14 @@ var askUserClarifyPlugin = {
|
|
|
11642
11733
|
meta: {
|
|
11643
11734
|
type: "ask_user_to_clarify",
|
|
11644
11735
|
name: "Ask User To Clarify",
|
|
11645
|
-
description: "Enables the agent to ask users clarifying questions"
|
|
11736
|
+
description: "Enables the agent to ask users clarifying questions",
|
|
11737
|
+
configSchema: {
|
|
11738
|
+
type: "object",
|
|
11739
|
+
title: "Ask User To Clarify Configuration",
|
|
11740
|
+
description: "Configure user clarification settings",
|
|
11741
|
+
properties: {}
|
|
11742
|
+
},
|
|
11743
|
+
defaultConfig: {}
|
|
11646
11744
|
},
|
|
11647
11745
|
middleware: () => createAskUserClarifyMiddleware()
|
|
11648
11746
|
};
|
|
@@ -12540,7 +12638,14 @@ var widgetPlugin = {
|
|
|
12540
12638
|
meta: {
|
|
12541
12639
|
type: "widget",
|
|
12542
12640
|
name: "Widget",
|
|
12543
|
-
description: "Enables the agent to render interactive HTML widgets"
|
|
12641
|
+
description: "Enables the agent to render interactive HTML widgets",
|
|
12642
|
+
configSchema: {
|
|
12643
|
+
type: "object",
|
|
12644
|
+
title: "Widget Configuration",
|
|
12645
|
+
description: "Configure widget rendering capabilities (zero configuration required)",
|
|
12646
|
+
properties: {}
|
|
12647
|
+
},
|
|
12648
|
+
defaultConfig: {}
|
|
12544
12649
|
},
|
|
12545
12650
|
middleware: () => createWidgetMiddleware()
|
|
12546
12651
|
};
|
|
@@ -13163,7 +13268,24 @@ var clawPlugin = {
|
|
|
13163
13268
|
meta: {
|
|
13164
13269
|
type: "claw",
|
|
13165
13270
|
name: "Memory",
|
|
13166
|
-
description: "Injects and manages memory/bootstrap files in the runtime workspace"
|
|
13271
|
+
description: "Injects and manages memory/bootstrap files in the runtime workspace",
|
|
13272
|
+
configSchema: {
|
|
13273
|
+
type: "object",
|
|
13274
|
+
title: "Memory Configuration",
|
|
13275
|
+
description: "Configure bootstrap file injection behavior",
|
|
13276
|
+
properties: {
|
|
13277
|
+
injectBootstrapFiles: {
|
|
13278
|
+
type: "boolean",
|
|
13279
|
+
title: "Inject Bootstrap Files",
|
|
13280
|
+
description: "Automatically inject default bootstrap files into the workspace context",
|
|
13281
|
+
default: true,
|
|
13282
|
+
widget: "switch"
|
|
13283
|
+
}
|
|
13284
|
+
}
|
|
13285
|
+
},
|
|
13286
|
+
defaultConfig: {
|
|
13287
|
+
injectBootstrapFiles: true
|
|
13288
|
+
}
|
|
13167
13289
|
},
|
|
13168
13290
|
middleware: (cfg) => createClawMiddleware(cfg)
|
|
13169
13291
|
};
|
|
@@ -13359,7 +13481,46 @@ var datePlugin = {
|
|
|
13359
13481
|
meta: {
|
|
13360
13482
|
type: "date",
|
|
13361
13483
|
name: "Current Date",
|
|
13362
|
-
description: "Injects the current date into the agent system prompt"
|
|
13484
|
+
description: "Injects the current date into the agent system prompt",
|
|
13485
|
+
configSchema: {
|
|
13486
|
+
type: "object",
|
|
13487
|
+
title: "Date Configuration",
|
|
13488
|
+
description: "Configure timezone for the current date",
|
|
13489
|
+
properties: {
|
|
13490
|
+
timezone: {
|
|
13491
|
+
type: "string",
|
|
13492
|
+
title: "Timezone",
|
|
13493
|
+
description: "Select timezone for displaying the current date",
|
|
13494
|
+
default: "UTC",
|
|
13495
|
+
enumLabels: {
|
|
13496
|
+
"UTC": "UTC (Coordinated Universal Time)",
|
|
13497
|
+
"America/New_York": "New York (EST/EDT)",
|
|
13498
|
+
"America/Chicago": "Chicago (CST/CDT)",
|
|
13499
|
+
"America/Denver": "Denver (MST/MDT)",
|
|
13500
|
+
"America/Los_Angeles": "Los Angeles (PST/PDT)",
|
|
13501
|
+
"America/Toronto": "Toronto (EST/EDT)",
|
|
13502
|
+
"America/Sao_Paulo": "S\xE3o Paulo (BRT)",
|
|
13503
|
+
"Europe/London": "London (GMT/BST)",
|
|
13504
|
+
"Europe/Paris": "Paris (CET/CEST)",
|
|
13505
|
+
"Europe/Berlin": "Berlin (CET/CEST)",
|
|
13506
|
+
"Europe/Moscow": "Moscow (MSK)",
|
|
13507
|
+
"Asia/Dubai": "Dubai (GST)",
|
|
13508
|
+
"Asia/Kolkata": "Kolkata (IST)",
|
|
13509
|
+
"Asia/Shanghai": "Shanghai (CST)",
|
|
13510
|
+
"Asia/Hong_Kong": "Hong Kong (HKT)",
|
|
13511
|
+
"Asia/Singapore": "Singapore (SGT)",
|
|
13512
|
+
"Asia/Tokyo": "Tokyo (JST)",
|
|
13513
|
+
"Asia/Seoul": "Seoul (KST)",
|
|
13514
|
+
"Australia/Sydney": "Sydney (AEDT/AEST)",
|
|
13515
|
+
"Pacific/Auckland": "Auckland (NZDT/NZST)"
|
|
13516
|
+
},
|
|
13517
|
+
widget: "select"
|
|
13518
|
+
}
|
|
13519
|
+
}
|
|
13520
|
+
},
|
|
13521
|
+
defaultConfig: {
|
|
13522
|
+
timezone: "UTC"
|
|
13523
|
+
}
|
|
13363
13524
|
},
|
|
13364
13525
|
middleware: (cfg) => createDateMiddleware(cfg)
|
|
13365
13526
|
};
|
|
@@ -16373,7 +16534,25 @@ var schedulerPlugin = {
|
|
|
16373
16534
|
meta: {
|
|
16374
16535
|
type: "scheduler",
|
|
16375
16536
|
name: "Scheduler",
|
|
16376
|
-
description: "Enables the agent to schedule future work"
|
|
16537
|
+
description: "Enables the agent to schedule future work",
|
|
16538
|
+
configSchema: {
|
|
16539
|
+
type: "object",
|
|
16540
|
+
title: "Scheduler Configuration",
|
|
16541
|
+
description: "Configure retry behavior for scheduled tasks",
|
|
16542
|
+
properties: {
|
|
16543
|
+
defaultMaxRetries: {
|
|
16544
|
+
type: "integer",
|
|
16545
|
+
title: "Default Max Retries",
|
|
16546
|
+
description: "Default retry count for scheduled tasks created through the middleware",
|
|
16547
|
+
default: 0,
|
|
16548
|
+
minimum: 0,
|
|
16549
|
+
widget: "numberInput"
|
|
16550
|
+
}
|
|
16551
|
+
}
|
|
16552
|
+
},
|
|
16553
|
+
defaultConfig: {
|
|
16554
|
+
defaultMaxRetries: 0
|
|
16555
|
+
}
|
|
16377
16556
|
},
|
|
16378
16557
|
middleware: (cfg) => createSchedulerMiddleware(cfg)
|
|
16379
16558
|
};
|
|
@@ -16513,7 +16692,14 @@ var taskPlugin = {
|
|
|
16513
16692
|
meta: {
|
|
16514
16693
|
type: "task",
|
|
16515
16694
|
name: "Task Management",
|
|
16516
|
-
description: "Enables persistent task management with delegation and tracking"
|
|
16695
|
+
description: "Enables persistent task management with delegation and tracking",
|
|
16696
|
+
configSchema: {
|
|
16697
|
+
type: "object",
|
|
16698
|
+
title: "Task Management Configuration",
|
|
16699
|
+
description: "Zero-configuration task management",
|
|
16700
|
+
properties: {}
|
|
16701
|
+
},
|
|
16702
|
+
defaultConfig: {}
|
|
16517
16703
|
},
|
|
16518
16704
|
middleware: () => createTaskMiddleware()
|
|
16519
16705
|
};
|