@smartergpt/lexrunner 1.5.1 → 1.5.2
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/CHANGELOG.md +15 -0
- package/README.md +3 -2
- package/dist/cli.cjs +24 -7
- package/dist/cli.d.ts +8 -8
- package/dist/cli.js +2 -2
- package/dist/errors/index.cjs +4 -0
- package/dist/frames/index.cjs +20 -3
- package/dist/sdk/index.d.ts +6 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.5.2] - 2026-08-28
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- **Exact Lex runtime identity** - Bind the direct runtime dependency and reproducible lock to the
|
|
14
|
+
reviewed public `@smartergpt/lex@4.0.3` release instead of allowing install-time selection across
|
|
15
|
+
the Lex 4 line.
|
|
16
|
+
- **Current ecosystem dogfood baseline** - Exercise Lex 4.0.3, Lex-MCP 4.0.3, AXF 2.1.1, and
|
|
17
|
+
LexSona 2.0.2 by default while retaining explicit version overrides.
|
|
18
|
+
- **Native Windows dogfood launch** - Invoke npm and installed package bins through the active Node
|
|
19
|
+
runtime so the exact ecosystem harness does not depend on platform shell shims.
|
|
20
|
+
- **Contained disposable native binding** - Forbid lifecycle scripts during the credentialed
|
|
21
|
+
ecosystem install, then copy one exact identity-checked native SQLite binding from LexRunner's
|
|
22
|
+
gated dependency tree for the public-surface smoke; reject and hash non-registry lock resolutions.
|
|
23
|
+
|
|
9
24
|
## [1.5.1] - 2026-08-23
|
|
10
25
|
|
|
11
26
|
### Fixed
|
package/README.md
CHANGED
|
@@ -115,11 +115,12 @@ The checked-in package version is the single source for `lexrunner --version` an
|
|
|
115
115
|
|
|
116
116
|
<!-- BEGIN GENERATED PACKAGE VERSION -->
|
|
117
117
|
|
|
118
|
-
Current repository package version: **1.5.
|
|
118
|
+
Current repository package version: **1.5.2**. npm availability and dist-tags are separate
|
|
119
119
|
release evidence; inspect the registry rather than inferring publication from source metadata.
|
|
120
120
|
<!-- END GENERATED PACKAGE VERSION -->
|
|
121
121
|
|
|
122
|
-
See the [1.5.
|
|
122
|
+
See the [1.5.2 release notes](docs/releases/1.5.2.md), the
|
|
123
|
+
[1.5.1 release correction](docs/releases/1.5.1.md), the
|
|
123
124
|
[1.4.1 canonical CLI release](docs/releases/1.4.1.md), the
|
|
124
125
|
[1.4.0 native-host boundary release](docs/releases/1.4.0.md), the
|
|
125
126
|
[1.3.0 dogfood release](docs/releases/1.3.0.md), the
|
package/dist/cli.cjs
CHANGED
|
@@ -116,6 +116,10 @@ var init_error_codes = __esm({
|
|
|
116
116
|
POLICY_ERROR_CODES = {
|
|
117
117
|
/** No policy file found in any search path */
|
|
118
118
|
POLICY_NOT_FOUND: "POLICY_NOT_FOUND",
|
|
119
|
+
/** A policy output already exists and overwrite was not explicit */
|
|
120
|
+
POLICY_ALREADY_EXISTS: "POLICY_ALREADY_EXISTS",
|
|
121
|
+
/** A constrained policy source directory resolves outside the repository */
|
|
122
|
+
POLICY_SOURCE_DIR_OUTSIDE_ROOT: "POLICY_SOURCE_DIR_OUTSIDE_ROOT",
|
|
119
123
|
/** Policy file exists but has invalid JSON */
|
|
120
124
|
POLICY_PARSE_ERROR: "POLICY_PARSE_ERROR",
|
|
121
125
|
/** Policy file fails schema validation */
|
|
@@ -3018,7 +3022,10 @@ var init_capabilities = __esm({
|
|
|
3018
3022
|
check: Object.freeze([]),
|
|
3019
3023
|
timeline: Object.freeze([RUNTIME_OPERATION_CAPABILITIES.FRAME_READ]),
|
|
3020
3024
|
"frames:export": Object.freeze([RUNTIME_OPERATION_CAPABILITIES.FRAME_READ]),
|
|
3021
|
-
"frames:import": Object.freeze([
|
|
3025
|
+
"frames:import": Object.freeze([
|
|
3026
|
+
RUNTIME_OPERATION_CAPABILITIES.FRAME_READ,
|
|
3027
|
+
RUNTIME_OPERATION_CAPABILITIES.FRAME_WRITE
|
|
3028
|
+
]),
|
|
3022
3029
|
"db:vacuum": Object.freeze([RUNTIME_OPERATION_CAPABILITIES.FRAME_ADMIN]),
|
|
3023
3030
|
"db:backup": Object.freeze([RUNTIME_OPERATION_CAPABILITIES.FRAME_ADMIN]),
|
|
3024
3031
|
"db:repair": Object.freeze([RUNTIME_OPERATION_CAPABILITIES.FRAME_ADMIN]),
|
|
@@ -3029,6 +3036,7 @@ var init_capabilities = __esm({
|
|
|
3029
3036
|
"db:encrypt": Object.freeze([RUNTIME_OPERATION_CAPABILITIES.FRAME_ADMIN]),
|
|
3030
3037
|
"db:stats": Object.freeze([RUNTIME_OPERATION_CAPABILITIES.FRAME_READ]),
|
|
3031
3038
|
"policy:check": Object.freeze([]),
|
|
3039
|
+
"policy:generate": Object.freeze([]),
|
|
3032
3040
|
"policy:add-module": Object.freeze([]),
|
|
3033
3041
|
"instructions:init": Object.freeze([]),
|
|
3034
3042
|
"instructions:generate": Object.freeze([]),
|
|
@@ -8202,7 +8210,7 @@ var init_behavioral_store = __esm({
|
|
|
8202
8210
|
});
|
|
8203
8211
|
|
|
8204
8212
|
// node_modules/@smartergpt/lex/dist/memory/frames/types.js
|
|
8205
|
-
var import_zod10, FrameSpendMetadata, ModuleAttribution, TurnCostComponent, TurnCostWeights, TurnCost, FrameStatusSnapshot, CapabilityTier2, TaskComplexity, Frame;
|
|
8213
|
+
var import_zod10, FrameSpendMetadata, CallerProvenance, ModuleAttribution, TurnCostComponent, TurnCostWeights, TurnCost, FrameStatusSnapshot, CapabilityTier2, TaskComplexity, Frame;
|
|
8206
8214
|
var init_types4 = __esm({
|
|
8207
8215
|
"node_modules/@smartergpt/lex/dist/memory/frames/types.js"() {
|
|
8208
8216
|
"use strict";
|
|
@@ -8211,6 +8219,7 @@ var init_types4 = __esm({
|
|
|
8211
8219
|
prompts: import_zod10.z.number().optional(),
|
|
8212
8220
|
tokens_estimated: import_zod10.z.number().optional()
|
|
8213
8221
|
});
|
|
8222
|
+
CallerProvenance = import_zod10.z.record(import_zod10.z.string(), import_zod10.z.json());
|
|
8214
8223
|
ModuleAttribution = import_zod10.z.object({
|
|
8215
8224
|
mode: import_zod10.z.enum(["explicit", "inferred", "fallback"]),
|
|
8216
8225
|
confidence: import_zod10.z.enum(["high", "medium", "low"]),
|
|
@@ -8241,7 +8250,8 @@ var init_types4 = __esm({
|
|
|
8241
8250
|
next_action: import_zod10.z.string(),
|
|
8242
8251
|
blockers: import_zod10.z.array(import_zod10.z.string()).optional(),
|
|
8243
8252
|
merge_blockers: import_zod10.z.array(import_zod10.z.string()).optional(),
|
|
8244
|
-
tests_failing: import_zod10.z.array(import_zod10.z.string()).optional()
|
|
8253
|
+
tests_failing: import_zod10.z.array(import_zod10.z.string()).optional(),
|
|
8254
|
+
provenance: CallerProvenance.optional()
|
|
8245
8255
|
});
|
|
8246
8256
|
CapabilityTier2 = import_zod10.z.enum(["senior", "mid", "junior"]);
|
|
8247
8257
|
TaskComplexity = import_zod10.z.object({
|
|
@@ -8269,7 +8279,7 @@ var init_types4 = __esm({
|
|
|
8269
8279
|
status_snapshot: FrameStatusSnapshot,
|
|
8270
8280
|
keywords: import_zod10.z.array(import_zod10.z.string()).optional(),
|
|
8271
8281
|
atlas_frame_id: import_zod10.z.string().optional(),
|
|
8272
|
-
//
|
|
8282
|
+
// Legacy Policy Neighborhood snapshot reference
|
|
8273
8283
|
feature_flags: import_zod10.z.array(import_zod10.z.string()).optional(),
|
|
8274
8284
|
permissions: import_zod10.z.array(import_zod10.z.string()).optional(),
|
|
8275
8285
|
module_attribution: ModuleAttribution.optional(),
|
|
@@ -13800,7 +13810,7 @@ var init_migrations = __esm({
|
|
|
13800
13810
|
});
|
|
13801
13811
|
|
|
13802
13812
|
// node_modules/@smartergpt/lex/dist/memory/store/postgres/scoped-frame-store.js
|
|
13803
|
-
var import_node_crypto14;
|
|
13813
|
+
var import_node_crypto14, FRAME_STORE_PROTECTED_RELATIONS;
|
|
13804
13814
|
var init_scoped_frame_store3 = __esm({
|
|
13805
13815
|
"node_modules/@smartergpt/lex/dist/memory/store/postgres/scoped-frame-store.js"() {
|
|
13806
13816
|
"use strict";
|
|
@@ -13813,6 +13823,13 @@ var init_scoped_frame_store3 = __esm({
|
|
|
13813
13823
|
init_search_utils();
|
|
13814
13824
|
init_durable_frame_metadata();
|
|
13815
13825
|
init_migrations();
|
|
13826
|
+
FRAME_STORE_PROTECTED_RELATIONS = Object.freeze([
|
|
13827
|
+
"frames",
|
|
13828
|
+
"lex_frame_store_migrations",
|
|
13829
|
+
"lex_frame_store_unowned_frames_v1",
|
|
13830
|
+
"lex_frame_store_recovery_operations",
|
|
13831
|
+
"lex_frame_store_recovery_assignments"
|
|
13832
|
+
]);
|
|
13816
13833
|
}
|
|
13817
13834
|
});
|
|
13818
13835
|
|
|
@@ -25923,7 +25940,7 @@ var import_config3 = require("dotenv/config");
|
|
|
25923
25940
|
// package.json
|
|
25924
25941
|
var package_default = {
|
|
25925
25942
|
name: "@smartergpt/lexrunner",
|
|
25926
|
-
version: "1.5.
|
|
25943
|
+
version: "1.5.2",
|
|
25927
25944
|
type: "module",
|
|
25928
25945
|
engines: {
|
|
25929
25946
|
node: ">=24"
|
|
@@ -26054,7 +26071,7 @@ var package_default = {
|
|
|
26054
26071
|
"@modelcontextprotocol/sdk": "^1.18.2",
|
|
26055
26072
|
"@octokit/auth-token": "^6.0.0",
|
|
26056
26073
|
"@octokit/rest": "^22.0.0",
|
|
26057
|
-
"@smartergpt/lex": "
|
|
26074
|
+
"@smartergpt/lex": "4.0.3",
|
|
26058
26075
|
"@types/babel__traverse": "^7.28.0",
|
|
26059
26076
|
ajv: "^8.20.0",
|
|
26060
26077
|
"better-sqlite3-multiple-ciphers": "^12.6.2",
|
package/dist/cli.d.ts
CHANGED
|
@@ -1251,8 +1251,8 @@ type ArtifactType = keyof typeof ARTIFACT_TYPES;
|
|
|
1251
1251
|
declare const ListArtifactsInputSchema: z.ZodObject<{
|
|
1252
1252
|
runId: z.ZodString;
|
|
1253
1253
|
type: z.ZodOptional<z.ZodEnum<{
|
|
1254
|
-
failure: "failure";
|
|
1255
1254
|
gate: "gate";
|
|
1255
|
+
failure: "failure";
|
|
1256
1256
|
log: "log";
|
|
1257
1257
|
decision: "decision";
|
|
1258
1258
|
report: "report";
|
|
@@ -1270,8 +1270,8 @@ declare const ListArtifactsOutputSchema: z.ZodObject<{
|
|
|
1270
1270
|
artifacts: z.ZodArray<z.ZodObject<{
|
|
1271
1271
|
path: z.ZodString;
|
|
1272
1272
|
type: z.ZodEnum<{
|
|
1273
|
-
failure: "failure";
|
|
1274
1273
|
gate: "gate";
|
|
1274
|
+
failure: "failure";
|
|
1275
1275
|
log: "log";
|
|
1276
1276
|
decision: "decision";
|
|
1277
1277
|
report: "report";
|
|
@@ -2064,6 +2064,7 @@ declare const WorkItem_v1: z.ZodObject<{
|
|
|
2064
2064
|
}, z.core.$strict>;
|
|
2065
2065
|
type WorkItem_v1 = z.infer<typeof WorkItem_v1>;
|
|
2066
2066
|
declare const RunStatus: z.ZodEnum<{
|
|
2067
|
+
created: "created";
|
|
2067
2068
|
blocked: "blocked";
|
|
2068
2069
|
completed: "completed";
|
|
2069
2070
|
planning: "planning";
|
|
@@ -2072,7 +2073,6 @@ declare const RunStatus: z.ZodEnum<{
|
|
|
2072
2073
|
failed: "failed";
|
|
2073
2074
|
paused: "paused";
|
|
2074
2075
|
cancelled: "cancelled";
|
|
2075
|
-
created: "created";
|
|
2076
2076
|
executing: "executing";
|
|
2077
2077
|
delivering: "delivering";
|
|
2078
2078
|
awaiting_human: "awaiting_human";
|
|
@@ -2099,6 +2099,7 @@ declare const Run_v1: z.ZodObject<{
|
|
|
2099
2099
|
release: z.ZodBoolean;
|
|
2100
2100
|
}, z.core.$strict>;
|
|
2101
2101
|
status: z.ZodEnum<{
|
|
2102
|
+
created: "created";
|
|
2102
2103
|
blocked: "blocked";
|
|
2103
2104
|
completed: "completed";
|
|
2104
2105
|
planning: "planning";
|
|
@@ -2107,7 +2108,6 @@ declare const Run_v1: z.ZodObject<{
|
|
|
2107
2108
|
failed: "failed";
|
|
2108
2109
|
paused: "paused";
|
|
2109
2110
|
cancelled: "cancelled";
|
|
2110
|
-
created: "created";
|
|
2111
2111
|
executing: "executing";
|
|
2112
2112
|
delivering: "delivering";
|
|
2113
2113
|
awaiting_human: "awaiting_human";
|
|
@@ -7129,9 +7129,9 @@ declare const AxfExternalAwaitResult_v1: z.ZodObject<{
|
|
|
7129
7129
|
name: z.ZodString;
|
|
7130
7130
|
appSlug: z.ZodNullable<z.ZodString>;
|
|
7131
7131
|
state: z.ZodEnum<{
|
|
7132
|
+
error: "error";
|
|
7132
7133
|
success: "success";
|
|
7133
7134
|
failure: "failure";
|
|
7134
|
-
error: "error";
|
|
7135
7135
|
completed: "completed";
|
|
7136
7136
|
pending: "pending";
|
|
7137
7137
|
missing: "missing";
|
|
@@ -7226,9 +7226,9 @@ declare const AttemptAwaitableTerminalResult_v1: z.ZodObject<{
|
|
|
7226
7226
|
name: z.ZodString;
|
|
7227
7227
|
appSlug: z.ZodNullable<z.ZodString>;
|
|
7228
7228
|
state: z.ZodEnum<{
|
|
7229
|
+
error: "error";
|
|
7229
7230
|
success: "success";
|
|
7230
7231
|
failure: "failure";
|
|
7231
|
-
error: "error";
|
|
7232
7232
|
completed: "completed";
|
|
7233
7233
|
pending: "pending";
|
|
7234
7234
|
missing: "missing";
|
|
@@ -7367,9 +7367,9 @@ declare const AttemptAwaitableRecord_v1: z.ZodObject<{
|
|
|
7367
7367
|
name: z.ZodString;
|
|
7368
7368
|
appSlug: z.ZodNullable<z.ZodString>;
|
|
7369
7369
|
state: z.ZodEnum<{
|
|
7370
|
+
error: "error";
|
|
7370
7371
|
success: "success";
|
|
7371
7372
|
failure: "failure";
|
|
7372
|
-
error: "error";
|
|
7373
7373
|
completed: "completed";
|
|
7374
7374
|
pending: "pending";
|
|
7375
7375
|
missing: "missing";
|
|
@@ -7473,9 +7473,9 @@ declare const AttemptAwaitableCompletion_v1: z.ZodObject<{
|
|
|
7473
7473
|
name: z.ZodString;
|
|
7474
7474
|
appSlug: z.ZodNullable<z.ZodString>;
|
|
7475
7475
|
state: z.ZodEnum<{
|
|
7476
|
+
error: "error";
|
|
7476
7477
|
success: "success";
|
|
7477
7478
|
failure: "failure";
|
|
7478
|
-
error: "error";
|
|
7479
7479
|
completed: "completed";
|
|
7480
7480
|
pending: "pending";
|
|
7481
7481
|
missing: "missing";
|
package/dist/cli.js
CHANGED
|
@@ -455,7 +455,7 @@ import "dotenv/config";
|
|
|
455
455
|
// package.json
|
|
456
456
|
var package_default = {
|
|
457
457
|
name: "@smartergpt/lexrunner",
|
|
458
|
-
version: "1.5.
|
|
458
|
+
version: "1.5.2",
|
|
459
459
|
type: "module",
|
|
460
460
|
engines: {
|
|
461
461
|
node: ">=24"
|
|
@@ -586,7 +586,7 @@ var package_default = {
|
|
|
586
586
|
"@modelcontextprotocol/sdk": "^1.18.2",
|
|
587
587
|
"@octokit/auth-token": "^6.0.0",
|
|
588
588
|
"@octokit/rest": "^22.0.0",
|
|
589
|
-
"@smartergpt/lex": "
|
|
589
|
+
"@smartergpt/lex": "4.0.3",
|
|
590
590
|
"@types/babel__traverse": "^7.28.0",
|
|
591
591
|
ajv: "^8.20.0",
|
|
592
592
|
"better-sqlite3-multiple-ciphers": "^12.6.2",
|
package/dist/errors/index.cjs
CHANGED
|
@@ -133,6 +133,10 @@ var CONFIG_ERROR_CODES = {
|
|
|
133
133
|
var POLICY_ERROR_CODES = {
|
|
134
134
|
/** No policy file found in any search path */
|
|
135
135
|
POLICY_NOT_FOUND: "POLICY_NOT_FOUND",
|
|
136
|
+
/** A policy output already exists and overwrite was not explicit */
|
|
137
|
+
POLICY_ALREADY_EXISTS: "POLICY_ALREADY_EXISTS",
|
|
138
|
+
/** A constrained policy source directory resolves outside the repository */
|
|
139
|
+
POLICY_SOURCE_DIR_OUTSIDE_ROOT: "POLICY_SOURCE_DIR_OUTSIDE_ROOT",
|
|
136
140
|
/** Policy file exists but has invalid JSON */
|
|
137
141
|
POLICY_PARSE_ERROR: "POLICY_PARSE_ERROR",
|
|
138
142
|
/** Policy file fails schema validation */
|
package/dist/frames/index.cjs
CHANGED
|
@@ -9913,6 +9913,10 @@ var CONFIG_ERROR_CODES = {
|
|
|
9913
9913
|
var POLICY_ERROR_CODES = {
|
|
9914
9914
|
/** No policy file found in any search path */
|
|
9915
9915
|
POLICY_NOT_FOUND: "POLICY_NOT_FOUND",
|
|
9916
|
+
/** A policy output already exists and overwrite was not explicit */
|
|
9917
|
+
POLICY_ALREADY_EXISTS: "POLICY_ALREADY_EXISTS",
|
|
9918
|
+
/** A constrained policy source directory resolves outside the repository */
|
|
9919
|
+
POLICY_SOURCE_DIR_OUTSIDE_ROOT: "POLICY_SOURCE_DIR_OUTSIDE_ROOT",
|
|
9916
9920
|
/** Policy file exists but has invalid JSON */
|
|
9917
9921
|
POLICY_PARSE_ERROR: "POLICY_PARSE_ERROR",
|
|
9918
9922
|
/** Policy file fails schema validation */
|
|
@@ -10436,7 +10440,10 @@ var CLI_CAPABILITIES = Object.freeze({
|
|
|
10436
10440
|
check: Object.freeze([]),
|
|
10437
10441
|
timeline: Object.freeze([RUNTIME_OPERATION_CAPABILITIES.FRAME_READ]),
|
|
10438
10442
|
"frames:export": Object.freeze([RUNTIME_OPERATION_CAPABILITIES.FRAME_READ]),
|
|
10439
|
-
"frames:import": Object.freeze([
|
|
10443
|
+
"frames:import": Object.freeze([
|
|
10444
|
+
RUNTIME_OPERATION_CAPABILITIES.FRAME_READ,
|
|
10445
|
+
RUNTIME_OPERATION_CAPABILITIES.FRAME_WRITE
|
|
10446
|
+
]),
|
|
10440
10447
|
"db:vacuum": Object.freeze([RUNTIME_OPERATION_CAPABILITIES.FRAME_ADMIN]),
|
|
10441
10448
|
"db:backup": Object.freeze([RUNTIME_OPERATION_CAPABILITIES.FRAME_ADMIN]),
|
|
10442
10449
|
"db:repair": Object.freeze([RUNTIME_OPERATION_CAPABILITIES.FRAME_ADMIN]),
|
|
@@ -10447,6 +10454,7 @@ var CLI_CAPABILITIES = Object.freeze({
|
|
|
10447
10454
|
"db:encrypt": Object.freeze([RUNTIME_OPERATION_CAPABILITIES.FRAME_ADMIN]),
|
|
10448
10455
|
"db:stats": Object.freeze([RUNTIME_OPERATION_CAPABILITIES.FRAME_READ]),
|
|
10449
10456
|
"policy:check": Object.freeze([]),
|
|
10457
|
+
"policy:generate": Object.freeze([]),
|
|
10450
10458
|
"policy:add-module": Object.freeze([]),
|
|
10451
10459
|
"instructions:init": Object.freeze([]),
|
|
10452
10460
|
"instructions:generate": Object.freeze([]),
|
|
@@ -10936,6 +10944,7 @@ var FrameSpendMetadata = import_zod5.z.object({
|
|
|
10936
10944
|
prompts: import_zod5.z.number().optional(),
|
|
10937
10945
|
tokens_estimated: import_zod5.z.number().optional()
|
|
10938
10946
|
});
|
|
10947
|
+
var CallerProvenance = import_zod5.z.record(import_zod5.z.string(), import_zod5.z.json());
|
|
10939
10948
|
var ModuleAttribution = import_zod5.z.object({
|
|
10940
10949
|
mode: import_zod5.z.enum(["explicit", "inferred", "fallback"]),
|
|
10941
10950
|
confidence: import_zod5.z.enum(["high", "medium", "low"]),
|
|
@@ -10966,7 +10975,8 @@ var FrameStatusSnapshot = import_zod5.z.object({
|
|
|
10966
10975
|
next_action: import_zod5.z.string(),
|
|
10967
10976
|
blockers: import_zod5.z.array(import_zod5.z.string()).optional(),
|
|
10968
10977
|
merge_blockers: import_zod5.z.array(import_zod5.z.string()).optional(),
|
|
10969
|
-
tests_failing: import_zod5.z.array(import_zod5.z.string()).optional()
|
|
10978
|
+
tests_failing: import_zod5.z.array(import_zod5.z.string()).optional(),
|
|
10979
|
+
provenance: CallerProvenance.optional()
|
|
10970
10980
|
});
|
|
10971
10981
|
var CapabilityTier = import_zod5.z.enum(["senior", "mid", "junior"]);
|
|
10972
10982
|
var TaskComplexity = import_zod5.z.object({
|
|
@@ -10994,7 +11004,7 @@ var Frame = import_zod5.z.object({
|
|
|
10994
11004
|
status_snapshot: FrameStatusSnapshot,
|
|
10995
11005
|
keywords: import_zod5.z.array(import_zod5.z.string()).optional(),
|
|
10996
11006
|
atlas_frame_id: import_zod5.z.string().optional(),
|
|
10997
|
-
//
|
|
11007
|
+
// Legacy Policy Neighborhood snapshot reference
|
|
10998
11008
|
feature_flags: import_zod5.z.array(import_zod5.z.string()).optional(),
|
|
10999
11009
|
permissions: import_zod5.z.array(import_zod5.z.string()).optional(),
|
|
11000
11010
|
module_attribution: ModuleAttribution.optional(),
|
|
@@ -11218,6 +11228,13 @@ var COMPATIBILITY_OBJECTS = Object.freeze({
|
|
|
11218
11228
|
|
|
11219
11229
|
// node_modules/@smartergpt/lex/dist/memory/store/postgres/scoped-frame-store.js
|
|
11220
11230
|
var import_node_crypto14 = require("crypto");
|
|
11231
|
+
var FRAME_STORE_PROTECTED_RELATIONS = Object.freeze([
|
|
11232
|
+
"frames",
|
|
11233
|
+
"lex_frame_store_migrations",
|
|
11234
|
+
"lex_frame_store_unowned_frames_v1",
|
|
11235
|
+
"lex_frame_store_recovery_operations",
|
|
11236
|
+
"lex_frame_store_recovery_assignments"
|
|
11237
|
+
]);
|
|
11221
11238
|
|
|
11222
11239
|
// node_modules/@smartergpt/lex/dist/memory/store/postgres/behavioral-store.js
|
|
11223
11240
|
var import_node_crypto15 = require("crypto");
|
package/dist/sdk/index.d.ts
CHANGED
|
@@ -62,8 +62,8 @@ type GateStatus = z.infer<typeof GateStatus>;
|
|
|
62
62
|
* Merge status
|
|
63
63
|
*/
|
|
64
64
|
declare const MergeStatus: z.ZodEnum<{
|
|
65
|
-
success: "success";
|
|
66
65
|
error: "error";
|
|
66
|
+
success: "success";
|
|
67
67
|
conflict: "conflict";
|
|
68
68
|
}>;
|
|
69
69
|
type MergeStatus = z.infer<typeof MergeStatus>;
|
|
@@ -71,8 +71,8 @@ type MergeStatus = z.infer<typeof MergeStatus>;
|
|
|
71
71
|
* Audit profile
|
|
72
72
|
*/
|
|
73
73
|
declare const AuditProfile: z.ZodEnum<{
|
|
74
|
-
debug: "debug";
|
|
75
74
|
basic: "basic";
|
|
75
|
+
debug: "debug";
|
|
76
76
|
standard: "standard";
|
|
77
77
|
compliance: "compliance";
|
|
78
78
|
}>;
|
|
@@ -167,8 +167,8 @@ type MergeDryRunStartedPayload = z.infer<typeof MergeDryRunStartedPayload>;
|
|
|
167
167
|
declare const MergeDryRunFinishedPayload: z.ZodObject<{
|
|
168
168
|
item: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
169
169
|
status: z.ZodEnum<{
|
|
170
|
-
success: "success";
|
|
171
170
|
error: "error";
|
|
171
|
+
success: "success";
|
|
172
172
|
conflict: "conflict";
|
|
173
173
|
}>;
|
|
174
174
|
conflicts: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -188,8 +188,8 @@ type MergeConflictDetectedPayload = z.infer<typeof MergeConflictDetectedPayload>
|
|
|
188
188
|
declare const MergeFinishedPayload: z.ZodObject<{
|
|
189
189
|
item: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
190
190
|
status: z.ZodEnum<{
|
|
191
|
-
success: "success";
|
|
192
191
|
error: "error";
|
|
192
|
+
success: "success";
|
|
193
193
|
conflict: "conflict";
|
|
194
194
|
}>;
|
|
195
195
|
commit: z.ZodOptional<z.ZodString>;
|
|
@@ -595,8 +595,8 @@ declare const MergeDryRunFinishedEvent: z.ZodObject<{
|
|
|
595
595
|
payload: z.ZodObject<{
|
|
596
596
|
item: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
597
597
|
status: z.ZodEnum<{
|
|
598
|
-
success: "success";
|
|
599
598
|
error: "error";
|
|
599
|
+
success: "success";
|
|
600
600
|
conflict: "conflict";
|
|
601
601
|
}>;
|
|
602
602
|
conflicts: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -718,8 +718,8 @@ declare const MergeFinishedEvent: z.ZodObject<{
|
|
|
718
718
|
payload: z.ZodObject<{
|
|
719
719
|
item: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
720
720
|
status: z.ZodEnum<{
|
|
721
|
-
success: "success";
|
|
722
721
|
error: "error";
|
|
722
|
+
success: "success";
|
|
723
723
|
conflict: "conflict";
|
|
724
724
|
}>;
|
|
725
725
|
commit: z.ZodOptional<z.ZodString>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smartergpt/lexrunner",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=24"
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
"@modelcontextprotocol/sdk": "^1.18.2",
|
|
132
132
|
"@octokit/auth-token": "^6.0.0",
|
|
133
133
|
"@octokit/rest": "^22.0.0",
|
|
134
|
-
"@smartergpt/lex": "
|
|
134
|
+
"@smartergpt/lex": "4.0.3",
|
|
135
135
|
"@types/babel__traverse": "^7.28.0",
|
|
136
136
|
"ajv": "^8.20.0",
|
|
137
137
|
"better-sqlite3-multiple-ciphers": "^12.6.2",
|