luca 3.0.2 → 3.1.0
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/bun.lock +45 -0
- package/commands/social.ts +137 -0
- package/datasets/lora/agentic-loop-session-candidates.jsonl +91 -0
- package/datasets/lora/agentic-loop-session-curation-summary.json +123 -0
- package/datasets/lora/luca-session-candidates.jsonl +29 -0
- package/datasets/lora/luca-session-curation-summary.json +121 -0
- package/datasets/lora/review-batch-1.jsonl +30 -0
- package/datasets/lora/review-manifest.json +41 -0
- package/datasets/lora/review-queue.jsonl +120 -0
- package/datasets/lora/review-schema.json +134 -0
- package/datasets/lora/review-template.jsonl +2 -0
- package/datasets/lora/review-ui.html +725 -0
- package/features/cipher-social.ts +493 -0
- package/package.json +6 -1
- package/scripts/curate-claude-sessions.ts +561 -0
- package/src/cli/build-info.ts +2 -2
- package/src/introspection/generated.agi.ts +13140 -12190
- package/src/introspection/generated.node.ts +3087 -2137
- package/src/node/container.ts +8 -0
- package/src/node/features/helpers.ts +12 -0
- package/src/node/features/socket-repl.ts +336 -0
- package/src/node/features/telnyx-assistant-connector.ts +1206 -0
- package/src/node/features/vm.ts +17 -0
- package/index.ts +0 -1
package/src/node/features/vm.ts
CHANGED
|
@@ -165,6 +165,15 @@ export class VM<
|
|
|
165
165
|
Buffer,
|
|
166
166
|
URL,
|
|
167
167
|
URLSearchParams,
|
|
168
|
+
AbortController,
|
|
169
|
+
AbortSignal,
|
|
170
|
+
FormData,
|
|
171
|
+
Blob,
|
|
172
|
+
File,
|
|
173
|
+
Headers,
|
|
174
|
+
Request,
|
|
175
|
+
Response,
|
|
176
|
+
fetch,
|
|
168
177
|
...this.container.context,
|
|
169
178
|
...ctx
|
|
170
179
|
})
|
|
@@ -451,6 +460,14 @@ export class VM<
|
|
|
451
460
|
Buffer,
|
|
452
461
|
URL,
|
|
453
462
|
URLSearchParams,
|
|
463
|
+
AbortController,
|
|
464
|
+
AbortSignal,
|
|
465
|
+
FormData,
|
|
466
|
+
Blob,
|
|
467
|
+
File,
|
|
468
|
+
Headers,
|
|
469
|
+
Request,
|
|
470
|
+
Response,
|
|
454
471
|
fetch,
|
|
455
472
|
...ctx,
|
|
456
473
|
})
|
package/index.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
console.log("Hello via Bun!");
|