lody 0.41.13-next.1 → 0.42.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/dist/index.js +44 -59
- package/dist/zstd.wasm +0 -0
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -22780,7 +22780,7 @@ Event: ${getEventDescription(event)}`);
|
|
|
22780
22780
|
const mergedOptions = {
|
|
22781
22781
|
...options,
|
|
22782
22782
|
dsn: options.dsn ?? "https://080f9de535ff335a1a0440d0e385f796@o4510491299086336.ingest.us.sentry.io/4510559045681152",
|
|
22783
|
-
environment: options.environment ?? "
|
|
22783
|
+
environment: options.environment ?? "production",
|
|
22784
22784
|
sendClientReports: options.sendClientReports ?? true,
|
|
22785
22785
|
transport: options.transport ?? makeNodeTransport,
|
|
22786
22786
|
stackParser: stackParserFromStackParserOptions(options.stackParser || defaultStackParser),
|
|
@@ -36820,7 +36820,7 @@ Mongoose Error Code: ${error2.code}` : ""}`
|
|
|
36820
36820
|
return client;
|
|
36821
36821
|
}
|
|
36822
36822
|
const name = "lody";
|
|
36823
|
-
const version$4 = "0.
|
|
36823
|
+
const version$4 = "0.42.0";
|
|
36824
36824
|
const description = "Lody Agent CLI tool for managing remote command execution";
|
|
36825
36825
|
const type = "module";
|
|
36826
36826
|
const main$3 = "dist/index.js";
|
|
@@ -36831,7 +36831,7 @@ Mongoose Error Code: ${error2.code}` : ""}`
|
|
|
36831
36831
|
"dev": "node dev.mjs",
|
|
36832
36832
|
"dev:staging": "LODY_AUTH_URL=https://impressive-guineapig-165.convex.cloud LODY_AUTH_SITE_URL=https://impressive-guineapig-165.convex.site LODY_SERVER_URL=https://lody-server.lz-9c5.workers.dev SITE_URL=https://main.lody.pages.dev/ pnpm run dev",
|
|
36833
36833
|
"dev:prod": "LODY_AUTH_URL=https://nautical-curlew-181.convex.cloud LODY_SERVER_URL=https://api.lody.ai pnpm run dev",
|
|
36834
|
-
"build": "pnpm run clean && pnpm run typecheck && pnpm run build:bundle",
|
|
36834
|
+
"build": "pnpm run clean && pnpm run typecheck && pnpm run build:bundle && pnpm run copy:wasm",
|
|
36835
36835
|
"build:watch": "pnpm run build:bundle -- --watch",
|
|
36836
36836
|
"build:bundle": "vite build",
|
|
36837
36837
|
"copy:wasm": "node scripts/copy-loro-wasm.js",
|
|
@@ -37082,15 +37082,15 @@ Mongoose Error Code: ${error2.code}` : ""}`
|
|
|
37082
37082
|
return "dev";
|
|
37083
37083
|
}
|
|
37084
37084
|
};
|
|
37085
|
-
const getRuntimeEnv = () => normalizeRuntimeEnv("
|
|
37085
|
+
const getRuntimeEnv = () => normalizeRuntimeEnv("production");
|
|
37086
37086
|
const isDevEnv = () => getRuntimeEnv() === "dev";
|
|
37087
37087
|
const runtimeEnv = getRuntimeEnv();
|
|
37088
|
-
const environment = "
|
|
37088
|
+
const environment = "production";
|
|
37089
37089
|
const dsn = "https://080f9de535ff335a1a0440d0e385f796@o4510491299086336.ingest.us.sentry.io/4510559045681152";
|
|
37090
37090
|
const postHogHost = process.env.LODY_POSTHOG_HOST ?? "https://us.i.posthog.com";
|
|
37091
37091
|
const postHogKey = process.env.LODY_POSTHOG_KEY ?? "phc_LFS5i5WIwg4irAhrG5oJR04iYPhReVZ3DdFZOKqCkjG";
|
|
37092
|
-
const tracesSampleRate = Number(process.env.SENTRY_TRACES_SAMPLE_RATE) ||
|
|
37093
|
-
const profilesSampleRate = Number(process.env.SENTRY_PROFILES_SAMPLE_RATE) || 0.
|
|
37092
|
+
const tracesSampleRate = Number(process.env.SENTRY_TRACES_SAMPLE_RATE) || 0.2;
|
|
37093
|
+
const profilesSampleRate = Number(process.env.SENTRY_PROFILES_SAMPLE_RATE) || 0.1;
|
|
37094
37094
|
const sentryEnabled = runtimeEnv !== "dev" && true;
|
|
37095
37095
|
const postHogEnabled = runtimeEnv !== "dev" && process.env.LODY_POSTHOG_DISABLED !== "1";
|
|
37096
37096
|
const release = `${name}@${version$4}`;
|
|
@@ -64622,16 +64622,16 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
64622
64622
|
}
|
|
64623
64623
|
return _v4(options, buf, offset2);
|
|
64624
64624
|
}
|
|
64625
|
-
let LODY_AUTH_URL = "https://
|
|
64625
|
+
let LODY_AUTH_URL = "https://nautical-curlew-181.convex.cloud";
|
|
64626
64626
|
let LODY_AUTH_SITE_URL = "";
|
|
64627
|
-
let LODY_SERVER_URL = "https://lody
|
|
64628
|
-
let SITE_URL = "https://
|
|
64627
|
+
let LODY_SERVER_URL = "https://api.lody.ai";
|
|
64628
|
+
let SITE_URL = "https://lody.ai";
|
|
64629
64629
|
let SITE_APP_BASE_PATH = "";
|
|
64630
64630
|
const loadEnv = () => {
|
|
64631
|
-
LODY_AUTH_URL = "https://
|
|
64631
|
+
LODY_AUTH_URL = "https://nautical-curlew-181.convex.cloud";
|
|
64632
64632
|
LODY_AUTH_SITE_URL = "";
|
|
64633
|
-
LODY_SERVER_URL = "https://lody
|
|
64634
|
-
SITE_URL = "https://
|
|
64633
|
+
LODY_SERVER_URL = "https://api.lody.ai";
|
|
64634
|
+
SITE_URL = "https://lody.ai";
|
|
64635
64635
|
SITE_APP_BASE_PATH = process.env["SITE_APP_BASE_PATH"] ?? "";
|
|
64636
64636
|
};
|
|
64637
64637
|
function getSystemMachineId() {
|
|
@@ -78612,12 +78612,12 @@ Task description:
|
|
|
78612
78612
|
{
|
|
78613
78613
|
id: "auggie",
|
|
78614
78614
|
name: "Auggie CLI",
|
|
78615
|
-
version: "0.
|
|
78615
|
+
version: "0.23.0",
|
|
78616
78616
|
description: "Augment Code's powerful software agent, backed by industry-leading context engine",
|
|
78617
78617
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/auggie.svg",
|
|
78618
78618
|
distribution: {
|
|
78619
78619
|
npx: {
|
|
78620
|
-
package: "@augmentcode/auggie@0.
|
|
78620
|
+
package: "@augmentcode/auggie@0.23.0",
|
|
78621
78621
|
args: [
|
|
78622
78622
|
"--acp"
|
|
78623
78623
|
],
|
|
@@ -78642,12 +78642,12 @@ Task description:
|
|
|
78642
78642
|
{
|
|
78643
78643
|
id: "cline",
|
|
78644
78644
|
name: "Cline",
|
|
78645
|
-
version: "2.
|
|
78645
|
+
version: "2.13.0",
|
|
78646
78646
|
description: "Autonomous coding agent CLI - capable of creating/editing files, running commands, using the browser, and more",
|
|
78647
78647
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/cline.svg",
|
|
78648
78648
|
distribution: {
|
|
78649
78649
|
npx: {
|
|
78650
|
-
package: "cline@2.
|
|
78650
|
+
package: "cline@2.13.0",
|
|
78651
78651
|
args: [
|
|
78652
78652
|
"--acp"
|
|
78653
78653
|
]
|
|
@@ -78657,12 +78657,12 @@ Task description:
|
|
|
78657
78657
|
{
|
|
78658
78658
|
id: "codebuddy-code",
|
|
78659
78659
|
name: "Codebuddy Code",
|
|
78660
|
-
version: "2.
|
|
78660
|
+
version: "2.81.2",
|
|
78661
78661
|
description: "Tencent Cloud's official intelligent coding tool",
|
|
78662
78662
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/codebuddy-code.svg",
|
|
78663
78663
|
distribution: {
|
|
78664
78664
|
npx: {
|
|
78665
|
-
package: "@tencent-ai/codebuddy-code@2.
|
|
78665
|
+
package: "@tencent-ai/codebuddy-code@2.81.2",
|
|
78666
78666
|
args: [
|
|
78667
78667
|
"--acp"
|
|
78668
78668
|
]
|
|
@@ -78672,7 +78672,7 @@ Task description:
|
|
|
78672
78672
|
{
|
|
78673
78673
|
id: "cursor",
|
|
78674
78674
|
name: "Cursor",
|
|
78675
|
-
version: "
|
|
78675
|
+
version: "2026.03.30",
|
|
78676
78676
|
description: "Cursor's coding agent",
|
|
78677
78677
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/cursor.svg",
|
|
78678
78678
|
distribution: {
|
|
@@ -78690,39 +78690,24 @@ Task description:
|
|
|
78690
78690
|
{
|
|
78691
78691
|
id: "deepagents",
|
|
78692
78692
|
name: "DeepAgents",
|
|
78693
|
-
version: "0.1.
|
|
78693
|
+
version: "0.1.7",
|
|
78694
78694
|
description: "Batteries-included AI coding and general purpose agent powered by LangChain.",
|
|
78695
78695
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/deepagents.svg",
|
|
78696
78696
|
distribution: {
|
|
78697
78697
|
npx: {
|
|
78698
|
-
package: "deepagents-acp@0.1.
|
|
78699
|
-
}
|
|
78700
|
-
}
|
|
78701
|
-
},
|
|
78702
|
-
{
|
|
78703
|
-
id: "dimcode",
|
|
78704
|
-
name: "DimCode",
|
|
78705
|
-
version: "0.0.18",
|
|
78706
|
-
description: "A coding agent that puts leading models at your command.",
|
|
78707
|
-
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/dimcode.svg",
|
|
78708
|
-
distribution: {
|
|
78709
|
-
npx: {
|
|
78710
|
-
package: "dimcode@0.0.18",
|
|
78711
|
-
args: [
|
|
78712
|
-
"acp"
|
|
78713
|
-
]
|
|
78698
|
+
package: "deepagents-acp@0.1.7"
|
|
78714
78699
|
}
|
|
78715
78700
|
}
|
|
78716
78701
|
},
|
|
78717
78702
|
{
|
|
78718
78703
|
id: "factory-droid",
|
|
78719
78704
|
name: "Factory Droid",
|
|
78720
|
-
version: "0.
|
|
78705
|
+
version: "0.97.0",
|
|
78721
78706
|
description: "Factory Droid - AI coding agent powered by Factory AI",
|
|
78722
78707
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/factory-droid.svg",
|
|
78723
78708
|
distribution: {
|
|
78724
78709
|
npx: {
|
|
78725
|
-
package: "droid@0.
|
|
78710
|
+
package: "droid@0.97.0",
|
|
78726
78711
|
args: [
|
|
78727
78712
|
"exec",
|
|
78728
78713
|
"--output-format",
|
|
@@ -78738,12 +78723,12 @@ Task description:
|
|
|
78738
78723
|
{
|
|
78739
78724
|
id: "gemini",
|
|
78740
78725
|
name: "Gemini CLI",
|
|
78741
|
-
version: "0.
|
|
78726
|
+
version: "0.37.1",
|
|
78742
78727
|
description: "Google's official CLI for Gemini",
|
|
78743
78728
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/gemini.svg",
|
|
78744
78729
|
distribution: {
|
|
78745
78730
|
npx: {
|
|
78746
|
-
package: "@google/gemini-cli@0.
|
|
78731
|
+
package: "@google/gemini-cli@0.37.1",
|
|
78747
78732
|
args: [
|
|
78748
78733
|
"--acp"
|
|
78749
78734
|
]
|
|
@@ -78753,12 +78738,12 @@ Task description:
|
|
|
78753
78738
|
{
|
|
78754
78739
|
id: "github-copilot-cli",
|
|
78755
78740
|
name: "GitHub Copilot",
|
|
78756
|
-
version: "1.0.
|
|
78741
|
+
version: "1.0.21",
|
|
78757
78742
|
description: "GitHub's AI pair programmer",
|
|
78758
78743
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/github-copilot-cli.svg",
|
|
78759
78744
|
distribution: {
|
|
78760
78745
|
npx: {
|
|
78761
|
-
package: "@github/copilot@1.0.
|
|
78746
|
+
package: "@github/copilot@1.0.21",
|
|
78762
78747
|
args: [
|
|
78763
78748
|
"--acp"
|
|
78764
78749
|
]
|
|
@@ -78768,7 +78753,7 @@ Task description:
|
|
|
78768
78753
|
{
|
|
78769
78754
|
id: "goose",
|
|
78770
78755
|
name: "goose",
|
|
78771
|
-
version: "1.
|
|
78756
|
+
version: "1.30.0",
|
|
78772
78757
|
description: "A local, extensible, open source AI agent that automates engineering tasks",
|
|
78773
78758
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/goose.svg",
|
|
78774
78759
|
distribution: {
|
|
@@ -78786,7 +78771,7 @@ Task description:
|
|
|
78786
78771
|
{
|
|
78787
78772
|
id: "junie",
|
|
78788
78773
|
name: "Junie",
|
|
78789
|
-
version: "
|
|
78774
|
+
version: "1321.57.0",
|
|
78790
78775
|
description: "AI Coding Agent by JetBrains",
|
|
78791
78776
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/junie.svg",
|
|
78792
78777
|
distribution: {
|
|
@@ -78804,12 +78789,12 @@ Task description:
|
|
|
78804
78789
|
{
|
|
78805
78790
|
id: "kilo",
|
|
78806
78791
|
name: "Kilo",
|
|
78807
|
-
version: "7.1
|
|
78792
|
+
version: "7.2.1",
|
|
78808
78793
|
description: "The open source coding agent",
|
|
78809
78794
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/kilo.svg",
|
|
78810
78795
|
distribution: {
|
|
78811
78796
|
npx: {
|
|
78812
|
-
package: "@kilocode/cli@7.1
|
|
78797
|
+
package: "@kilocode/cli@7.2.1",
|
|
78813
78798
|
args: [
|
|
78814
78799
|
"acp"
|
|
78815
78800
|
]
|
|
@@ -78819,7 +78804,7 @@ Task description:
|
|
|
78819
78804
|
{
|
|
78820
78805
|
id: "kimi",
|
|
78821
78806
|
name: "Kimi CLI",
|
|
78822
|
-
version: "1.
|
|
78807
|
+
version: "1.30.0",
|
|
78823
78808
|
description: "Moonshot AI's coding assistant",
|
|
78824
78809
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/kimi.svg",
|
|
78825
78810
|
distribution: {
|
|
@@ -78855,7 +78840,7 @@ Task description:
|
|
|
78855
78840
|
{
|
|
78856
78841
|
id: "mistral-vibe",
|
|
78857
78842
|
name: "Mistral Vibe",
|
|
78858
|
-
version: "2.
|
|
78843
|
+
version: "2.7.3",
|
|
78859
78844
|
description: "Mistral's open-source coding assistant",
|
|
78860
78845
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/mistral-vibe.svg",
|
|
78861
78846
|
distribution: {
|
|
@@ -78871,12 +78856,12 @@ Task description:
|
|
|
78871
78856
|
{
|
|
78872
78857
|
id: "nova",
|
|
78873
78858
|
name: "Nova",
|
|
78874
|
-
version: "1.0.
|
|
78859
|
+
version: "1.0.95",
|
|
78875
78860
|
description: "Nova by Compass AI - a fully-fledged software engineer at your command",
|
|
78876
78861
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/nova.svg",
|
|
78877
78862
|
distribution: {
|
|
78878
78863
|
npx: {
|
|
78879
|
-
package: "@compass-ai/nova@1.0.
|
|
78864
|
+
package: "@compass-ai/nova@1.0.95",
|
|
78880
78865
|
args: [
|
|
78881
78866
|
"acp"
|
|
78882
78867
|
]
|
|
@@ -78886,7 +78871,7 @@ Task description:
|
|
|
78886
78871
|
{
|
|
78887
78872
|
id: "opencode",
|
|
78888
78873
|
name: "OpenCode",
|
|
78889
|
-
version: "1.
|
|
78874
|
+
version: "1.4.1",
|
|
78890
78875
|
description: "The open source coding agent",
|
|
78891
78876
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/opencode.svg",
|
|
78892
78877
|
distribution: {
|
|
@@ -78904,24 +78889,24 @@ Task description:
|
|
|
78904
78889
|
{
|
|
78905
78890
|
id: "pi-acp",
|
|
78906
78891
|
name: "pi ACP",
|
|
78907
|
-
version: "0.0.
|
|
78892
|
+
version: "0.0.25",
|
|
78908
78893
|
description: "ACP adapter for pi coding agent",
|
|
78909
78894
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/pi-acp.svg",
|
|
78910
78895
|
distribution: {
|
|
78911
78896
|
npx: {
|
|
78912
|
-
package: "pi-acp@0.0.
|
|
78897
|
+
package: "pi-acp@0.0.25"
|
|
78913
78898
|
}
|
|
78914
78899
|
}
|
|
78915
78900
|
},
|
|
78916
78901
|
{
|
|
78917
78902
|
id: "qoder",
|
|
78918
78903
|
name: "Qoder CLI",
|
|
78919
|
-
version: "0.1.
|
|
78904
|
+
version: "0.1.39",
|
|
78920
78905
|
description: "AI coding assistant with agentic capabilities",
|
|
78921
78906
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/qoder.svg",
|
|
78922
78907
|
distribution: {
|
|
78923
78908
|
npx: {
|
|
78924
|
-
package: "@qoder-ai/qodercli@0.1.
|
|
78909
|
+
package: "@qoder-ai/qodercli@0.1.39",
|
|
78925
78910
|
args: [
|
|
78926
78911
|
"--acp"
|
|
78927
78912
|
]
|
|
@@ -78931,12 +78916,12 @@ Task description:
|
|
|
78931
78916
|
{
|
|
78932
78917
|
id: "qwen-code",
|
|
78933
78918
|
name: "Qwen Code",
|
|
78934
|
-
version: "0.
|
|
78919
|
+
version: "0.14.2",
|
|
78935
78920
|
description: "Alibaba's Qwen coding assistant",
|
|
78936
78921
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/qwen-code.svg",
|
|
78937
78922
|
distribution: {
|
|
78938
78923
|
npx: {
|
|
78939
|
-
package: "@qwen-code/qwen-code@0.
|
|
78924
|
+
package: "@qwen-code/qwen-code@0.14.2",
|
|
78940
78925
|
args: [
|
|
78941
78926
|
"--acp",
|
|
78942
78927
|
"--experimental-skills"
|
|
@@ -78947,7 +78932,7 @@ Task description:
|
|
|
78947
78932
|
{
|
|
78948
78933
|
id: "stakpak",
|
|
78949
78934
|
name: "Stakpak",
|
|
78950
|
-
version: "0.3.
|
|
78935
|
+
version: "0.3.73",
|
|
78951
78936
|
description: "Open-source DevOps agent in Rust with enterprise-grade security",
|
|
78952
78937
|
icon: "https://cdn.agentclientprotocol.com/registry/v1/latest/stakpak.svg",
|
|
78953
78938
|
distribution: {
|
package/dist/zstd.wasm
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lody",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.42.0",
|
|
4
4
|
"description": "Lody Agent CLI tool for managing remote command execution",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -86,9 +86,9 @@
|
|
|
86
86
|
"winston-daily-rotate-file": "^5.0.0",
|
|
87
87
|
"winston-transport": "^4.7.1",
|
|
88
88
|
"@lody/cli-supervisor": "0.0.1",
|
|
89
|
+
"@lody/convex": "0.0.1",
|
|
89
90
|
"@lody/loro-streams-rpc": "0.0.1",
|
|
90
91
|
"@lody/shared": "0.0.1",
|
|
91
|
-
"@lody/convex": "0.0.1",
|
|
92
92
|
"loro-code": "0.0.1"
|
|
93
93
|
},
|
|
94
94
|
"files": [
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"dev": "node dev.mjs",
|
|
102
102
|
"dev:staging": "LODY_AUTH_URL=https://impressive-guineapig-165.convex.cloud LODY_AUTH_SITE_URL=https://impressive-guineapig-165.convex.site LODY_SERVER_URL=https://lody-server.lz-9c5.workers.dev SITE_URL=https://main.lody.pages.dev/ pnpm run dev",
|
|
103
103
|
"dev:prod": "LODY_AUTH_URL=https://nautical-curlew-181.convex.cloud LODY_SERVER_URL=https://api.lody.ai pnpm run dev",
|
|
104
|
-
"build": "pnpm run clean && pnpm run typecheck && pnpm run build:bundle",
|
|
104
|
+
"build": "pnpm run clean && pnpm run typecheck && pnpm run build:bundle && pnpm run copy:wasm",
|
|
105
105
|
"build:watch": "pnpm run build:bundle -- --watch",
|
|
106
106
|
"build:bundle": "vite build",
|
|
107
107
|
"copy:wasm": "node scripts/copy-loro-wasm.js",
|