ur-agent 1.37.3 → 1.37.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/CHANGELOG.md
CHANGED
package/dist/cli.js
CHANGED
|
@@ -71146,7 +71146,7 @@ var init_auth = __esm(() => {
|
|
|
71146
71146
|
|
|
71147
71147
|
// src/utils/userAgent.ts
|
|
71148
71148
|
function getURCodeUserAgent() {
|
|
71149
|
-
return `ur/${"1.37.
|
|
71149
|
+
return `ur/${"1.37.4"}`;
|
|
71150
71150
|
}
|
|
71151
71151
|
|
|
71152
71152
|
// src/utils/workloadContext.ts
|
|
@@ -71168,7 +71168,7 @@ function getUserAgent() {
|
|
|
71168
71168
|
const clientApp = process.env.UR_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}` : "";
|
|
71169
71169
|
const workload = getWorkload();
|
|
71170
71170
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
71171
|
-
return `ur-cli/${"1.37.
|
|
71171
|
+
return `ur-cli/${"1.37.4"} (${process.env.USER_TYPE}, ${process.env.UR_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
71172
71172
|
}
|
|
71173
71173
|
function getMCPUserAgent() {
|
|
71174
71174
|
const parts = [];
|
|
@@ -71182,7 +71182,7 @@ function getMCPUserAgent() {
|
|
|
71182
71182
|
parts.push(`client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}`);
|
|
71183
71183
|
}
|
|
71184
71184
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
71185
|
-
return `ur/${"1.37.
|
|
71185
|
+
return `ur/${"1.37.4"}${suffix}`;
|
|
71186
71186
|
}
|
|
71187
71187
|
function getWebFetchUserAgent() {
|
|
71188
71188
|
return `UR-User (${getURCodeUserAgent()})`;
|
|
@@ -71320,7 +71320,7 @@ var init_user = __esm(() => {
|
|
|
71320
71320
|
deviceId,
|
|
71321
71321
|
sessionId: getSessionId(),
|
|
71322
71322
|
email: getEmail(),
|
|
71323
|
-
appVersion: "1.37.
|
|
71323
|
+
appVersion: "1.37.4",
|
|
71324
71324
|
platform: getHostPlatformForAnalytics(),
|
|
71325
71325
|
organizationUuid,
|
|
71326
71326
|
accountUuid,
|
|
@@ -77837,7 +77837,7 @@ var init_metadata = __esm(() => {
|
|
|
77837
77837
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
77838
77838
|
WHITESPACE_REGEX = /\s+/;
|
|
77839
77839
|
getVersionBase = memoize_default(() => {
|
|
77840
|
-
const match = "1.37.
|
|
77840
|
+
const match = "1.37.4".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
77841
77841
|
return match ? match[0] : undefined;
|
|
77842
77842
|
});
|
|
77843
77843
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -77877,7 +77877,7 @@ var init_metadata = __esm(() => {
|
|
|
77877
77877
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
77878
77878
|
isURCodeAction: isEnvTruthy(process.env.UR_CODE_ACTION),
|
|
77879
77879
|
isURAiAuth: isURAISubscriber(),
|
|
77880
|
-
version: "1.37.
|
|
77880
|
+
version: "1.37.4",
|
|
77881
77881
|
versionBase: getVersionBase(),
|
|
77882
77882
|
buildTime: "",
|
|
77883
77883
|
deploymentEnvironment: env2.detectDeploymentEnvironment(),
|
|
@@ -78547,7 +78547,7 @@ function initialize1PEventLogging() {
|
|
|
78547
78547
|
const platform2 = getPlatform();
|
|
78548
78548
|
const attributes = {
|
|
78549
78549
|
[import_semantic_conventions4.ATTR_SERVICE_NAME]: "ur",
|
|
78550
|
-
[import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.37.
|
|
78550
|
+
[import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.37.4"
|
|
78551
78551
|
};
|
|
78552
78552
|
if (platform2 === "wsl") {
|
|
78553
78553
|
const wslVersion = getWslVersion();
|
|
@@ -78574,7 +78574,7 @@ function initialize1PEventLogging() {
|
|
|
78574
78574
|
})
|
|
78575
78575
|
]
|
|
78576
78576
|
});
|
|
78577
|
-
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.37.
|
|
78577
|
+
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.37.4");
|
|
78578
78578
|
}
|
|
78579
78579
|
async function reinitialize1PEventLoggingIfConfigChanged() {
|
|
78580
78580
|
if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
|
|
@@ -83872,7 +83872,7 @@ function formatAgentTrendReport(report = buildAgentTrendReport()) {
|
|
|
83872
83872
|
function formatA2AAgentCard(options = {}, pretty = true) {
|
|
83873
83873
|
return JSON.stringify(buildA2AAgentCard(options), null, pretty ? 2 : 0);
|
|
83874
83874
|
}
|
|
83875
|
-
var urVersion = "1.37.
|
|
83875
|
+
var urVersion = "1.37.4", coverage, priorityRoadmap;
|
|
83876
83876
|
var init_trends = __esm(() => {
|
|
83877
83877
|
coverage = [
|
|
83878
83878
|
{
|
|
@@ -85865,7 +85865,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
85865
85865
|
if (!isAttributionHeaderEnabled()) {
|
|
85866
85866
|
return "";
|
|
85867
85867
|
}
|
|
85868
|
-
const version2 = `${"1.37.
|
|
85868
|
+
const version2 = `${"1.37.4"}.${fingerprint}`;
|
|
85869
85869
|
const entrypoint = process.env.UR_CODE_ENTRYPOINT ?? "unknown";
|
|
85870
85870
|
const cch = "";
|
|
85871
85871
|
const workload = getWorkload();
|
|
@@ -193757,7 +193757,7 @@ function getTelemetryAttributes() {
|
|
|
193757
193757
|
attributes["session.id"] = sessionId;
|
|
193758
193758
|
}
|
|
193759
193759
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
193760
|
-
attributes["app.version"] = "1.37.
|
|
193760
|
+
attributes["app.version"] = "1.37.4";
|
|
193761
193761
|
}
|
|
193762
193762
|
const oauthAccount = getOauthAccountInfo();
|
|
193763
193763
|
if (oauthAccount) {
|
|
@@ -229143,7 +229143,7 @@ function getInstallationEnv() {
|
|
|
229143
229143
|
return;
|
|
229144
229144
|
}
|
|
229145
229145
|
function getURCodeVersion() {
|
|
229146
|
-
return "1.37.
|
|
229146
|
+
return "1.37.4";
|
|
229147
229147
|
}
|
|
229148
229148
|
async function getInstalledVSCodeExtensionVersion(command) {
|
|
229149
229149
|
const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
|
|
@@ -231982,7 +231982,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
231982
231982
|
const client2 = new Client({
|
|
231983
231983
|
name: "ur",
|
|
231984
231984
|
title: "UR",
|
|
231985
|
-
version: "1.37.
|
|
231985
|
+
version: "1.37.4",
|
|
231986
231986
|
description: "UR-AGENT autonomous engineering workflow engine",
|
|
231987
231987
|
websiteUrl: PRODUCT_URL
|
|
231988
231988
|
}, {
|
|
@@ -232336,7 +232336,7 @@ var init_client5 = __esm(() => {
|
|
|
232336
232336
|
const client2 = new Client({
|
|
232337
232337
|
name: "ur",
|
|
232338
232338
|
title: "UR",
|
|
232339
|
-
version: "1.37.
|
|
232339
|
+
version: "1.37.4",
|
|
232340
232340
|
description: "UR-AGENT autonomous engineering workflow engine",
|
|
232341
232341
|
websiteUrl: PRODUCT_URL
|
|
232342
232342
|
}, {
|
|
@@ -242150,9 +242150,9 @@ async function assertMinVersion() {
|
|
|
242150
242150
|
if (false) {}
|
|
242151
242151
|
try {
|
|
242152
242152
|
const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
|
|
242153
|
-
if (versionConfig.minVersion && lt("1.37.
|
|
242153
|
+
if (versionConfig.minVersion && lt("1.37.4", versionConfig.minVersion)) {
|
|
242154
242154
|
console.error(`
|
|
242155
|
-
It looks like your version of UR (${"1.37.
|
|
242155
|
+
It looks like your version of UR (${"1.37.4"}) needs an update.
|
|
242156
242156
|
A newer version (${versionConfig.minVersion} or higher) is required to continue.
|
|
242157
242157
|
|
|
242158
242158
|
To update, please run:
|
|
@@ -242368,7 +242368,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
242368
242368
|
logError2(new AutoUpdaterError("Another process is currently installing an update"));
|
|
242369
242369
|
logEvent("tengu_auto_updater_lock_contention", {
|
|
242370
242370
|
pid: process.pid,
|
|
242371
|
-
currentVersion: "1.37.
|
|
242371
|
+
currentVersion: "1.37.4"
|
|
242372
242372
|
});
|
|
242373
242373
|
return "in_progress";
|
|
242374
242374
|
}
|
|
@@ -242377,7 +242377,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
242377
242377
|
if (!env2.isRunningWithBun() && env2.isNpmFromWindowsPath()) {
|
|
242378
242378
|
logError2(new Error("Windows NPM detected in WSL environment"));
|
|
242379
242379
|
logEvent("tengu_auto_updater_windows_npm_in_wsl", {
|
|
242380
|
-
currentVersion: "1.37.
|
|
242380
|
+
currentVersion: "1.37.4"
|
|
242381
242381
|
});
|
|
242382
242382
|
console.error(`
|
|
242383
242383
|
Error: Windows NPM detected in WSL
|
|
@@ -242912,7 +242912,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
242912
242912
|
}
|
|
242913
242913
|
async function getDoctorDiagnostic() {
|
|
242914
242914
|
const installationType = await getCurrentInstallationType();
|
|
242915
|
-
const version2 = typeof MACRO !== "undefined" ? "1.37.
|
|
242915
|
+
const version2 = typeof MACRO !== "undefined" ? "1.37.4" : "unknown";
|
|
242916
242916
|
const installationPath = await getInstallationPath();
|
|
242917
242917
|
const invokedBinary = getInvokedBinary();
|
|
242918
242918
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -243847,8 +243847,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
243847
243847
|
const maxVersion = await getMaxVersion();
|
|
243848
243848
|
if (maxVersion && gt(version2, maxVersion)) {
|
|
243849
243849
|
logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`);
|
|
243850
|
-
if (gte("1.37.
|
|
243851
|
-
logForDebugging(`Native installer: current version ${"1.37.
|
|
243850
|
+
if (gte("1.37.4", maxVersion)) {
|
|
243851
|
+
logForDebugging(`Native installer: current version ${"1.37.4"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
243852
243852
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
243853
243853
|
latency_ms: Date.now() - startTime,
|
|
243854
243854
|
max_version: maxVersion,
|
|
@@ -243859,7 +243859,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
243859
243859
|
version2 = maxVersion;
|
|
243860
243860
|
}
|
|
243861
243861
|
}
|
|
243862
|
-
if (!forceReinstall && version2 === "1.37.
|
|
243862
|
+
if (!forceReinstall && version2 === "1.37.4" && await versionIsAvailable(version2) && await isPossibleURBinary(executablePath)) {
|
|
243863
243863
|
logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
|
|
243864
243864
|
logEvent("tengu_native_update_complete", {
|
|
243865
243865
|
latency_ms: Date.now() - startTime,
|
|
@@ -340812,7 +340812,7 @@ function Feedback({
|
|
|
340812
340812
|
platform: env2.platform,
|
|
340813
340813
|
gitRepo: envInfo.isGit,
|
|
340814
340814
|
terminal: env2.terminal,
|
|
340815
|
-
version: "1.37.
|
|
340815
|
+
version: "1.37.4",
|
|
340816
340816
|
transcript: normalizeMessagesForAPI(messages),
|
|
340817
340817
|
errors: sanitizedErrors,
|
|
340818
340818
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -341004,7 +341004,7 @@ function Feedback({
|
|
|
341004
341004
|
", ",
|
|
341005
341005
|
env2.terminal,
|
|
341006
341006
|
", v",
|
|
341007
|
-
"1.37.
|
|
341007
|
+
"1.37.4"
|
|
341008
341008
|
]
|
|
341009
341009
|
}, undefined, true, undefined, this)
|
|
341010
341010
|
]
|
|
@@ -341110,7 +341110,7 @@ ${sanitizedDescription}
|
|
|
341110
341110
|
` + `**Environment Info**
|
|
341111
341111
|
` + `- Platform: ${env2.platform}
|
|
341112
341112
|
` + `- Terminal: ${env2.terminal}
|
|
341113
|
-
` + `- Version: ${"1.37.
|
|
341113
|
+
` + `- Version: ${"1.37.4"}
|
|
341114
341114
|
` + `- Feedback ID: ${feedbackId}
|
|
341115
341115
|
` + `
|
|
341116
341116
|
**Errors**
|
|
@@ -344221,7 +344221,7 @@ function buildPrimarySection() {
|
|
|
344221
344221
|
}, undefined, false, undefined, this);
|
|
344222
344222
|
return [{
|
|
344223
344223
|
label: "Version",
|
|
344224
|
-
value: "1.37.
|
|
344224
|
+
value: "1.37.4"
|
|
344225
344225
|
}, {
|
|
344226
344226
|
label: "Session name",
|
|
344227
344227
|
value: nameValue
|
|
@@ -347522,7 +347522,7 @@ function Config({
|
|
|
347522
347522
|
}
|
|
347523
347523
|
}, undefined, false, undefined, this)
|
|
347524
347524
|
}, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime177.jsxDEV(ChannelDowngradeDialog, {
|
|
347525
|
-
currentVersion: "1.37.
|
|
347525
|
+
currentVersion: "1.37.4",
|
|
347526
347526
|
onChoice: (choice) => {
|
|
347527
347527
|
setShowSubmenu(null);
|
|
347528
347528
|
setTabsHidden(false);
|
|
@@ -347534,7 +347534,7 @@ function Config({
|
|
|
347534
347534
|
autoUpdatesChannel: "stable"
|
|
347535
347535
|
};
|
|
347536
347536
|
if (choice === "stay") {
|
|
347537
|
-
newSettings.minimumVersion = "1.37.
|
|
347537
|
+
newSettings.minimumVersion = "1.37.4";
|
|
347538
347538
|
}
|
|
347539
347539
|
updateSettingsForSource("userSettings", newSettings);
|
|
347540
347540
|
setSettingsData((prev_27) => ({
|
|
@@ -355604,7 +355604,7 @@ function HelpV2(t0) {
|
|
|
355604
355604
|
let t6;
|
|
355605
355605
|
if ($3[31] !== tabs) {
|
|
355606
355606
|
t6 = /* @__PURE__ */ jsx_dev_runtime204.jsxDEV(Tabs, {
|
|
355607
|
-
title: `UR v${"1.37.
|
|
355607
|
+
title: `UR v${"1.37.4"}`,
|
|
355608
355608
|
color: "professionalBlue",
|
|
355609
355609
|
defaultTab: "general",
|
|
355610
355610
|
children: tabs
|
|
@@ -356350,7 +356350,7 @@ function buildToolUseContext(tools, readFileStateCache) {
|
|
|
356350
356350
|
async function handleInitialize(options2) {
|
|
356351
356351
|
return {
|
|
356352
356352
|
name: "ur-agent",
|
|
356353
|
-
version: "1.37.
|
|
356353
|
+
version: "1.37.4",
|
|
356354
356354
|
protocolVersion: "0.1.0",
|
|
356355
356355
|
workspaceRoot: options2.cwd,
|
|
356356
356356
|
capabilities: {
|
|
@@ -376492,7 +376492,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
376492
376492
|
return [];
|
|
376493
376493
|
}
|
|
376494
376494
|
}
|
|
376495
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.37.
|
|
376495
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.37.4") {
|
|
376496
376496
|
if (process.env.USER_TYPE === "ant") {
|
|
376497
376497
|
const changelog = "";
|
|
376498
376498
|
if (changelog) {
|
|
@@ -376519,7 +376519,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.37.3")
|
|
|
376519
376519
|
releaseNotes
|
|
376520
376520
|
};
|
|
376521
376521
|
}
|
|
376522
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.37.
|
|
376522
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.37.4") {
|
|
376523
376523
|
if (process.env.USER_TYPE === "ant") {
|
|
376524
376524
|
const changelog = "";
|
|
376525
376525
|
if (changelog) {
|
|
@@ -377698,7 +377698,7 @@ function getRecentActivitySync() {
|
|
|
377698
377698
|
return cachedActivity;
|
|
377699
377699
|
}
|
|
377700
377700
|
function getLogoDisplayData() {
|
|
377701
|
-
const version2 = process.env.DEMO_VERSION ?? "1.37.
|
|
377701
|
+
const version2 = process.env.DEMO_VERSION ?? "1.37.4";
|
|
377702
377702
|
const serverUrl = getDirectConnectServerUrl();
|
|
377703
377703
|
const displayPath = process.env.DEMO_VERSION ? "/code/ur" : getDisplayPath(getCwd());
|
|
377704
377704
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -378487,7 +378487,7 @@ function LogoV2() {
|
|
|
378487
378487
|
if ($3[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
378488
378488
|
t2 = () => {
|
|
378489
378489
|
const currentConfig2 = getGlobalConfig();
|
|
378490
|
-
if (currentConfig2.lastReleaseNotesSeen === "1.37.
|
|
378490
|
+
if (currentConfig2.lastReleaseNotesSeen === "1.37.4") {
|
|
378491
378491
|
return;
|
|
378492
378492
|
}
|
|
378493
378493
|
saveGlobalConfig(_temp326);
|
|
@@ -379172,12 +379172,12 @@ function LogoV2() {
|
|
|
379172
379172
|
return t41;
|
|
379173
379173
|
}
|
|
379174
379174
|
function _temp326(current) {
|
|
379175
|
-
if (current.lastReleaseNotesSeen === "1.37.
|
|
379175
|
+
if (current.lastReleaseNotesSeen === "1.37.4") {
|
|
379176
379176
|
return current;
|
|
379177
379177
|
}
|
|
379178
379178
|
return {
|
|
379179
379179
|
...current,
|
|
379180
|
-
lastReleaseNotesSeen: "1.37.
|
|
379180
|
+
lastReleaseNotesSeen: "1.37.4"
|
|
379181
379181
|
};
|
|
379182
379182
|
}
|
|
379183
379183
|
function _temp243(s_0) {
|
|
@@ -595092,7 +595092,7 @@ async function captureMemoryDiagnostics(trigger2, dumpNumber = 0) {
|
|
|
595092
595092
|
smapsRollup,
|
|
595093
595093
|
platform: process.platform,
|
|
595094
595094
|
nodeVersion: process.version,
|
|
595095
|
-
ccVersion: "1.37.
|
|
595095
|
+
ccVersion: "1.37.4"
|
|
595096
595096
|
};
|
|
595097
595097
|
}
|
|
595098
595098
|
async function performHeapDump(trigger2 = "manual", dumpNumber = 0) {
|
|
@@ -595678,7 +595678,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
595678
595678
|
var call137 = async () => {
|
|
595679
595679
|
return {
|
|
595680
595680
|
type: "text",
|
|
595681
|
-
value: "1.37.
|
|
595681
|
+
value: "1.37.4"
|
|
595682
595682
|
};
|
|
595683
595683
|
}, version2, version_default;
|
|
595684
595684
|
var init_version = __esm(() => {
|
|
@@ -605758,7 +605758,7 @@ function generateHtmlReport(data, insights) {
|
|
|
605758
605758
|
</html>`;
|
|
605759
605759
|
}
|
|
605760
605760
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
605761
|
-
const version3 = typeof MACRO !== "undefined" ? "1.37.
|
|
605761
|
+
const version3 = typeof MACRO !== "undefined" ? "1.37.4" : "unknown";
|
|
605762
605762
|
const remote_hosts_collected = remoteStats?.hosts.filter((h2) => h2.sessionCount > 0).map((h2) => h2.name);
|
|
605763
605763
|
const facets_summary = {
|
|
605764
605764
|
total: facets.size,
|
|
@@ -610038,7 +610038,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
610038
610038
|
init_settings2();
|
|
610039
610039
|
init_slowOperations();
|
|
610040
610040
|
init_uuid();
|
|
610041
|
-
VERSION5 = typeof MACRO !== "undefined" ? "1.37.
|
|
610041
|
+
VERSION5 = typeof MACRO !== "undefined" ? "1.37.4" : "unknown";
|
|
610042
610042
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
610043
610043
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
610044
610044
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -611243,7 +611243,7 @@ var init_filesystem = __esm(() => {
|
|
|
611243
611243
|
});
|
|
611244
611244
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
611245
611245
|
const nonce = randomBytes18(16).toString("hex");
|
|
611246
|
-
return join200(getURTempDir(), "bundled-skills", "1.37.
|
|
611246
|
+
return join200(getURTempDir(), "bundled-skills", "1.37.4", nonce);
|
|
611247
611247
|
});
|
|
611248
611248
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
611249
611249
|
});
|
|
@@ -617532,7 +617532,7 @@ function computeFingerprint(messageText2, version3) {
|
|
|
617532
617532
|
}
|
|
617533
617533
|
function computeFingerprintFromMessages(messages) {
|
|
617534
617534
|
const firstMessageText = extractFirstMessageText(messages);
|
|
617535
|
-
return computeFingerprint(firstMessageText, "1.37.
|
|
617535
|
+
return computeFingerprint(firstMessageText, "1.37.4");
|
|
617536
617536
|
}
|
|
617537
617537
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
617538
617538
|
var init_fingerprint = () => {};
|
|
@@ -619406,7 +619406,7 @@ async function sideQuery(opts) {
|
|
|
619406
619406
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
619407
619407
|
}
|
|
619408
619408
|
const messageText2 = extractFirstUserMessageText(messages);
|
|
619409
|
-
const fingerprint = computeFingerprint(messageText2, "1.37.
|
|
619409
|
+
const fingerprint = computeFingerprint(messageText2, "1.37.4");
|
|
619410
619410
|
const attributionHeader = getAttributionHeader(fingerprint);
|
|
619411
619411
|
const systemBlocks = [
|
|
619412
619412
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -624143,7 +624143,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
624143
624143
|
slash_commands: inputs.commands.filter((c4) => c4.userInvocable !== false).map((c4) => c4.name),
|
|
624144
624144
|
apiKeySource: getURHQApiKeyWithSource().source,
|
|
624145
624145
|
betas: getSdkBetas(),
|
|
624146
|
-
ur_version: "1.37.
|
|
624146
|
+
ur_version: "1.37.4",
|
|
624147
624147
|
output_style: outputStyle2,
|
|
624148
624148
|
agents: inputs.agents.map((agent) => agent.agentType),
|
|
624149
624149
|
skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill2) => skill2.name),
|
|
@@ -638771,7 +638771,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
638771
638771
|
function getSemverPart(version3) {
|
|
638772
638772
|
return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
|
|
638773
638773
|
}
|
|
638774
|
-
function useUpdateNotification(updatedVersion, initialVersion = "1.37.
|
|
638774
|
+
function useUpdateNotification(updatedVersion, initialVersion = "1.37.4") {
|
|
638775
638775
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react226.useState(() => getSemverPart(initialVersion));
|
|
638776
638776
|
if (!updatedVersion) {
|
|
638777
638777
|
return null;
|
|
@@ -638820,7 +638820,7 @@ function AutoUpdater({
|
|
|
638820
638820
|
return;
|
|
638821
638821
|
}
|
|
638822
638822
|
if (false) {}
|
|
638823
|
-
const currentVersion = "1.37.
|
|
638823
|
+
const currentVersion = "1.37.4";
|
|
638824
638824
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
638825
638825
|
let latestVersion = await getLatestVersion(channel);
|
|
638826
638826
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -639049,12 +639049,12 @@ function NativeAutoUpdater({
|
|
|
639049
639049
|
logEvent("tengu_native_auto_updater_start", {});
|
|
639050
639050
|
try {
|
|
639051
639051
|
const maxVersion = await getMaxVersion();
|
|
639052
|
-
if (maxVersion && gt("1.37.
|
|
639052
|
+
if (maxVersion && gt("1.37.4", maxVersion)) {
|
|
639053
639053
|
const msg = await getMaxVersionMessage();
|
|
639054
639054
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
639055
639055
|
}
|
|
639056
639056
|
const result = await installLatest(channel);
|
|
639057
|
-
const currentVersion = "1.37.
|
|
639057
|
+
const currentVersion = "1.37.4";
|
|
639058
639058
|
const latencyMs = Date.now() - startTime;
|
|
639059
639059
|
if (result.lockFailed) {
|
|
639060
639060
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -639191,17 +639191,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
639191
639191
|
const maxVersion = await getMaxVersion();
|
|
639192
639192
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
639193
639193
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
639194
|
-
if (gte("1.37.
|
|
639195
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.37.
|
|
639194
|
+
if (gte("1.37.4", maxVersion)) {
|
|
639195
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.37.4"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
639196
639196
|
setUpdateAvailable(false);
|
|
639197
639197
|
return;
|
|
639198
639198
|
}
|
|
639199
639199
|
latest = maxVersion;
|
|
639200
639200
|
}
|
|
639201
|
-
const hasUpdate = latest && !gte("1.37.
|
|
639201
|
+
const hasUpdate = latest && !gte("1.37.4", latest) && !shouldSkipVersion(latest);
|
|
639202
639202
|
setUpdateAvailable(!!hasUpdate);
|
|
639203
639203
|
if (hasUpdate) {
|
|
639204
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.37.
|
|
639204
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.37.4"} -> ${latest}`);
|
|
639205
639205
|
}
|
|
639206
639206
|
};
|
|
639207
639207
|
$3[0] = t1;
|
|
@@ -639235,7 +639235,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
639235
639235
|
wrap: "truncate",
|
|
639236
639236
|
children: [
|
|
639237
639237
|
"currentVersion: ",
|
|
639238
|
-
"1.37.
|
|
639238
|
+
"1.37.4"
|
|
639239
639239
|
]
|
|
639240
639240
|
}, undefined, true, undefined, this);
|
|
639241
639241
|
$3[3] = verbose;
|
|
@@ -651687,7 +651687,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
651687
651687
|
project_dir: getOriginalCwd(),
|
|
651688
651688
|
added_dirs: addedDirs
|
|
651689
651689
|
},
|
|
651690
|
-
version: "1.37.
|
|
651690
|
+
version: "1.37.4",
|
|
651691
651691
|
output_style: {
|
|
651692
651692
|
name: outputStyleName
|
|
651693
651693
|
},
|
|
@@ -651770,7 +651770,7 @@ function StatusLineInner({
|
|
|
651770
651770
|
const taskValues = Object.values(tasks2);
|
|
651771
651771
|
const taskRunningCount = taskValues.filter((task2) => task2.status === "running" || task2.status === "pending").length;
|
|
651772
651772
|
const defaultStatusLineText = buildDefaultStatusBar({
|
|
651773
|
-
version: "1.37.
|
|
651773
|
+
version: "1.37.4",
|
|
651774
651774
|
providerLabel: providerRuntime.providerLabel,
|
|
651775
651775
|
authMode: providerRuntime.authLabel,
|
|
651776
651776
|
model: providerRuntime.model ?? renderModelName(mainLoopModel),
|
|
@@ -663258,7 +663258,7 @@ async function submitTranscriptShare(messages, trigger2, appearanceId) {
|
|
|
663258
663258
|
} catch {}
|
|
663259
663259
|
const data = {
|
|
663260
663260
|
trigger: trigger2,
|
|
663261
|
-
version: "1.37.
|
|
663261
|
+
version: "1.37.4",
|
|
663262
663262
|
platform: process.platform,
|
|
663263
663263
|
transcript,
|
|
663264
663264
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -675143,7 +675143,7 @@ function WelcomeV2() {
|
|
|
675143
675143
|
dimColor: true,
|
|
675144
675144
|
children: [
|
|
675145
675145
|
"v",
|
|
675146
|
-
"1.37.
|
|
675146
|
+
"1.37.4"
|
|
675147
675147
|
]
|
|
675148
675148
|
}, undefined, true, undefined, this)
|
|
675149
675149
|
]
|
|
@@ -676403,7 +676403,7 @@ function completeOnboarding() {
|
|
|
676403
676403
|
saveGlobalConfig((current) => ({
|
|
676404
676404
|
...current,
|
|
676405
676405
|
hasCompletedOnboarding: true,
|
|
676406
|
-
lastOnboardingVersion: "1.37.
|
|
676406
|
+
lastOnboardingVersion: "1.37.4"
|
|
676407
676407
|
}));
|
|
676408
676408
|
}
|
|
676409
676409
|
function showDialog(root2, renderer) {
|
|
@@ -681440,7 +681440,7 @@ function appendToLog(path24, message) {
|
|
|
681440
681440
|
cwd: getFsImplementation().cwd(),
|
|
681441
681441
|
userType: process.env.USER_TYPE,
|
|
681442
681442
|
sessionId: getSessionId(),
|
|
681443
|
-
version: "1.37.
|
|
681443
|
+
version: "1.37.4"
|
|
681444
681444
|
};
|
|
681445
681445
|
getLogWriter(path24).write(messageWithTimestamp);
|
|
681446
681446
|
}
|
|
@@ -685534,8 +685534,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
685534
685534
|
}
|
|
685535
685535
|
async function checkEnvLessBridgeMinVersion() {
|
|
685536
685536
|
const cfg = await getEnvLessBridgeConfig();
|
|
685537
|
-
if (cfg.min_version && lt("1.37.
|
|
685538
|
-
return `Your version of UR (${"1.37.
|
|
685537
|
+
if (cfg.min_version && lt("1.37.4", cfg.min_version)) {
|
|
685538
|
+
return `Your version of UR (${"1.37.4"}) is too old for Remote Control.
|
|
685539
685539
|
Version ${cfg.min_version} or higher is required. Run \`ur update\` to update.`;
|
|
685540
685540
|
}
|
|
685541
685541
|
return null;
|
|
@@ -686009,7 +686009,7 @@ async function initBridgeCore(params) {
|
|
|
686009
686009
|
const rawApi = createBridgeApiClient({
|
|
686010
686010
|
baseUrl,
|
|
686011
686011
|
getAccessToken,
|
|
686012
|
-
runnerVersion: "1.37.
|
|
686012
|
+
runnerVersion: "1.37.4",
|
|
686013
686013
|
onDebug: logForDebugging,
|
|
686014
686014
|
onAuth401,
|
|
686015
686015
|
getTrustedDeviceToken
|
|
@@ -691691,7 +691691,7 @@ async function startMCPServer(cwd3, debug2, verbose) {
|
|
|
691691
691691
|
setCwd(cwd3);
|
|
691692
691692
|
const server2 = new Server({
|
|
691693
691693
|
name: "ur/tengu",
|
|
691694
|
-
version: "1.37.
|
|
691694
|
+
version: "1.37.4"
|
|
691695
691695
|
}, {
|
|
691696
691696
|
capabilities: {
|
|
691697
691697
|
tools: {}
|
|
@@ -693733,7 +693733,7 @@ async function update() {
|
|
|
693733
693733
|
logEvent("tengu_update_check", {});
|
|
693734
693734
|
const diagnostic = await getDoctorDiagnostic();
|
|
693735
693735
|
const result = await checkUpgradeStatus({
|
|
693736
|
-
currentVersion: "1.37.
|
|
693736
|
+
currentVersion: "1.37.4",
|
|
693737
693737
|
packageName: UR_AGENT_PACKAGE_NAME,
|
|
693738
693738
|
installationType: diagnostic.installationType,
|
|
693739
693739
|
latestVersion: () => getLatestNpmPackageVersion(UR_AGENT_PACKAGE_NAME)
|
|
@@ -694979,7 +694979,7 @@ ${customInstructions}` : customInstructions;
|
|
|
694979
694979
|
}
|
|
694980
694980
|
}
|
|
694981
694981
|
logForDiagnosticsNoPII("info", "started", {
|
|
694982
|
-
version: "1.37.
|
|
694982
|
+
version: "1.37.4",
|
|
694983
694983
|
is_native_binary: isInBundledMode()
|
|
694984
694984
|
});
|
|
694985
694985
|
registerCleanup(async () => {
|
|
@@ -695765,7 +695765,7 @@ Usage: ur --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
695765
695765
|
pendingHookMessages
|
|
695766
695766
|
}, renderAndRun);
|
|
695767
695767
|
}
|
|
695768
|
-
}).version("1.37.
|
|
695768
|
+
}).version("1.37.4 (UR-AGENT)", "-v, --version", "Output the version number");
|
|
695769
695769
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
695770
695770
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
695771
695771
|
if (canUserConfigureAdvisor()) {
|
|
@@ -696680,7 +696680,7 @@ if (false) {}
|
|
|
696680
696680
|
async function main2() {
|
|
696681
696681
|
const args = process.argv.slice(2);
|
|
696682
696682
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
696683
|
-
console.log(`${"1.37.
|
|
696683
|
+
console.log(`${"1.37.4"} (UR-AGENT)`);
|
|
696684
696684
|
return;
|
|
696685
696685
|
}
|
|
696686
696686
|
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.37.
|
|
47
|
+
<p class="eyebrow">Version 1.37.4</p>
|
|
48
48
|
<h1>UR-AGENT Documentation</h1>
|
|
49
49
|
<p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-AGENT.</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.37.
|
|
5
|
+
"version": "1.37.4",
|
|
6
6
|
"publisher": "ur-agent",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED