@lakitu/sdk 0.1.54 → 0.1.56
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/convex/cloud/CLAUDE.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
# Agent Orchestration System
|
|
1
|
+
# Agent Orchestration System (Lakitu Cloud Component)
|
|
2
|
+
|
|
3
|
+
> **NOTE**: This folder is part of the `@lakitu/sdk` git submodule.
|
|
4
|
+
> Changes here require: version bump → push → wait for npm → rebuild sandbox.
|
|
5
|
+
> See `/submodules/lakitu-sdk/CLAUDE.md` for the complete workflow.
|
|
2
6
|
|
|
3
7
|
This folder contains the agent orchestration layer that coordinates AI agents running in E2B sandboxes. It bridges the Jibe frontend with the Lakitu agent runtime.
|
|
4
8
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../../../cli/commands/build.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAaH,UAAU,YAAY;IACpB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;
|
|
1
|
+
{"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../../../cli/commands/build.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAaH,UAAU,YAAY;IACpB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAmND,wBAAsB,KAAK,CAAC,OAAO,EAAE,YAAY,iBAgBhD"}
|
|
@@ -160,6 +160,10 @@ RUN curl -L -o /usr/local/bin/lightpanda https://github.com/lightpanda-io/browse
|
|
|
160
160
|
# Python: Playwright for CDP connection to Lightpanda
|
|
161
161
|
RUN pip3 install playwright markitdown
|
|
162
162
|
|
|
163
|
+
# Patchright - stealth Chromium that bypasses CDP detection (Cloudflare, DataDome)
|
|
164
|
+
# https://github.com/Kaliiiiiiiiii-Vinyzu/patchright
|
|
165
|
+
RUN npm install -g patchright && npx patchright install chrome
|
|
166
|
+
|
|
163
167
|
# Create CLI tools (must be root)
|
|
164
168
|
RUN printf '#!/bin/bash\\nbun run /home/user/lakitu/runtime/pdf/pdf-generator.ts "$$@"\\n' > /usr/local/bin/generate-pdf && chmod +x /usr/local/bin/generate-pdf
|
|
165
169
|
RUN printf '#!/bin/bash\\nbun run /home/user/lakitu/runtime/browser/agent-browser-cli.ts "$$@"\\n' > /usr/local/bin/agent-browser && chmod +x /usr/local/bin/agent-browser
|