iwebgenics-ai 1.0.2 → 1.0.4
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/cli.mjs +82 -82
- package/package.json +15 -5
package/dist/cli.mjs
CHANGED
|
@@ -93458,7 +93458,7 @@ var init_isEqual = __esm({
|
|
|
93458
93458
|
|
|
93459
93459
|
// src/utils/userAgent.ts
|
|
93460
93460
|
function getClaudeCodeUserAgent() {
|
|
93461
|
-
return `claude-code/${"1.0.
|
|
93461
|
+
return `claude-code/${"1.0.2"}`;
|
|
93462
93462
|
}
|
|
93463
93463
|
var init_userAgent = __esm({
|
|
93464
93464
|
"src/utils/userAgent.ts"() {
|
|
@@ -93489,7 +93489,7 @@ function getUserAgent() {
|
|
|
93489
93489
|
const clientApp = process.env.CLAUDE_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}` : "";
|
|
93490
93490
|
const workload = getWorkload();
|
|
93491
93491
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
93492
|
-
return `claude-cli/${"1.0.
|
|
93492
|
+
return `claude-cli/${"1.0.2"} (${"external"}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
93493
93493
|
}
|
|
93494
93494
|
function getMCPUserAgent() {
|
|
93495
93495
|
const parts = [];
|
|
@@ -93503,7 +93503,7 @@ function getMCPUserAgent() {
|
|
|
93503
93503
|
parts.push(`client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}`);
|
|
93504
93504
|
}
|
|
93505
93505
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
93506
|
-
return `claude-code/${"1.0.
|
|
93506
|
+
return `claude-code/${"1.0.2"}${suffix}`;
|
|
93507
93507
|
}
|
|
93508
93508
|
function getWebFetchUserAgent() {
|
|
93509
93509
|
return `Claude-User (${getClaudeCodeUserAgent()}; +https://support.anthropic.com/)`;
|
|
@@ -98621,8 +98621,8 @@ function isCseShimEnabled() {
|
|
|
98621
98621
|
function checkBridgeMinVersion() {
|
|
98622
98622
|
if (feature("BRIDGE_MODE")) {
|
|
98623
98623
|
const config3 = getDynamicConfig_CACHED_MAY_BE_STALE("tengu_bridge_min_version", { minVersion: "0.0.0" });
|
|
98624
|
-
if (config3.minVersion && lt2("1.0.
|
|
98625
|
-
return `Your version of Claude Code (${"1.0.
|
|
98624
|
+
if (config3.minVersion && lt2("1.0.2", config3.minVersion)) {
|
|
98625
|
+
return `Your version of Claude Code (${"1.0.2"}) is too old for Remote Control.
|
|
98626
98626
|
Version ${config3.minVersion} or higher is required. Run \`claude update\` to update.`;
|
|
98627
98627
|
}
|
|
98628
98628
|
}
|
|
@@ -135625,7 +135625,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
135625
135625
|
if (!isAttributionHeaderEnabled()) {
|
|
135626
135626
|
return "";
|
|
135627
135627
|
}
|
|
135628
|
-
const version3 = `${"1.0.
|
|
135628
|
+
const version3 = `${"1.0.2"}.${fingerprint}`;
|
|
135629
135629
|
const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
|
|
135630
135630
|
const cch = feature("NATIVE_CLIENT_ATTESTATION") ? " cch=00000;" : "";
|
|
135631
135631
|
const workload = getWorkload();
|
|
@@ -167801,7 +167801,7 @@ var init_metadata = __esm({
|
|
|
167801
167801
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
167802
167802
|
WHITESPACE_REGEX = /\s+/;
|
|
167803
167803
|
getVersionBase = memoize_default(() => {
|
|
167804
|
-
const match = "1.0.
|
|
167804
|
+
const match = "1.0.2".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
167805
167805
|
return match ? match[0] : void 0;
|
|
167806
167806
|
});
|
|
167807
167807
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -167845,7 +167845,7 @@ var init_metadata = __esm({
|
|
|
167845
167845
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
167846
167846
|
isClaudeCodeAction: isEnvTruthy(process.env.CLAUDE_CODE_ACTION),
|
|
167847
167847
|
isClaudeAiAuth: isClaudeAISubscriber(),
|
|
167848
|
-
version: "1.0.
|
|
167848
|
+
version: "1.0.2",
|
|
167849
167849
|
versionBase: getVersionBase(),
|
|
167850
167850
|
buildTime: MACRO.BUILD_TIME,
|
|
167851
167851
|
deploymentEnvironment: env2.detectDeploymentEnvironment(),
|
|
@@ -235938,7 +235938,7 @@ function getTelemetryAttributes() {
|
|
|
235938
235938
|
attributes["session.id"] = sessionId;
|
|
235939
235939
|
}
|
|
235940
235940
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
235941
|
-
attributes["app.version"] = "1.0.
|
|
235941
|
+
attributes["app.version"] = "1.0.2";
|
|
235942
235942
|
}
|
|
235943
235943
|
const oauthAccount = getOauthAccountInfo();
|
|
235944
235944
|
if (oauthAccount) {
|
|
@@ -253193,7 +253193,7 @@ function computeFingerprint(messageText, version3) {
|
|
|
253193
253193
|
}
|
|
253194
253194
|
function computeFingerprintFromMessages(messages) {
|
|
253195
253195
|
const firstMessageText = extractFirstMessageText(messages);
|
|
253196
|
-
return computeFingerprint(firstMessageText, "1.0.
|
|
253196
|
+
return computeFingerprint(firstMessageText, "1.0.2");
|
|
253197
253197
|
}
|
|
253198
253198
|
var FINGERPRINT_SALT;
|
|
253199
253199
|
var init_fingerprint = __esm({
|
|
@@ -253238,7 +253238,7 @@ async function sideQuery(opts) {
|
|
|
253238
253238
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
253239
253239
|
}
|
|
253240
253240
|
const messageText = extractFirstUserMessageText(messages);
|
|
253241
|
-
const fingerprint = computeFingerprint(messageText, "1.0.
|
|
253241
|
+
const fingerprint = computeFingerprint(messageText, "1.0.2");
|
|
253242
253242
|
const attributionHeader = getAttributionHeader(fingerprint);
|
|
253243
253243
|
const systemBlocks = [
|
|
253244
253244
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -255167,8 +255167,8 @@ var import_compiler_runtime25, React15, import_jsx_runtime28, MAX_JSON_FORMAT_LE
|
|
|
255167
255167
|
var init_OutputLine = __esm({
|
|
255168
255168
|
"src/components/shell/OutputLine.tsx"() {
|
|
255169
255169
|
"use strict";
|
|
255170
|
-
import_compiler_runtime25 = __toESM(require_compiler_runtime());
|
|
255171
|
-
React15 = __toESM(require_react());
|
|
255170
|
+
import_compiler_runtime25 = __toESM(require_compiler_runtime(), 1);
|
|
255171
|
+
React15 = __toESM(require_react(), 1);
|
|
255172
255172
|
init_useTerminalSize();
|
|
255173
255173
|
init_ink2();
|
|
255174
255174
|
init_hyperlink();
|
|
@@ -255177,7 +255177,7 @@ var init_OutputLine = __esm({
|
|
|
255177
255177
|
init_MessageResponse();
|
|
255178
255178
|
init_messageActions();
|
|
255179
255179
|
init_ExpandShellOutputContext();
|
|
255180
|
-
import_jsx_runtime28 = __toESM(require_jsx_runtime());
|
|
255180
|
+
import_jsx_runtime28 = __toESM(require_jsx_runtime(), 1);
|
|
255181
255181
|
MAX_JSON_FORMAT_LENGTH = 1e4;
|
|
255182
255182
|
URL_IN_JSON = /https?:\/\/[^\s"'<>\\]+/g;
|
|
255183
255183
|
}
|
|
@@ -262114,7 +262114,7 @@ var init_user = __esm({
|
|
|
262114
262114
|
deviceId,
|
|
262115
262115
|
sessionId: getSessionId(),
|
|
262116
262116
|
email: getEmail(),
|
|
262117
|
-
appVersion: "1.0.
|
|
262117
|
+
appVersion: "1.0.2",
|
|
262118
262118
|
platform: getHostPlatformForAnalytics(),
|
|
262119
262119
|
organizationUuid,
|
|
262120
262120
|
accountUuid,
|
|
@@ -281805,7 +281805,7 @@ async function initializeBetaTracing(resource) {
|
|
|
281805
281805
|
setLoggerProvider(loggerProvider);
|
|
281806
281806
|
const eventLogger = import_api_logs.logs.getLogger(
|
|
281807
281807
|
"com.anthropic.claude_code.events",
|
|
281808
|
-
"1.0.
|
|
281808
|
+
"1.0.2"
|
|
281809
281809
|
);
|
|
281810
281810
|
setEventLogger(eventLogger);
|
|
281811
281811
|
process.on("beforeExit", async () => {
|
|
@@ -281845,7 +281845,7 @@ async function initializeTelemetry() {
|
|
|
281845
281845
|
const platform6 = getPlatform();
|
|
281846
281846
|
const baseAttributes = {
|
|
281847
281847
|
[ATTR_SERVICE_NAME2]: "claude-code",
|
|
281848
|
-
[ATTR_SERVICE_VERSION2]: "1.0.
|
|
281848
|
+
[ATTR_SERVICE_VERSION2]: "1.0.2"
|
|
281849
281849
|
};
|
|
281850
281850
|
if (platform6 === "wsl") {
|
|
281851
281851
|
const wslVersion = getWslVersion();
|
|
@@ -281903,7 +281903,7 @@ async function initializeTelemetry() {
|
|
|
281903
281903
|
}
|
|
281904
281904
|
};
|
|
281905
281905
|
registerCleanup(shutdownTelemetry2);
|
|
281906
|
-
return meterProvider2.getMeter("com.anthropic.claude_code", "1.0.
|
|
281906
|
+
return meterProvider2.getMeter("com.anthropic.claude_code", "1.0.2");
|
|
281907
281907
|
}
|
|
281908
281908
|
const meterProvider = new import_sdk_metrics.MeterProvider({
|
|
281909
281909
|
resource,
|
|
@@ -281932,7 +281932,7 @@ async function initializeTelemetry() {
|
|
|
281932
281932
|
setLoggerProvider(loggerProvider);
|
|
281933
281933
|
const eventLogger = import_api_logs.logs.getLogger(
|
|
281934
281934
|
"com.anthropic.claude_code.events",
|
|
281935
|
-
"1.0.
|
|
281935
|
+
"1.0.2"
|
|
281936
281936
|
);
|
|
281937
281937
|
setEventLogger(eventLogger);
|
|
281938
281938
|
logForDebugging("[3P telemetry] Event logger set successfully");
|
|
@@ -282004,7 +282004,7 @@ Current timeout: ${timeoutMs}ms
|
|
|
282004
282004
|
}
|
|
282005
282005
|
};
|
|
282006
282006
|
registerCleanup(shutdownTelemetry);
|
|
282007
|
-
return meterProvider.getMeter("com.anthropic.claude_code", "1.0.
|
|
282007
|
+
return meterProvider.getMeter("com.anthropic.claude_code", "1.0.2");
|
|
282008
282008
|
}
|
|
282009
282009
|
async function flushTelemetry() {
|
|
282010
282010
|
const meterProvider = getMeterProvider();
|
|
@@ -283340,7 +283340,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
283340
283340
|
}
|
|
283341
283341
|
async function getDoctorDiagnostic() {
|
|
283342
283342
|
const installationType = await getCurrentInstallationType();
|
|
283343
|
-
const version3 = typeof MACRO !== "undefined" && "1.0.
|
|
283343
|
+
const version3 = typeof MACRO !== "undefined" && "1.0.2" ? "1.0.2" : "unknown";
|
|
283344
283344
|
const installationPath = await getInstallationPath();
|
|
283345
283345
|
const invokedBinary = getInvokedBinary();
|
|
283346
283346
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -284639,7 +284639,7 @@ function getInstallationEnv() {
|
|
|
284639
284639
|
return void 0;
|
|
284640
284640
|
}
|
|
284641
284641
|
function getClaudeCodeVersion() {
|
|
284642
|
-
return "1.0.
|
|
284642
|
+
return "1.0.2";
|
|
284643
284643
|
}
|
|
284644
284644
|
async function getInstalledVSCodeExtensionVersion(command8) {
|
|
284645
284645
|
const { stdout } = await execFileNoThrow(
|
|
@@ -285723,9 +285723,9 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
285723
285723
|
logForDebugging(
|
|
285724
285724
|
`Native installer: maxVersion ${maxVersion} is set, capping update from ${version3} to ${maxVersion}`
|
|
285725
285725
|
);
|
|
285726
|
-
if (gte("1.0.
|
|
285726
|
+
if (gte("1.0.2", maxVersion)) {
|
|
285727
285727
|
logForDebugging(
|
|
285728
|
-
`Native installer: current version ${"1.0.
|
|
285728
|
+
`Native installer: current version ${"1.0.2"} is already at or above maxVersion ${maxVersion}, skipping update`
|
|
285729
285729
|
);
|
|
285730
285730
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
285731
285731
|
latency_ms: Date.now() - startTime,
|
|
@@ -285737,7 +285737,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
285737
285737
|
version3 = maxVersion;
|
|
285738
285738
|
}
|
|
285739
285739
|
}
|
|
285740
|
-
if (!forceReinstall && version3 === "1.0.
|
|
285740
|
+
if (!forceReinstall && version3 === "1.0.2" && await versionIsAvailable(version3) && await isPossibleClaudeBinary(executablePath)) {
|
|
285741
285741
|
logForDebugging(`Found ${version3} at ${executablePath}, skipping install`);
|
|
285742
285742
|
logEvent("tengu_native_update_complete", {
|
|
285743
285743
|
latency_ms: Date.now() - startTime,
|
|
@@ -330098,14 +330098,14 @@ var import_compiler_runtime109, import_jsx_runtime124, MAX_LINES_TO_RENDER;
|
|
|
330098
330098
|
var init_FileEditToolUseRejectedMessage = __esm({
|
|
330099
330099
|
"src/components/FileEditToolUseRejectedMessage.tsx"() {
|
|
330100
330100
|
"use strict";
|
|
330101
|
-
import_compiler_runtime109 = __toESM(require_compiler_runtime());
|
|
330101
|
+
import_compiler_runtime109 = __toESM(require_compiler_runtime(), 1);
|
|
330102
330102
|
init_useTerminalSize();
|
|
330103
330103
|
init_cwd();
|
|
330104
330104
|
init_ink2();
|
|
330105
330105
|
init_HighlightedCode();
|
|
330106
330106
|
init_MessageResponse();
|
|
330107
330107
|
init_StructuredDiffList();
|
|
330108
|
-
import_jsx_runtime124 = __toESM(require_jsx_runtime());
|
|
330108
|
+
import_jsx_runtime124 = __toESM(require_jsx_runtime(), 1);
|
|
330109
330109
|
MAX_LINES_TO_RENDER = 10;
|
|
330110
330110
|
}
|
|
330111
330111
|
});
|
|
@@ -355875,7 +355875,7 @@ var init_BashTool = __esm({
|
|
|
355875
355875
|
init_toolName();
|
|
355876
355876
|
init_UI3();
|
|
355877
355877
|
init_utils13();
|
|
355878
|
-
import_jsx_runtime150 = __toESM(require_jsx_runtime());
|
|
355878
|
+
import_jsx_runtime150 = __toESM(require_jsx_runtime(), 1);
|
|
355879
355879
|
EOL4 = "\n";
|
|
355880
355880
|
PROGRESS_THRESHOLD_MS3 = 2e3;
|
|
355881
355881
|
ASSISTANT_BLOCKING_BUDGET_MS2 = 15e3;
|
|
@@ -383513,7 +383513,7 @@ var init_xaaIdpLogin = __esm({
|
|
|
383513
383513
|
"use strict";
|
|
383514
383514
|
init_auth3();
|
|
383515
383515
|
init_auth2();
|
|
383516
|
-
import_xss = __toESM(require_lib5());
|
|
383516
|
+
import_xss = __toESM(require_lib5(), 1);
|
|
383517
383517
|
init_browser();
|
|
383518
383518
|
init_envUtils();
|
|
383519
383519
|
init_errors();
|
|
@@ -389238,7 +389238,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
389238
389238
|
{
|
|
389239
389239
|
name: "Iwebgenics Private Limited",
|
|
389240
389240
|
title: "Iwebgenics",
|
|
389241
|
-
version: "1.0.
|
|
389241
|
+
version: "1.0.2",
|
|
389242
389242
|
description: "Iwebgenics's agentic coding tool",
|
|
389243
389243
|
websiteUrl: PRODUCT_URL
|
|
389244
389244
|
},
|
|
@@ -389675,7 +389675,7 @@ var init_client6 = __esm({
|
|
|
389675
389675
|
{
|
|
389676
389676
|
name: "Iwebgenics private Limited",
|
|
389677
389677
|
title: "Iwebgenics",
|
|
389678
|
-
version: "1.0.
|
|
389678
|
+
version: "1.0.2",
|
|
389679
389679
|
description: "Iwebgenics's agentic coding tool",
|
|
389680
389680
|
websiteUrl: PRODUCT_URL
|
|
389681
389681
|
},
|
|
@@ -396383,7 +396383,7 @@ var import_react86, DEFAULT_TIMEOUT_MS2, currentTimeoutId, PRIORITIES;
|
|
|
396383
396383
|
var init_notifications = __esm({
|
|
396384
396384
|
"src/context/notifications.tsx"() {
|
|
396385
396385
|
"use strict";
|
|
396386
|
-
import_react86 = __toESM(require_react());
|
|
396386
|
+
import_react86 = __toESM(require_react(), 1);
|
|
396387
396387
|
init_AppState();
|
|
396388
396388
|
DEFAULT_TIMEOUT_MS2 = 8e3;
|
|
396389
396389
|
currentTimeoutId = null;
|
|
@@ -404210,7 +404210,7 @@ function buildPrimarySection() {
|
|
|
404210
404210
|
const nameValue = customTitle ?? /* @__PURE__ */ (0, import_jsx_runtime176.jsx)(ThemedText, { dimColor: true, children: "/rename to add a name" });
|
|
404211
404211
|
return [{
|
|
404212
404212
|
label: "Version",
|
|
404213
|
-
value: "1.0.
|
|
404213
|
+
value: "1.0.2"
|
|
404214
404214
|
}, {
|
|
404215
404215
|
label: "Session name",
|
|
404216
404216
|
value: nameValue
|
|
@@ -407626,7 +407626,7 @@ function Config({
|
|
|
407626
407626
|
logEvent("tengu_autoupdate_enabled", {
|
|
407627
407627
|
channel
|
|
407628
407628
|
});
|
|
407629
|
-
} }) }) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ (0, import_jsx_runtime184.jsx)(ChannelDowngradeDialog, { currentVersion: "1.0.
|
|
407629
|
+
} }) }) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ (0, import_jsx_runtime184.jsx)(ChannelDowngradeDialog, { currentVersion: "1.0.2", onChoice: (choice) => {
|
|
407630
407630
|
setShowSubmenu(null);
|
|
407631
407631
|
setTabsHidden(false);
|
|
407632
407632
|
if (choice === "cancel") {
|
|
@@ -407637,7 +407637,7 @@ function Config({
|
|
|
407637
407637
|
autoUpdatesChannel: "stable"
|
|
407638
407638
|
};
|
|
407639
407639
|
if (choice === "stay") {
|
|
407640
|
-
newSettings.minimumVersion = "1.0.
|
|
407640
|
+
newSettings.minimumVersion = "1.0.2";
|
|
407641
407641
|
}
|
|
407642
407642
|
updateSettingsForSource("userSettings", newSettings);
|
|
407643
407643
|
setSettingsData((prev_27) => ({
|
|
@@ -411640,11 +411640,11 @@ var import_compiler_runtime156, import_jsx_runtime199;
|
|
|
411640
411640
|
var init_McpParsingWarnings = __esm({
|
|
411641
411641
|
"src/components/mcp/McpParsingWarnings.tsx"() {
|
|
411642
411642
|
"use strict";
|
|
411643
|
-
import_compiler_runtime156 = __toESM(require_compiler_runtime());
|
|
411643
|
+
import_compiler_runtime156 = __toESM(require_compiler_runtime(), 1);
|
|
411644
411644
|
init_config4();
|
|
411645
411645
|
init_utils4();
|
|
411646
411646
|
init_ink2();
|
|
411647
|
-
import_jsx_runtime199 = __toESM(require_jsx_runtime());
|
|
411647
|
+
import_jsx_runtime199 = __toESM(require_jsx_runtime(), 1);
|
|
411648
411648
|
}
|
|
411649
411649
|
});
|
|
411650
411650
|
|
|
@@ -414668,7 +414668,7 @@ function HelpV2(t0) {
|
|
|
414668
414668
|
const t5 = insideModal ? void 0 : maxHeight;
|
|
414669
414669
|
let t6;
|
|
414670
414670
|
if ($4[31] !== tabs) {
|
|
414671
|
-
t6 = /* @__PURE__ */ (0, import_jsx_runtime211.jsx)(Tabs, { title: false ? "/help" : `iwebgenics AI v${"1.0.
|
|
414671
|
+
t6 = /* @__PURE__ */ (0, import_jsx_runtime211.jsx)(Tabs, { title: false ? "/help" : `iwebgenics AI v${"1.0.2"}`, color: "professionalBlue", defaultTab: "general", children: tabs });
|
|
414672
414672
|
$4[31] = tabs;
|
|
414673
414673
|
$4[32] = t6;
|
|
414674
414674
|
} else {
|
|
@@ -436813,7 +436813,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
436813
436813
|
return [];
|
|
436814
436814
|
}
|
|
436815
436815
|
}
|
|
436816
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.0.
|
|
436816
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.0.2") {
|
|
436817
436817
|
if (false) {
|
|
436818
436818
|
const changelog = MACRO.VERSION_CHANGELOG;
|
|
436819
436819
|
if (changelog) {
|
|
@@ -436843,7 +436843,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.0.0") {
|
|
|
436843
436843
|
releaseNotes: releaseNotes2
|
|
436844
436844
|
};
|
|
436845
436845
|
}
|
|
436846
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.0.
|
|
436846
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.0.2") {
|
|
436847
436847
|
if (false) {
|
|
436848
436848
|
const changelog = MACRO.VERSION_CHANGELOG;
|
|
436849
436849
|
if (changelog) {
|
|
@@ -438105,7 +438105,7 @@ function getRecentActivitySync() {
|
|
|
438105
438105
|
return cachedActivity;
|
|
438106
438106
|
}
|
|
438107
438107
|
function getLogoDisplayData() {
|
|
438108
|
-
const version3 = process.env.DEMO_VERSION ?? "1.0.
|
|
438108
|
+
const version3 = process.env.DEMO_VERSION ?? "1.0.2";
|
|
438109
438109
|
const serverUrl = getDirectConnectServerUrl();
|
|
438110
438110
|
const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
|
|
438111
438111
|
const cwd5 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -439661,7 +439661,7 @@ function LogoV2() {
|
|
|
439661
439661
|
if ($4[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
439662
439662
|
t2 = () => {
|
|
439663
439663
|
const currentConfig = getGlobalConfig();
|
|
439664
|
-
if (currentConfig.lastReleaseNotesSeen === "1.0.
|
|
439664
|
+
if (currentConfig.lastReleaseNotesSeen === "1.0.2") {
|
|
439665
439665
|
return;
|
|
439666
439666
|
}
|
|
439667
439667
|
saveGlobalConfig(_temp330);
|
|
@@ -440185,12 +440185,12 @@ function LogoV2() {
|
|
|
440185
440185
|
return t41;
|
|
440186
440186
|
}
|
|
440187
440187
|
function _temp330(current) {
|
|
440188
|
-
if (current.lastReleaseNotesSeen === "1.0.
|
|
440188
|
+
if (current.lastReleaseNotesSeen === "1.0.2") {
|
|
440189
440189
|
return current;
|
|
440190
440190
|
}
|
|
440191
440191
|
return {
|
|
440192
440192
|
...current,
|
|
440193
|
-
lastReleaseNotesSeen: "1.0.
|
|
440193
|
+
lastReleaseNotesSeen: "1.0.2"
|
|
440194
440194
|
};
|
|
440195
440195
|
}
|
|
440196
440196
|
function _temp245(s_0) {
|
|
@@ -463623,7 +463623,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
|
|
|
463623
463623
|
smapsRollup,
|
|
463624
463624
|
platform: process.platform,
|
|
463625
463625
|
nodeVersion: process.version,
|
|
463626
|
-
ccVersion: "1.0.
|
|
463626
|
+
ccVersion: "1.0.2"
|
|
463627
463627
|
};
|
|
463628
463628
|
}
|
|
463629
463629
|
async function performHeapDump(trigger = "manual", dumpNumber = 0) {
|
|
@@ -464288,7 +464288,7 @@ var init_version3 = __esm({
|
|
|
464288
464288
|
call57 = async () => {
|
|
464289
464289
|
return {
|
|
464290
464290
|
type: "text",
|
|
464291
|
-
value: MACRO.BUILD_TIME ? `${"1.0.
|
|
464291
|
+
value: MACRO.BUILD_TIME ? `${"1.0.2"} (built ${MACRO.BUILD_TIME})` : "1.0.2"
|
|
464292
464292
|
};
|
|
464293
464293
|
};
|
|
464294
464294
|
version2 = {
|
|
@@ -471449,8 +471449,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
471449
471449
|
}
|
|
471450
471450
|
async function checkEnvLessBridgeMinVersion() {
|
|
471451
471451
|
const cfg = await getEnvLessBridgeConfig();
|
|
471452
|
-
if (cfg.min_version && lt2("1.0.
|
|
471453
|
-
return `Your version of Claude Code (${"1.0.
|
|
471452
|
+
if (cfg.min_version && lt2("1.0.2", cfg.min_version)) {
|
|
471453
|
+
return `Your version of Claude Code (${"1.0.2"}) is too old for Remote Control.
|
|
471454
471454
|
Version ${cfg.min_version} or higher is required. Run \`claude update\` to update.`;
|
|
471455
471455
|
}
|
|
471456
471456
|
return null;
|
|
@@ -475040,7 +475040,7 @@ function generateHtmlReport(data, insights) {
|
|
|
475040
475040
|
</html>`;
|
|
475041
475041
|
}
|
|
475042
475042
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
475043
|
-
const version3 = typeof MACRO !== "undefined" ? "1.0.
|
|
475043
|
+
const version3 = typeof MACRO !== "undefined" ? "1.0.2" : "unknown";
|
|
475044
475044
|
const remote_hosts_collected = remoteStats?.hosts.filter((h3) => h3.sessionCount > 0).map((h3) => h3.name);
|
|
475045
475045
|
const facets_summary = {
|
|
475046
475046
|
total: facets.size,
|
|
@@ -478715,7 +478715,7 @@ var init_sessionStorage = __esm({
|
|
|
478715
478715
|
init_settings2();
|
|
478716
478716
|
init_slowOperations();
|
|
478717
478717
|
init_uuid();
|
|
478718
|
-
VERSION6 = typeof MACRO !== "undefined" ? "1.0.
|
|
478718
|
+
VERSION6 = typeof MACRO !== "undefined" ? "1.0.2" : "unknown";
|
|
478719
478719
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
478720
478720
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
478721
478721
|
EPHEMERAL_PROGRESS_TYPES = /* @__PURE__ */ new Set([
|
|
@@ -480875,7 +480875,7 @@ var init_filesystem = __esm({
|
|
|
480875
480875
|
getBundledSkillsRoot = memoize_default(
|
|
480876
480876
|
function getBundledSkillsRoot2() {
|
|
480877
480877
|
const nonce = randomBytes20(16).toString("hex");
|
|
480878
|
-
return join139(getClaudeTempDir(), "bundled-skills", "1.0.
|
|
480878
|
+
return join139(getClaudeTempDir(), "bundled-skills", "1.0.2", nonce);
|
|
480879
480879
|
}
|
|
480880
480880
|
);
|
|
480881
480881
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
@@ -487867,7 +487867,7 @@ function createBridgeLogger(options2) {
|
|
|
487867
487867
|
connectUrl = buildBridgeConnectUrl(environmentId, cachedIngressUrl);
|
|
487868
487868
|
regenerateQr(connectUrl);
|
|
487869
487869
|
if (verbose) {
|
|
487870
|
-
write(source_default.dim(`Remote Control`) + ` v${"1.0.
|
|
487870
|
+
write(source_default.dim(`Remote Control`) + ` v${"1.0.2"}
|
|
487871
487871
|
`);
|
|
487872
487872
|
}
|
|
487873
487873
|
if (verbose) {
|
|
@@ -489016,7 +489016,7 @@ function appendToLog(path24, message) {
|
|
|
489016
489016
|
cwd: getFsImplementation().cwd(),
|
|
489017
489017
|
userType: "external",
|
|
489018
489018
|
sessionId: getSessionId(),
|
|
489019
|
-
version: "1.0.
|
|
489019
|
+
version: "1.0.2"
|
|
489020
489020
|
};
|
|
489021
489021
|
getLogWriter(path24).write(messageWithTimestamp);
|
|
489022
489022
|
}
|
|
@@ -490613,7 +490613,7 @@ This can be changed later or explicitly set with --spawn=same-dir or --spawn=wor
|
|
|
490613
490613
|
const api = createBridgeApiClient({
|
|
490614
490614
|
baseUrl,
|
|
490615
490615
|
getAccessToken: getBridgeAccessToken2,
|
|
490616
|
-
runnerVersion: "1.0.
|
|
490616
|
+
runnerVersion: "1.0.2",
|
|
490617
490617
|
onDebug: logForDebugging,
|
|
490618
490618
|
onAuth401: handleOAuth401Error2,
|
|
490619
490619
|
getTrustedDeviceToken
|
|
@@ -490976,7 +490976,7 @@ async function runBridgeHeadless(opts, signal) {
|
|
|
490976
490976
|
const api = createBridgeApiClient({
|
|
490977
490977
|
baseUrl,
|
|
490978
490978
|
getAccessToken: opts.getAccessToken,
|
|
490979
|
-
runnerVersion: "1.0.
|
|
490979
|
+
runnerVersion: "1.0.2",
|
|
490980
490980
|
onDebug: log2,
|
|
490981
490981
|
onAuth401: opts.onAuth401,
|
|
490982
490982
|
getTrustedDeviceToken
|
|
@@ -496652,7 +496652,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
496652
496652
|
slash_commands: inputs.commands.filter((c5) => c5.userInvocable !== false).map((c5) => c5.name),
|
|
496653
496653
|
apiKeySource: getAnthropicApiKeyWithSource().source,
|
|
496654
496654
|
betas: getSdkBetas(),
|
|
496655
|
-
claude_code_version: "1.0.
|
|
496655
|
+
claude_code_version: "1.0.2",
|
|
496656
496656
|
output_style: outputStyle2,
|
|
496657
496657
|
agents: inputs.agents.map((agent) => agent.agentType),
|
|
496658
496658
|
skills: inputs.skills.filter((s2) => s2.userInvocable !== false).map((skill) => skill.name),
|
|
@@ -499511,7 +499511,7 @@ async function initBridgeCore(params) {
|
|
|
499511
499511
|
const rawApi = createBridgeApiClient({
|
|
499512
499512
|
baseUrl,
|
|
499513
499513
|
getAccessToken,
|
|
499514
|
-
runnerVersion: "1.0.
|
|
499514
|
+
runnerVersion: "1.0.2",
|
|
499515
499515
|
onDebug: logForDebugging,
|
|
499516
499516
|
onAuth401,
|
|
499517
499517
|
getTrustedDeviceToken
|
|
@@ -524455,7 +524455,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
524455
524455
|
project_dir: getOriginalCwd(),
|
|
524456
524456
|
added_dirs: addedDirs
|
|
524457
524457
|
},
|
|
524458
|
-
version: "1.0.
|
|
524458
|
+
version: "1.0.2",
|
|
524459
524459
|
output_style: {
|
|
524460
524460
|
name: outputStyleName
|
|
524461
524461
|
},
|
|
@@ -550031,7 +550031,7 @@ function WelcomeV2() {
|
|
|
550031
550031
|
] }),
|
|
550032
550032
|
/* @__PURE__ */ (0, import_jsx_runtime481.jsxs)(ThemedText, { dimColor: true, children: [
|
|
550033
550033
|
"v",
|
|
550034
|
-
"1.0.
|
|
550034
|
+
"1.0.2",
|
|
550035
550035
|
" "
|
|
550036
550036
|
] })
|
|
550037
550037
|
] });
|
|
@@ -550165,7 +550165,7 @@ function WelcomeV2() {
|
|
|
550165
550165
|
] }),
|
|
550166
550166
|
/* @__PURE__ */ (0, import_jsx_runtime481.jsxs)(ThemedText, { dimColor: true, children: [
|
|
550167
550167
|
"v",
|
|
550168
|
-
"1.0.
|
|
550168
|
+
"1.0.2",
|
|
550169
550169
|
" "
|
|
550170
550170
|
] })
|
|
550171
550171
|
] });
|
|
@@ -550315,7 +550315,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
550315
550315
|
if ($4[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
550316
550316
|
t22 = /* @__PURE__ */ (0, import_jsx_runtime481.jsxs)(ThemedText, { dimColor: true, children: [
|
|
550317
550317
|
"v",
|
|
550318
|
-
"1.0.
|
|
550318
|
+
"1.0.2",
|
|
550319
550319
|
" "
|
|
550320
550320
|
] });
|
|
550321
550321
|
$4[2] = t22;
|
|
@@ -550485,7 +550485,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
550485
550485
|
if ($4[24] === Symbol.for("react.memo_cache_sentinel")) {
|
|
550486
550486
|
t2 = /* @__PURE__ */ (0, import_jsx_runtime481.jsxs)(ThemedText, { dimColor: true, children: [
|
|
550487
550487
|
"v",
|
|
550488
|
-
"1.0.
|
|
550488
|
+
"1.0.2",
|
|
550489
550489
|
" "
|
|
550490
550490
|
] });
|
|
550491
550491
|
$4[24] = t2;
|
|
@@ -551868,7 +551868,7 @@ function completeOnboarding() {
|
|
|
551868
551868
|
saveGlobalConfig((current) => ({
|
|
551869
551869
|
...current,
|
|
551870
551870
|
hasCompletedOnboarding: true,
|
|
551871
|
-
lastOnboardingVersion: "1.0.
|
|
551871
|
+
lastOnboardingVersion: "1.0.2"
|
|
551872
551872
|
}));
|
|
551873
551873
|
}
|
|
551874
551874
|
function showDialog(root2, renderer) {
|
|
@@ -565061,7 +565061,7 @@ async function startMCPServer(cwd5, debug6, verbose) {
|
|
|
565061
565061
|
const server = new Server(
|
|
565062
565062
|
{
|
|
565063
565063
|
name: "claude/tengu",
|
|
565064
|
-
version: "1.0.
|
|
565064
|
+
version: "1.0.2"
|
|
565065
565065
|
},
|
|
565066
565066
|
{
|
|
565067
565067
|
capabilities: {
|
|
@@ -566815,7 +566815,7 @@ __export(update_exports, {
|
|
|
566815
566815
|
});
|
|
566816
566816
|
async function update() {
|
|
566817
566817
|
logEvent("tengu_update_check", {});
|
|
566818
|
-
writeToStdout(`Current version: ${"1.0.
|
|
566818
|
+
writeToStdout(`Current version: ${"1.0.2"}
|
|
566819
566819
|
`);
|
|
566820
566820
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
566821
566821
|
writeToStdout(`Checking for updates to ${channel} version...
|
|
@@ -566885,8 +566885,8 @@ async function update() {
|
|
|
566885
566885
|
if (packageManager === "homebrew") {
|
|
566886
566886
|
writeToStdout("Claude is managed by Homebrew.\n");
|
|
566887
566887
|
const latest = await getLatestVersion(channel);
|
|
566888
|
-
if (latest && !gte("1.0.
|
|
566889
|
-
writeToStdout(`Update available: ${"1.0.
|
|
566888
|
+
if (latest && !gte("1.0.2", latest)) {
|
|
566889
|
+
writeToStdout(`Update available: ${"1.0.2"} \u2192 ${latest}
|
|
566890
566890
|
`);
|
|
566891
566891
|
writeToStdout("\n");
|
|
566892
566892
|
writeToStdout("To update, run:\n");
|
|
@@ -566897,8 +566897,8 @@ async function update() {
|
|
|
566897
566897
|
} else if (packageManager === "winget") {
|
|
566898
566898
|
writeToStdout("Claude is managed by winget.\n");
|
|
566899
566899
|
const latest = await getLatestVersion(channel);
|
|
566900
|
-
if (latest && !gte("1.0.
|
|
566901
|
-
writeToStdout(`Update available: ${"1.0.
|
|
566900
|
+
if (latest && !gte("1.0.2", latest)) {
|
|
566901
|
+
writeToStdout(`Update available: ${"1.0.2"} \u2192 ${latest}
|
|
566902
566902
|
`);
|
|
566903
566903
|
writeToStdout("\n");
|
|
566904
566904
|
writeToStdout("To update, run:\n");
|
|
@@ -566911,8 +566911,8 @@ async function update() {
|
|
|
566911
566911
|
} else if (packageManager === "apk") {
|
|
566912
566912
|
writeToStdout("Claude is managed by apk.\n");
|
|
566913
566913
|
const latest = await getLatestVersion(channel);
|
|
566914
|
-
if (latest && !gte("1.0.
|
|
566915
|
-
writeToStdout(`Update available: ${"1.0.
|
|
566914
|
+
if (latest && !gte("1.0.2", latest)) {
|
|
566915
|
+
writeToStdout(`Update available: ${"1.0.2"} \u2192 ${latest}
|
|
566916
566916
|
`);
|
|
566917
566917
|
writeToStdout("\n");
|
|
566918
566918
|
writeToStdout("To update, run:\n");
|
|
@@ -566978,14 +566978,14 @@ async function update() {
|
|
|
566978
566978
|
process.stderr.write("Failed to check for updates\n");
|
|
566979
566979
|
await gracefulShutdown(1);
|
|
566980
566980
|
}
|
|
566981
|
-
if (result.latestVersion === "1.0.
|
|
566981
|
+
if (result.latestVersion === "1.0.2") {
|
|
566982
566982
|
writeToStdout(
|
|
566983
|
-
source_default.green(`Claude Code is up to date (${"1.0.
|
|
566983
|
+
source_default.green(`Claude Code is up to date (${"1.0.2"})`) + "\n"
|
|
566984
566984
|
);
|
|
566985
566985
|
} else {
|
|
566986
566986
|
writeToStdout(
|
|
566987
566987
|
source_default.green(
|
|
566988
|
-
`Successfully updated from ${"1.0.
|
|
566988
|
+
`Successfully updated from ${"1.0.2"} to version ${result.latestVersion}`
|
|
566989
566989
|
) + "\n"
|
|
566990
566990
|
);
|
|
566991
566991
|
await regenerateCompletionCache();
|
|
@@ -567036,14 +567036,14 @@ async function update() {
|
|
|
567036
567036
|
process.stderr.write(" \u2022 Check if you need to login: npm whoami\n");
|
|
567037
567037
|
await gracefulShutdown(1);
|
|
567038
567038
|
}
|
|
567039
|
-
if (latestVersion === "1.0.
|
|
567039
|
+
if (latestVersion === "1.0.2") {
|
|
567040
567040
|
writeToStdout(
|
|
567041
|
-
source_default.green(`Claude Code is up to date (${"1.0.
|
|
567041
|
+
source_default.green(`Claude Code is up to date (${"1.0.2"})`) + "\n"
|
|
567042
567042
|
);
|
|
567043
567043
|
await gracefulShutdown(0);
|
|
567044
567044
|
}
|
|
567045
567045
|
writeToStdout(
|
|
567046
|
-
`New version available: ${latestVersion} (current: ${"1.0.
|
|
567046
|
+
`New version available: ${latestVersion} (current: ${"1.0.2"})
|
|
567047
567047
|
`
|
|
567048
567048
|
);
|
|
567049
567049
|
writeToStdout("Installing update...\n");
|
|
@@ -567097,7 +567097,7 @@ async function update() {
|
|
|
567097
567097
|
case "success":
|
|
567098
567098
|
writeToStdout(
|
|
567099
567099
|
source_default.green(
|
|
567100
|
-
`Successfully updated from ${"1.0.
|
|
567100
|
+
`Successfully updated from ${"1.0.2"} to version ${latestVersion}`
|
|
567101
567101
|
) + "\n"
|
|
567102
567102
|
);
|
|
567103
567103
|
await regenerateCompletionCache();
|
|
@@ -568689,7 +568689,7 @@ ${inputPrompt}` : mergePrompt;
|
|
|
568689
568689
|
}
|
|
568690
568690
|
}
|
|
568691
568691
|
logForDiagnosticsNoPII("info", "started", {
|
|
568692
|
-
version: "1.0.
|
|
568692
|
+
version: "1.0.2",
|
|
568693
568693
|
is_native_binary: isInBundledMode()
|
|
568694
568694
|
});
|
|
568695
568695
|
registerCleanup(async () => {
|
|
@@ -569284,7 +569284,7 @@ Session: ${directConnectConfig.sessionId}`, "info");
|
|
|
569284
569284
|
sshSession = await createSSHSession({
|
|
569285
569285
|
host: _pendingSSH.host,
|
|
569286
569286
|
cwd: _pendingSSH.cwd,
|
|
569287
|
-
localVersion: "1.0.
|
|
569287
|
+
localVersion: "1.0.2",
|
|
569288
569288
|
permissionMode: _pendingSSH.permissionMode,
|
|
569289
569289
|
dangerouslySkipPermissions: _pendingSSH.dangerouslySkipPermissions,
|
|
569290
569290
|
extraCliArgs: _pendingSSH.extraCliArgs
|
|
@@ -569796,7 +569796,7 @@ Auth: unix socket -R \u2192 local proxy`, "info");
|
|
|
569796
569796
|
pendingHookMessages
|
|
569797
569797
|
}, renderAndRun);
|
|
569798
569798
|
}
|
|
569799
|
-
}).version(`${"1.0.
|
|
569799
|
+
}).version(`${"1.0.2"} (iwebgenics AI)`, "-v, --version", "Output the version number");
|
|
569800
569800
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
569801
569801
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
569802
569802
|
if (canUserConfigureAdvisor()) {
|
|
@@ -570632,7 +570632,7 @@ if (feature("ABLATION_BASELINE") && process.env.CLAUDE_CODE_ABLATION_BASELINE) {
|
|
|
570632
570632
|
async function main2() {
|
|
570633
570633
|
const args = process.argv.slice(2);
|
|
570634
570634
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
570635
|
-
console.log(`${"1.0.
|
|
570635
|
+
console.log(`${"1.0.2"} (Claude Code)`);
|
|
570636
570636
|
return;
|
|
570637
570637
|
}
|
|
570638
570638
|
const {
|
package/package.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "iwebgenics-ai",
|
|
3
|
-
"version": "1.0.
|
|
2
|
+
"name": "iwebgenics-ai",
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Iwebgenics Code CLI is a command-line interface tool that provides developers with a powerful and efficient way to interact with the Iwebgenics Code platform. It allows users to manage their projects, run code, and access various features of the Iwebgenics Code ecosystem directly from the terminal.",
|
|
5
5
|
"license": "LICENSED",
|
|
6
6
|
"private": false,
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "src/entrypoints/cli.tsx",
|
|
9
9
|
"bin": {
|
|
10
|
-
|
|
11
|
-
},
|
|
12
|
-
"files": [
|
|
10
|
+
"iwebgenics-ai": "dist/cli.mjs"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist/cli.mjs"
|
|
14
|
+
],
|
|
13
15
|
"scripts": {
|
|
14
16
|
"build": "bun scripts/build-bundle.ts",
|
|
15
17
|
"build:watch": "bun scripts/build-bundle.ts --watch",
|
|
@@ -43,20 +45,26 @@
|
|
|
43
45
|
"@xterm/addon-web-links": "^0.11.0",
|
|
44
46
|
"@xterm/addon-webgl": "^0.18.0",
|
|
45
47
|
"@xterm/xterm": "^5.5.0",
|
|
48
|
+
"ajv": "^8.20.0",
|
|
49
|
+
"ajv-formats": "^3.0.1",
|
|
46
50
|
"asciichart": "^1.5.25",
|
|
47
51
|
"auto-bind": "^5.0.1",
|
|
48
52
|
"axios": "^1.7.0",
|
|
49
53
|
"bidi-js": "^1.0.3",
|
|
54
|
+
"bufferutil": "^4.1.0",
|
|
50
55
|
"chalk": "^5.4.0",
|
|
51
56
|
"chokidar": "^4.0.0",
|
|
52
57
|
"cli-boxes": "^3.0.0",
|
|
53
58
|
"code-excerpt": "^4.0.0",
|
|
59
|
+
"color-diff-napi": "^0.0.1",
|
|
54
60
|
"diff": "^7.0.0",
|
|
61
|
+
"encoding": "^0.1.13",
|
|
55
62
|
"env-paths": "^4.0.0",
|
|
56
63
|
"execa": "^9.5.0",
|
|
57
64
|
"fflate": "^0.8.2",
|
|
58
65
|
"figures": "^6.1.0",
|
|
59
66
|
"fuse.js": "^7.0.0",
|
|
67
|
+
"googleapis": "^171.4.0",
|
|
60
68
|
"highlight.js": "^11.11.0",
|
|
61
69
|
"https-proxy-agent": "^9.0.0",
|
|
62
70
|
"ignore": "^6.0.0",
|
|
@@ -65,6 +73,7 @@
|
|
|
65
73
|
"lodash-es": "^4.17.21",
|
|
66
74
|
"lru-cache": "^11.3.5",
|
|
67
75
|
"marked": "^15.0.0",
|
|
76
|
+
"modifiers-napi": "^0.0.1",
|
|
68
77
|
"node-pty": "^1.1.0",
|
|
69
78
|
"p-map": "^7.0.0",
|
|
70
79
|
"picomatch": "^4.0.0",
|
|
@@ -83,6 +92,7 @@
|
|
|
83
92
|
"type-fest": "^4.30.0",
|
|
84
93
|
"undici": "^7.3.0",
|
|
85
94
|
"usehooks-ts": "^3.1.0",
|
|
95
|
+
"utf-8-validate": "^6.0.6",
|
|
86
96
|
"vscode-jsonrpc": "^8.2.1",
|
|
87
97
|
"wrap-ansi": "^9.0.0",
|
|
88
98
|
"ws": "^8.18.0",
|