ur-agent 1.43.5 → 1.43.6
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 +8 -0
- package/dist/cli.js +105 -67
- package/documentation/index.html +1 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.43.6
|
|
4
|
+
|
|
5
|
+
- Render output from reasoning models on OpenAI-compatible providers (LM Studio,
|
|
6
|
+
vLLM). The streaming and non-streaming parsers now read `reasoning_content`
|
|
7
|
+
(and `reasoning`) deltas and surface them as thinking blocks. Models that emit
|
|
8
|
+
their output in the reasoning field (e.g. NVIDIA Nemotron, DeepSeek-R1
|
|
9
|
+
distills, QwQ) previously produced an empty response with no error.
|
|
10
|
+
|
|
3
11
|
## 1.43.5
|
|
4
12
|
|
|
5
13
|
- Fix model discovery for OpenAI-compatible providers (LM Studio, llama.cpp,
|
package/dist/cli.js
CHANGED
|
@@ -56561,6 +56561,13 @@ async function* streamOpenAIEvents(body, options) {
|
|
|
56561
56561
|
let finishReason;
|
|
56562
56562
|
let usage = EMPTY_USAGE;
|
|
56563
56563
|
const toolStates = new Map;
|
|
56564
|
+
let activeThinkingIndex = null;
|
|
56565
|
+
const stopThinking = function* () {
|
|
56566
|
+
if (activeThinkingIndex !== null) {
|
|
56567
|
+
yield { type: "content_block_stop", index: activeThinkingIndex };
|
|
56568
|
+
activeThinkingIndex = null;
|
|
56569
|
+
}
|
|
56570
|
+
};
|
|
56564
56571
|
const stopText = function* () {
|
|
56565
56572
|
if (activeTextIndex !== null) {
|
|
56566
56573
|
yield { type: "content_block_stop", index: activeTextIndex };
|
|
@@ -56569,6 +56576,8 @@ async function* streamOpenAIEvents(body, options) {
|
|
|
56569
56576
|
};
|
|
56570
56577
|
const ensureText = function* () {
|
|
56571
56578
|
if (activeTextIndex === null) {
|
|
56579
|
+
for (const event of stopThinking())
|
|
56580
|
+
yield event;
|
|
56572
56581
|
activeTextIndex = blockIndex++;
|
|
56573
56582
|
sawBlock = true;
|
|
56574
56583
|
yield {
|
|
@@ -56578,6 +56587,19 @@ async function* streamOpenAIEvents(body, options) {
|
|
|
56578
56587
|
};
|
|
56579
56588
|
}
|
|
56580
56589
|
};
|
|
56590
|
+
const ensureThinking = function* () {
|
|
56591
|
+
if (activeThinkingIndex === null) {
|
|
56592
|
+
for (const event of stopText())
|
|
56593
|
+
yield event;
|
|
56594
|
+
activeThinkingIndex = blockIndex++;
|
|
56595
|
+
sawBlock = true;
|
|
56596
|
+
yield {
|
|
56597
|
+
type: "content_block_start",
|
|
56598
|
+
index: activeThinkingIndex,
|
|
56599
|
+
content_block: { type: "thinking", thinking: "" }
|
|
56600
|
+
};
|
|
56601
|
+
}
|
|
56602
|
+
};
|
|
56581
56603
|
const ensureTool = function* (state) {
|
|
56582
56604
|
if (state.blockIndex !== undefined)
|
|
56583
56605
|
return;
|
|
@@ -56617,6 +56639,16 @@ async function* streamOpenAIEvents(body, options) {
|
|
|
56617
56639
|
}
|
|
56618
56640
|
for (const choice of chunk?.choices ?? []) {
|
|
56619
56641
|
const delta = choice?.delta ?? {};
|
|
56642
|
+
const reasoning = typeof delta.reasoning_content === "string" ? delta.reasoning_content : typeof delta.reasoning === "string" ? delta.reasoning : "";
|
|
56643
|
+
if (reasoning.length > 0) {
|
|
56644
|
+
for (const event of ensureThinking())
|
|
56645
|
+
yield event;
|
|
56646
|
+
yield {
|
|
56647
|
+
type: "content_block_delta",
|
|
56648
|
+
index: activeThinkingIndex,
|
|
56649
|
+
delta: { type: "thinking_delta", thinking: reasoning }
|
|
56650
|
+
};
|
|
56651
|
+
}
|
|
56620
56652
|
if (typeof delta.content === "string" && delta.content.length > 0) {
|
|
56621
56653
|
for (const event of ensureText())
|
|
56622
56654
|
yield event;
|
|
@@ -56660,6 +56692,8 @@ async function* streamOpenAIEvents(body, options) {
|
|
|
56660
56692
|
}
|
|
56661
56693
|
for (const event of stopText())
|
|
56662
56694
|
yield event;
|
|
56695
|
+
for (const event of stopThinking())
|
|
56696
|
+
yield event;
|
|
56663
56697
|
for (const [index2, state] of toolStates.entries()) {
|
|
56664
56698
|
if (state.blockIndex === undefined) {
|
|
56665
56699
|
throw new ProviderResponseParseError(`${providerName} streamed tool_calls[${index2}] without a function name`, { state });
|
|
@@ -57464,6 +57498,10 @@ function messageToOpenAIMessages(message, toolNamesById, providerName) {
|
|
|
57464
57498
|
}
|
|
57465
57499
|
function parseOpenAIMessageContent(message, legacyText, providerName) {
|
|
57466
57500
|
const content = [];
|
|
57501
|
+
const reasoning = typeof message?.reasoning_content === "string" ? message.reasoning_content : typeof message?.reasoning === "string" ? message.reasoning : "";
|
|
57502
|
+
if (reasoning.length > 0) {
|
|
57503
|
+
content.push({ type: "thinking", thinking: reasoning });
|
|
57504
|
+
}
|
|
57467
57505
|
const text = openAIMessageText(message?.content, legacyText);
|
|
57468
57506
|
if (text.length > 0) {
|
|
57469
57507
|
content.push({ type: "text", text });
|
|
@@ -71215,7 +71253,7 @@ var init_auth = __esm(() => {
|
|
|
71215
71253
|
|
|
71216
71254
|
// src/utils/userAgent.ts
|
|
71217
71255
|
function getURCodeUserAgent() {
|
|
71218
|
-
return `ur/${"1.43.
|
|
71256
|
+
return `ur/${"1.43.6"}`;
|
|
71219
71257
|
}
|
|
71220
71258
|
|
|
71221
71259
|
// src/utils/workloadContext.ts
|
|
@@ -71237,7 +71275,7 @@ function getUserAgent() {
|
|
|
71237
71275
|
const clientApp = process.env.UR_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}` : "";
|
|
71238
71276
|
const workload = getWorkload();
|
|
71239
71277
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
71240
|
-
return `ur-cli/${"1.43.
|
|
71278
|
+
return `ur-cli/${"1.43.6"} (${process.env.USER_TYPE}, ${process.env.UR_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
71241
71279
|
}
|
|
71242
71280
|
function getMCPUserAgent() {
|
|
71243
71281
|
const parts = [];
|
|
@@ -71251,7 +71289,7 @@ function getMCPUserAgent() {
|
|
|
71251
71289
|
parts.push(`client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}`);
|
|
71252
71290
|
}
|
|
71253
71291
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
71254
|
-
return `ur/${"1.43.
|
|
71292
|
+
return `ur/${"1.43.6"}${suffix}`;
|
|
71255
71293
|
}
|
|
71256
71294
|
function getWebFetchUserAgent() {
|
|
71257
71295
|
return `UR-User (${getURCodeUserAgent()})`;
|
|
@@ -71389,7 +71427,7 @@ var init_user = __esm(() => {
|
|
|
71389
71427
|
deviceId,
|
|
71390
71428
|
sessionId: getSessionId(),
|
|
71391
71429
|
email: getEmail(),
|
|
71392
|
-
appVersion: "1.43.
|
|
71430
|
+
appVersion: "1.43.6",
|
|
71393
71431
|
platform: getHostPlatformForAnalytics(),
|
|
71394
71432
|
organizationUuid,
|
|
71395
71433
|
accountUuid,
|
|
@@ -77906,7 +77944,7 @@ var init_metadata = __esm(() => {
|
|
|
77906
77944
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
77907
77945
|
WHITESPACE_REGEX = /\s+/;
|
|
77908
77946
|
getVersionBase = memoize_default(() => {
|
|
77909
|
-
const match = "1.43.
|
|
77947
|
+
const match = "1.43.6".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
77910
77948
|
return match ? match[0] : undefined;
|
|
77911
77949
|
});
|
|
77912
77950
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -77946,7 +77984,7 @@ var init_metadata = __esm(() => {
|
|
|
77946
77984
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
77947
77985
|
isURCodeAction: isEnvTruthy(process.env.UR_CODE_ACTION),
|
|
77948
77986
|
isURAiAuth: isURAISubscriber(),
|
|
77949
|
-
version: "1.43.
|
|
77987
|
+
version: "1.43.6",
|
|
77950
77988
|
versionBase: getVersionBase(),
|
|
77951
77989
|
buildTime: "",
|
|
77952
77990
|
deploymentEnvironment: env2.detectDeploymentEnvironment(),
|
|
@@ -78616,7 +78654,7 @@ function initialize1PEventLogging() {
|
|
|
78616
78654
|
const platform2 = getPlatform();
|
|
78617
78655
|
const attributes = {
|
|
78618
78656
|
[import_semantic_conventions4.ATTR_SERVICE_NAME]: "ur",
|
|
78619
|
-
[import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.43.
|
|
78657
|
+
[import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.43.6"
|
|
78620
78658
|
};
|
|
78621
78659
|
if (platform2 === "wsl") {
|
|
78622
78660
|
const wslVersion = getWslVersion();
|
|
@@ -78643,7 +78681,7 @@ function initialize1PEventLogging() {
|
|
|
78643
78681
|
})
|
|
78644
78682
|
]
|
|
78645
78683
|
});
|
|
78646
|
-
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.43.
|
|
78684
|
+
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.43.6");
|
|
78647
78685
|
}
|
|
78648
78686
|
async function reinitialize1PEventLoggingIfConfigChanged() {
|
|
78649
78687
|
if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
|
|
@@ -83942,7 +83980,7 @@ function formatAgentTrendReport(report = buildAgentTrendReport()) {
|
|
|
83942
83980
|
function formatA2AAgentCard(options = {}, pretty = true) {
|
|
83943
83981
|
return JSON.stringify(buildA2AAgentCard(options), null, pretty ? 2 : 0);
|
|
83944
83982
|
}
|
|
83945
|
-
var urVersion = "1.43.
|
|
83983
|
+
var urVersion = "1.43.6", coverage, priorityRoadmap;
|
|
83946
83984
|
var init_trends = __esm(() => {
|
|
83947
83985
|
coverage = [
|
|
83948
83986
|
{
|
|
@@ -85937,7 +85975,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
85937
85975
|
if (!isAttributionHeaderEnabled()) {
|
|
85938
85976
|
return "";
|
|
85939
85977
|
}
|
|
85940
|
-
const version2 = `${"1.43.
|
|
85978
|
+
const version2 = `${"1.43.6"}.${fingerprint}`;
|
|
85941
85979
|
const entrypoint = process.env.UR_CODE_ENTRYPOINT ?? "unknown";
|
|
85942
85980
|
const cch = "";
|
|
85943
85981
|
const workload = getWorkload();
|
|
@@ -193879,7 +193917,7 @@ function getTelemetryAttributes() {
|
|
|
193879
193917
|
attributes["session.id"] = sessionId;
|
|
193880
193918
|
}
|
|
193881
193919
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
193882
|
-
attributes["app.version"] = "1.43.
|
|
193920
|
+
attributes["app.version"] = "1.43.6";
|
|
193883
193921
|
}
|
|
193884
193922
|
const oauthAccount = getOauthAccountInfo();
|
|
193885
193923
|
if (oauthAccount) {
|
|
@@ -229267,7 +229305,7 @@ function getInstallationEnv() {
|
|
|
229267
229305
|
return;
|
|
229268
229306
|
}
|
|
229269
229307
|
function getURCodeVersion() {
|
|
229270
|
-
return "1.43.
|
|
229308
|
+
return "1.43.6";
|
|
229271
229309
|
}
|
|
229272
229310
|
async function getInstalledVSCodeExtensionVersion(command) {
|
|
229273
229311
|
const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
|
|
@@ -232106,7 +232144,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
232106
232144
|
const client2 = new Client({
|
|
232107
232145
|
name: "ur",
|
|
232108
232146
|
title: "UR",
|
|
232109
|
-
version: "1.43.
|
|
232147
|
+
version: "1.43.6",
|
|
232110
232148
|
description: "UR-Nexus autonomous engineering workflow engine",
|
|
232111
232149
|
websiteUrl: PRODUCT_URL
|
|
232112
232150
|
}, {
|
|
@@ -232460,7 +232498,7 @@ var init_client5 = __esm(() => {
|
|
|
232460
232498
|
const client2 = new Client({
|
|
232461
232499
|
name: "ur",
|
|
232462
232500
|
title: "UR",
|
|
232463
|
-
version: "1.43.
|
|
232501
|
+
version: "1.43.6",
|
|
232464
232502
|
description: "UR-Nexus autonomous engineering workflow engine",
|
|
232465
232503
|
websiteUrl: PRODUCT_URL
|
|
232466
232504
|
}, {
|
|
@@ -242274,9 +242312,9 @@ async function assertMinVersion() {
|
|
|
242274
242312
|
if (false) {}
|
|
242275
242313
|
try {
|
|
242276
242314
|
const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
|
|
242277
|
-
if (versionConfig.minVersion && lt("1.43.
|
|
242315
|
+
if (versionConfig.minVersion && lt("1.43.6", versionConfig.minVersion)) {
|
|
242278
242316
|
console.error(`
|
|
242279
|
-
It looks like your version of UR (${"1.43.
|
|
242317
|
+
It looks like your version of UR (${"1.43.6"}) needs an update.
|
|
242280
242318
|
A newer version (${versionConfig.minVersion} or higher) is required to continue.
|
|
242281
242319
|
|
|
242282
242320
|
To update, please run:
|
|
@@ -242492,7 +242530,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
242492
242530
|
logError2(new AutoUpdaterError("Another process is currently installing an update"));
|
|
242493
242531
|
logEvent("tengu_auto_updater_lock_contention", {
|
|
242494
242532
|
pid: process.pid,
|
|
242495
|
-
currentVersion: "1.43.
|
|
242533
|
+
currentVersion: "1.43.6"
|
|
242496
242534
|
});
|
|
242497
242535
|
return "in_progress";
|
|
242498
242536
|
}
|
|
@@ -242501,7 +242539,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
242501
242539
|
if (!env2.isRunningWithBun() && env2.isNpmFromWindowsPath()) {
|
|
242502
242540
|
logError2(new Error("Windows NPM detected in WSL environment"));
|
|
242503
242541
|
logEvent("tengu_auto_updater_windows_npm_in_wsl", {
|
|
242504
|
-
currentVersion: "1.43.
|
|
242542
|
+
currentVersion: "1.43.6"
|
|
242505
242543
|
});
|
|
242506
242544
|
console.error(`
|
|
242507
242545
|
Error: Windows NPM detected in WSL
|
|
@@ -243036,7 +243074,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
243036
243074
|
}
|
|
243037
243075
|
async function getDoctorDiagnostic() {
|
|
243038
243076
|
const installationType = await getCurrentInstallationType();
|
|
243039
|
-
const version2 = typeof MACRO !== "undefined" ? "1.43.
|
|
243077
|
+
const version2 = typeof MACRO !== "undefined" ? "1.43.6" : "unknown";
|
|
243040
243078
|
const installationPath = await getInstallationPath();
|
|
243041
243079
|
const invokedBinary = getInvokedBinary();
|
|
243042
243080
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -243971,8 +244009,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
243971
244009
|
const maxVersion = await getMaxVersion();
|
|
243972
244010
|
if (maxVersion && gt(version2, maxVersion)) {
|
|
243973
244011
|
logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`);
|
|
243974
|
-
if (gte("1.43.
|
|
243975
|
-
logForDebugging(`Native installer: current version ${"1.43.
|
|
244012
|
+
if (gte("1.43.6", maxVersion)) {
|
|
244013
|
+
logForDebugging(`Native installer: current version ${"1.43.6"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
243976
244014
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
243977
244015
|
latency_ms: Date.now() - startTime,
|
|
243978
244016
|
max_version: maxVersion,
|
|
@@ -243983,7 +244021,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
243983
244021
|
version2 = maxVersion;
|
|
243984
244022
|
}
|
|
243985
244023
|
}
|
|
243986
|
-
if (!forceReinstall && version2 === "1.43.
|
|
244024
|
+
if (!forceReinstall && version2 === "1.43.6" && await versionIsAvailable(version2) && await isPossibleURBinary(executablePath)) {
|
|
243987
244025
|
logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
|
|
243988
244026
|
logEvent("tengu_native_update_complete", {
|
|
243989
244027
|
latency_ms: Date.now() - startTime,
|
|
@@ -340974,7 +341012,7 @@ function Feedback({
|
|
|
340974
341012
|
platform: env2.platform,
|
|
340975
341013
|
gitRepo: envInfo.isGit,
|
|
340976
341014
|
terminal: env2.terminal,
|
|
340977
|
-
version: "1.43.
|
|
341015
|
+
version: "1.43.6",
|
|
340978
341016
|
transcript: normalizeMessagesForAPI(messages),
|
|
340979
341017
|
errors: sanitizedErrors,
|
|
340980
341018
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -341166,7 +341204,7 @@ function Feedback({
|
|
|
341166
341204
|
", ",
|
|
341167
341205
|
env2.terminal,
|
|
341168
341206
|
", v",
|
|
341169
|
-
"1.43.
|
|
341207
|
+
"1.43.6"
|
|
341170
341208
|
]
|
|
341171
341209
|
}, undefined, true, undefined, this)
|
|
341172
341210
|
]
|
|
@@ -341272,7 +341310,7 @@ ${sanitizedDescription}
|
|
|
341272
341310
|
` + `**Environment Info**
|
|
341273
341311
|
` + `- Platform: ${env2.platform}
|
|
341274
341312
|
` + `- Terminal: ${env2.terminal}
|
|
341275
|
-
` + `- Version: ${"1.43.
|
|
341313
|
+
` + `- Version: ${"1.43.6"}
|
|
341276
341314
|
` + `- Feedback ID: ${feedbackId}
|
|
341277
341315
|
` + `
|
|
341278
341316
|
**Errors**
|
|
@@ -344383,7 +344421,7 @@ function buildPrimarySection() {
|
|
|
344383
344421
|
}, undefined, false, undefined, this);
|
|
344384
344422
|
return [{
|
|
344385
344423
|
label: "Version",
|
|
344386
|
-
value: "1.43.
|
|
344424
|
+
value: "1.43.6"
|
|
344387
344425
|
}, {
|
|
344388
344426
|
label: "Session name",
|
|
344389
344427
|
value: nameValue
|
|
@@ -347684,7 +347722,7 @@ function Config({
|
|
|
347684
347722
|
}
|
|
347685
347723
|
}, undefined, false, undefined, this)
|
|
347686
347724
|
}, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime177.jsxDEV(ChannelDowngradeDialog, {
|
|
347687
|
-
currentVersion: "1.43.
|
|
347725
|
+
currentVersion: "1.43.6",
|
|
347688
347726
|
onChoice: (choice) => {
|
|
347689
347727
|
setShowSubmenu(null);
|
|
347690
347728
|
setTabsHidden(false);
|
|
@@ -347696,7 +347734,7 @@ function Config({
|
|
|
347696
347734
|
autoUpdatesChannel: "stable"
|
|
347697
347735
|
};
|
|
347698
347736
|
if (choice === "stay") {
|
|
347699
|
-
newSettings.minimumVersion = "1.43.
|
|
347737
|
+
newSettings.minimumVersion = "1.43.6";
|
|
347700
347738
|
}
|
|
347701
347739
|
updateSettingsForSource("userSettings", newSettings);
|
|
347702
347740
|
setSettingsData((prev_27) => ({
|
|
@@ -355766,7 +355804,7 @@ function HelpV2(t0) {
|
|
|
355766
355804
|
let t6;
|
|
355767
355805
|
if ($3[31] !== tabs) {
|
|
355768
355806
|
t6 = /* @__PURE__ */ jsx_dev_runtime204.jsxDEV(Tabs, {
|
|
355769
|
-
title: `UR v${"1.43.
|
|
355807
|
+
title: `UR v${"1.43.6"}`,
|
|
355770
355808
|
color: "professionalBlue",
|
|
355771
355809
|
defaultTab: "general",
|
|
355772
355810
|
children: tabs
|
|
@@ -356512,7 +356550,7 @@ function buildToolUseContext(tools, readFileStateCache) {
|
|
|
356512
356550
|
async function handleInitialize(options2) {
|
|
356513
356551
|
return {
|
|
356514
356552
|
name: "UR",
|
|
356515
|
-
version: "1.43.
|
|
356553
|
+
version: "1.43.6",
|
|
356516
356554
|
protocolVersion: "0.1.0",
|
|
356517
356555
|
workspaceRoot: options2.cwd,
|
|
356518
356556
|
capabilities: {
|
|
@@ -376654,7 +376692,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
376654
376692
|
return [];
|
|
376655
376693
|
}
|
|
376656
376694
|
}
|
|
376657
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.43.
|
|
376695
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.43.6") {
|
|
376658
376696
|
if (process.env.USER_TYPE === "ant") {
|
|
376659
376697
|
const changelog = "";
|
|
376660
376698
|
if (changelog) {
|
|
@@ -376681,7 +376719,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.43.5")
|
|
|
376681
376719
|
releaseNotes
|
|
376682
376720
|
};
|
|
376683
376721
|
}
|
|
376684
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.43.
|
|
376722
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.43.6") {
|
|
376685
376723
|
if (process.env.USER_TYPE === "ant") {
|
|
376686
376724
|
const changelog = "";
|
|
376687
376725
|
if (changelog) {
|
|
@@ -377860,7 +377898,7 @@ function getRecentActivitySync() {
|
|
|
377860
377898
|
return cachedActivity;
|
|
377861
377899
|
}
|
|
377862
377900
|
function getLogoDisplayData() {
|
|
377863
|
-
const version2 = process.env.DEMO_VERSION ?? "1.43.
|
|
377901
|
+
const version2 = process.env.DEMO_VERSION ?? "1.43.6";
|
|
377864
377902
|
const serverUrl = getDirectConnectServerUrl();
|
|
377865
377903
|
const displayPath = process.env.DEMO_VERSION ? "/code/ur" : getDisplayPath(getCwd());
|
|
377866
377904
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -378649,7 +378687,7 @@ function LogoV2() {
|
|
|
378649
378687
|
if ($3[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
378650
378688
|
t2 = () => {
|
|
378651
378689
|
const currentConfig2 = getGlobalConfig();
|
|
378652
|
-
if (currentConfig2.lastReleaseNotesSeen === "1.43.
|
|
378690
|
+
if (currentConfig2.lastReleaseNotesSeen === "1.43.6") {
|
|
378653
378691
|
return;
|
|
378654
378692
|
}
|
|
378655
378693
|
saveGlobalConfig(_temp326);
|
|
@@ -379334,12 +379372,12 @@ function LogoV2() {
|
|
|
379334
379372
|
return t41;
|
|
379335
379373
|
}
|
|
379336
379374
|
function _temp326(current) {
|
|
379337
|
-
if (current.lastReleaseNotesSeen === "1.43.
|
|
379375
|
+
if (current.lastReleaseNotesSeen === "1.43.6") {
|
|
379338
379376
|
return current;
|
|
379339
379377
|
}
|
|
379340
379378
|
return {
|
|
379341
379379
|
...current,
|
|
379342
|
-
lastReleaseNotesSeen: "1.43.
|
|
379380
|
+
lastReleaseNotesSeen: "1.43.6"
|
|
379343
379381
|
};
|
|
379344
379382
|
}
|
|
379345
379383
|
function _temp243(s_0) {
|
|
@@ -596754,7 +596792,7 @@ async function captureMemoryDiagnostics(trigger2, dumpNumber = 0) {
|
|
|
596754
596792
|
smapsRollup,
|
|
596755
596793
|
platform: process.platform,
|
|
596756
596794
|
nodeVersion: process.version,
|
|
596757
|
-
ccVersion: "1.43.
|
|
596795
|
+
ccVersion: "1.43.6"
|
|
596758
596796
|
};
|
|
596759
596797
|
}
|
|
596760
596798
|
async function performHeapDump(trigger2 = "manual", dumpNumber = 0) {
|
|
@@ -597340,7 +597378,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
597340
597378
|
var call137 = async () => {
|
|
597341
597379
|
return {
|
|
597342
597380
|
type: "text",
|
|
597343
|
-
value: "1.43.
|
|
597381
|
+
value: "1.43.6"
|
|
597344
597382
|
};
|
|
597345
597383
|
}, version2, version_default;
|
|
597346
597384
|
var init_version = __esm(() => {
|
|
@@ -607433,7 +607471,7 @@ function generateHtmlReport(data, insights) {
|
|
|
607433
607471
|
</html>`;
|
|
607434
607472
|
}
|
|
607435
607473
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
607436
|
-
const version3 = typeof MACRO !== "undefined" ? "1.43.
|
|
607474
|
+
const version3 = typeof MACRO !== "undefined" ? "1.43.6" : "unknown";
|
|
607437
607475
|
const remote_hosts_collected = remoteStats?.hosts.filter((h2) => h2.sessionCount > 0).map((h2) => h2.name);
|
|
607438
607476
|
const facets_summary = {
|
|
607439
607477
|
total: facets.size,
|
|
@@ -611713,7 +611751,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
611713
611751
|
init_settings2();
|
|
611714
611752
|
init_slowOperations();
|
|
611715
611753
|
init_uuid();
|
|
611716
|
-
VERSION5 = typeof MACRO !== "undefined" ? "1.43.
|
|
611754
|
+
VERSION5 = typeof MACRO !== "undefined" ? "1.43.6" : "unknown";
|
|
611717
611755
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
611718
611756
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
611719
611757
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -612918,7 +612956,7 @@ var init_filesystem = __esm(() => {
|
|
|
612918
612956
|
});
|
|
612919
612957
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
612920
612958
|
const nonce = randomBytes18(16).toString("hex");
|
|
612921
|
-
return join202(getURTempDir(), "bundled-skills", "1.43.
|
|
612959
|
+
return join202(getURTempDir(), "bundled-skills", "1.43.6", nonce);
|
|
612922
612960
|
});
|
|
612923
612961
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
612924
612962
|
});
|
|
@@ -619207,7 +619245,7 @@ function computeFingerprint(messageText2, version3) {
|
|
|
619207
619245
|
}
|
|
619208
619246
|
function computeFingerprintFromMessages(messages) {
|
|
619209
619247
|
const firstMessageText = extractFirstMessageText(messages);
|
|
619210
|
-
return computeFingerprint(firstMessageText, "1.43.
|
|
619248
|
+
return computeFingerprint(firstMessageText, "1.43.6");
|
|
619211
619249
|
}
|
|
619212
619250
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
619213
619251
|
var init_fingerprint = () => {};
|
|
@@ -621081,7 +621119,7 @@ async function sideQuery(opts) {
|
|
|
621081
621119
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
621082
621120
|
}
|
|
621083
621121
|
const messageText2 = extractFirstUserMessageText(messages);
|
|
621084
|
-
const fingerprint2 = computeFingerprint(messageText2, "1.43.
|
|
621122
|
+
const fingerprint2 = computeFingerprint(messageText2, "1.43.6");
|
|
621085
621123
|
const attributionHeader = getAttributionHeader(fingerprint2);
|
|
621086
621124
|
const systemBlocks = [
|
|
621087
621125
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -625818,7 +625856,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
625818
625856
|
slash_commands: inputs.commands.filter((c4) => c4.userInvocable !== false).map((c4) => c4.name),
|
|
625819
625857
|
apiKeySource: getURHQApiKeyWithSource().source,
|
|
625820
625858
|
betas: getSdkBetas(),
|
|
625821
|
-
ur_version: "1.43.
|
|
625859
|
+
ur_version: "1.43.6",
|
|
625822
625860
|
output_style: outputStyle2,
|
|
625823
625861
|
agents: inputs.agents.map((agent) => agent.agentType),
|
|
625824
625862
|
skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill2) => skill2.name),
|
|
@@ -640446,7 +640484,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
640446
640484
|
function getSemverPart(version3) {
|
|
640447
640485
|
return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
|
|
640448
640486
|
}
|
|
640449
|
-
function useUpdateNotification(updatedVersion, initialVersion = "1.43.
|
|
640487
|
+
function useUpdateNotification(updatedVersion, initialVersion = "1.43.6") {
|
|
640450
640488
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react226.useState(() => getSemverPart(initialVersion));
|
|
640451
640489
|
if (!updatedVersion) {
|
|
640452
640490
|
return null;
|
|
@@ -640495,7 +640533,7 @@ function AutoUpdater({
|
|
|
640495
640533
|
return;
|
|
640496
640534
|
}
|
|
640497
640535
|
if (false) {}
|
|
640498
|
-
const currentVersion = "1.43.
|
|
640536
|
+
const currentVersion = "1.43.6";
|
|
640499
640537
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
640500
640538
|
let latestVersion = await getLatestVersion(channel);
|
|
640501
640539
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -640724,12 +640762,12 @@ function NativeAutoUpdater({
|
|
|
640724
640762
|
logEvent("tengu_native_auto_updater_start", {});
|
|
640725
640763
|
try {
|
|
640726
640764
|
const maxVersion = await getMaxVersion();
|
|
640727
|
-
if (maxVersion && gt("1.43.
|
|
640765
|
+
if (maxVersion && gt("1.43.6", maxVersion)) {
|
|
640728
640766
|
const msg = await getMaxVersionMessage();
|
|
640729
640767
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
640730
640768
|
}
|
|
640731
640769
|
const result = await installLatest(channel);
|
|
640732
|
-
const currentVersion = "1.43.
|
|
640770
|
+
const currentVersion = "1.43.6";
|
|
640733
640771
|
const latencyMs = Date.now() - startTime;
|
|
640734
640772
|
if (result.lockFailed) {
|
|
640735
640773
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -640866,17 +640904,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
640866
640904
|
const maxVersion = await getMaxVersion();
|
|
640867
640905
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
640868
640906
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
640869
|
-
if (gte("1.43.
|
|
640870
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.43.
|
|
640907
|
+
if (gte("1.43.6", maxVersion)) {
|
|
640908
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.43.6"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
640871
640909
|
setUpdateAvailable(false);
|
|
640872
640910
|
return;
|
|
640873
640911
|
}
|
|
640874
640912
|
latest = maxVersion;
|
|
640875
640913
|
}
|
|
640876
|
-
const hasUpdate = latest && !gte("1.43.
|
|
640914
|
+
const hasUpdate = latest && !gte("1.43.6", latest) && !shouldSkipVersion(latest);
|
|
640877
640915
|
setUpdateAvailable(!!hasUpdate);
|
|
640878
640916
|
if (hasUpdate) {
|
|
640879
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.43.
|
|
640917
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.43.6"} -> ${latest}`);
|
|
640880
640918
|
}
|
|
640881
640919
|
};
|
|
640882
640920
|
$3[0] = t1;
|
|
@@ -640910,7 +640948,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
640910
640948
|
wrap: "truncate",
|
|
640911
640949
|
children: [
|
|
640912
640950
|
"currentVersion: ",
|
|
640913
|
-
"1.43.
|
|
640951
|
+
"1.43.6"
|
|
640914
640952
|
]
|
|
640915
640953
|
}, undefined, true, undefined, this);
|
|
640916
640954
|
$3[3] = verbose;
|
|
@@ -653362,7 +653400,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
653362
653400
|
project_dir: getOriginalCwd(),
|
|
653363
653401
|
added_dirs: addedDirs
|
|
653364
653402
|
},
|
|
653365
|
-
version: "1.43.
|
|
653403
|
+
version: "1.43.6",
|
|
653366
653404
|
output_style: {
|
|
653367
653405
|
name: outputStyleName
|
|
653368
653406
|
},
|
|
@@ -653445,7 +653483,7 @@ function StatusLineInner({
|
|
|
653445
653483
|
const taskValues = Object.values(tasks2);
|
|
653446
653484
|
const taskRunningCount = taskValues.filter((task2) => task2.status === "running" || task2.status === "pending").length;
|
|
653447
653485
|
const defaultStatusLineText = buildDefaultStatusBar({
|
|
653448
|
-
version: "1.43.
|
|
653486
|
+
version: "1.43.6",
|
|
653449
653487
|
providerLabel: providerRuntime.providerLabel,
|
|
653450
653488
|
authMode: providerRuntime.authLabel,
|
|
653451
653489
|
model: providerRuntime.model ?? renderModelName(mainLoopModel),
|
|
@@ -664933,7 +664971,7 @@ async function submitTranscriptShare(messages, trigger2, appearanceId) {
|
|
|
664933
664971
|
} catch {}
|
|
664934
664972
|
const data = {
|
|
664935
664973
|
trigger: trigger2,
|
|
664936
|
-
version: "1.43.
|
|
664974
|
+
version: "1.43.6",
|
|
664937
664975
|
platform: process.platform,
|
|
664938
664976
|
transcript,
|
|
664939
664977
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -676818,7 +676856,7 @@ function WelcomeV2() {
|
|
|
676818
676856
|
dimColor: true,
|
|
676819
676857
|
children: [
|
|
676820
676858
|
"v",
|
|
676821
|
-
"1.43.
|
|
676859
|
+
"1.43.6"
|
|
676822
676860
|
]
|
|
676823
676861
|
}, undefined, true, undefined, this)
|
|
676824
676862
|
]
|
|
@@ -678078,7 +678116,7 @@ function completeOnboarding() {
|
|
|
678078
678116
|
saveGlobalConfig((current) => ({
|
|
678079
678117
|
...current,
|
|
678080
678118
|
hasCompletedOnboarding: true,
|
|
678081
|
-
lastOnboardingVersion: "1.43.
|
|
678119
|
+
lastOnboardingVersion: "1.43.6"
|
|
678082
678120
|
}));
|
|
678083
678121
|
}
|
|
678084
678122
|
function showDialog(root2, renderer) {
|
|
@@ -683115,7 +683153,7 @@ function appendToLog(path24, message) {
|
|
|
683115
683153
|
cwd: getFsImplementation().cwd(),
|
|
683116
683154
|
userType: process.env.USER_TYPE,
|
|
683117
683155
|
sessionId: getSessionId(),
|
|
683118
|
-
version: "1.43.
|
|
683156
|
+
version: "1.43.6"
|
|
683119
683157
|
};
|
|
683120
683158
|
getLogWriter(path24).write(messageWithTimestamp);
|
|
683121
683159
|
}
|
|
@@ -687209,8 +687247,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
687209
687247
|
}
|
|
687210
687248
|
async function checkEnvLessBridgeMinVersion() {
|
|
687211
687249
|
const cfg = await getEnvLessBridgeConfig();
|
|
687212
|
-
if (cfg.min_version && lt("1.43.
|
|
687213
|
-
return `Your version of UR (${"1.43.
|
|
687250
|
+
if (cfg.min_version && lt("1.43.6", cfg.min_version)) {
|
|
687251
|
+
return `Your version of UR (${"1.43.6"}) is too old for Remote Control.
|
|
687214
687252
|
Version ${cfg.min_version} or higher is required. Run \`ur update\` to update.`;
|
|
687215
687253
|
}
|
|
687216
687254
|
return null;
|
|
@@ -687684,7 +687722,7 @@ async function initBridgeCore(params) {
|
|
|
687684
687722
|
const rawApi = createBridgeApiClient({
|
|
687685
687723
|
baseUrl,
|
|
687686
687724
|
getAccessToken,
|
|
687687
|
-
runnerVersion: "1.43.
|
|
687725
|
+
runnerVersion: "1.43.6",
|
|
687688
687726
|
onDebug: logForDebugging,
|
|
687689
687727
|
onAuth401,
|
|
687690
687728
|
getTrustedDeviceToken
|
|
@@ -693366,7 +693404,7 @@ async function startMCPServer(cwd3, debug2, verbose) {
|
|
|
693366
693404
|
setCwd(cwd3);
|
|
693367
693405
|
const server2 = new Server({
|
|
693368
693406
|
name: "ur/tengu",
|
|
693369
|
-
version: "1.43.
|
|
693407
|
+
version: "1.43.6"
|
|
693370
693408
|
}, {
|
|
693371
693409
|
capabilities: {
|
|
693372
693410
|
tools: {}
|
|
@@ -695408,7 +695446,7 @@ async function update() {
|
|
|
695408
695446
|
logEvent("tengu_update_check", {});
|
|
695409
695447
|
const diagnostic = await getDoctorDiagnostic();
|
|
695410
695448
|
const result = await checkUpgradeStatus({
|
|
695411
|
-
currentVersion: "1.43.
|
|
695449
|
+
currentVersion: "1.43.6",
|
|
695412
695450
|
packageName: UR_AGENT_PACKAGE_NAME,
|
|
695413
695451
|
installationType: diagnostic.installationType,
|
|
695414
695452
|
latestVersion: () => getLatestNpmPackageVersion(UR_AGENT_PACKAGE_NAME)
|
|
@@ -696654,7 +696692,7 @@ ${customInstructions}` : customInstructions;
|
|
|
696654
696692
|
}
|
|
696655
696693
|
}
|
|
696656
696694
|
logForDiagnosticsNoPII("info", "started", {
|
|
696657
|
-
version: "1.43.
|
|
696695
|
+
version: "1.43.6",
|
|
696658
696696
|
is_native_binary: isInBundledMode()
|
|
696659
696697
|
});
|
|
696660
696698
|
registerCleanup(async () => {
|
|
@@ -697440,7 +697478,7 @@ Usage: ur --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
697440
697478
|
pendingHookMessages
|
|
697441
697479
|
}, renderAndRun);
|
|
697442
697480
|
}
|
|
697443
|
-
}).version("1.43.
|
|
697481
|
+
}).version("1.43.6 (UR-Nexus)", "-v, --version", "Output the version number");
|
|
697444
697482
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
697445
697483
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
697446
697484
|
if (canUserConfigureAdvisor()) {
|
|
@@ -698355,7 +698393,7 @@ if (false) {}
|
|
|
698355
698393
|
async function main2() {
|
|
698356
698394
|
const args = process.argv.slice(2);
|
|
698357
698395
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
698358
|
-
console.log(`${"1.43.
|
|
698396
|
+
console.log(`${"1.43.6"} (UR-Nexus)`);
|
|
698359
698397
|
return;
|
|
698360
698398
|
}
|
|
698361
698399
|
if (args[0] === "a2a" && args[1] === "serve" && !args.includes("--help") && !args.includes("-h")) {
|
package/documentation/index.html
CHANGED
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
<main id="content" class="content">
|
|
45
45
|
<header class="topbar">
|
|
46
46
|
<div>
|
|
47
|
-
<p class="eyebrow">Version 1.43.
|
|
47
|
+
<p class="eyebrow">Version 1.43.6</p>
|
|
48
48
|
<h1>UR-Nexus Documentation</h1>
|
|
49
49
|
<p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-Nexus.</p>
|
|
50
50
|
</div>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ur-inline-diffs",
|
|
3
3
|
"displayName": "UR Inline Diffs",
|
|
4
4
|
"description": "Review, apply, and reject UR inline diff bundles from .ur/ide/diffs inside VS Code.",
|
|
5
|
-
"version": "1.43.
|
|
5
|
+
"version": "1.43.6",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED