ur-agent 1.14.0 → 1.14.1
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 +78 -84
- package/docs/VALIDATION.md +1 -1
- package/documentation/index.html +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.14.1
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- Removed the `desktop-app` startup tip pointing to `clau.de/desktop`.
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
- **Version bump.** Updated from 1.14.0 to 1.14.1 across `package.json`, `bunfig.toml`, and bundled CLI.
|
|
10
|
+
|
|
3
11
|
## 1.14.0
|
|
4
12
|
|
|
5
13
|
### Changed
|
package/dist/cli.js
CHANGED
|
@@ -12685,7 +12685,7 @@ function formatAgentTrendReport(report = buildAgentTrendReport()) {
|
|
|
12685
12685
|
function formatA2AAgentCard(options = {}, pretty = true) {
|
|
12686
12686
|
return JSON.stringify(buildA2AAgentCard(options), null, pretty ? 2 : 0);
|
|
12687
12687
|
}
|
|
12688
|
-
var urVersion = "1.14.
|
|
12688
|
+
var urVersion = "1.14.1", coverage, priorityRoadmap;
|
|
12689
12689
|
var init_trends = __esm(() => {
|
|
12690
12690
|
coverage = [
|
|
12691
12691
|
{
|
|
@@ -70395,7 +70395,7 @@ var init_auth = __esm(() => {
|
|
|
70395
70395
|
|
|
70396
70396
|
// src/utils/userAgent.ts
|
|
70397
70397
|
function getURCodeUserAgent() {
|
|
70398
|
-
return `ur/${"1.14.
|
|
70398
|
+
return `ur/${"1.14.1"}`;
|
|
70399
70399
|
}
|
|
70400
70400
|
|
|
70401
70401
|
// src/utils/workloadContext.ts
|
|
@@ -70417,7 +70417,7 @@ function getUserAgent() {
|
|
|
70417
70417
|
const clientApp = process.env.UR_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}` : "";
|
|
70418
70418
|
const workload = getWorkload();
|
|
70419
70419
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
70420
|
-
return `ur-cli/${"1.14.
|
|
70420
|
+
return `ur-cli/${"1.14.1"} (${process.env.USER_TYPE}, ${process.env.UR_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
70421
70421
|
}
|
|
70422
70422
|
function getMCPUserAgent() {
|
|
70423
70423
|
const parts = [];
|
|
@@ -70431,7 +70431,7 @@ function getMCPUserAgent() {
|
|
|
70431
70431
|
parts.push(`client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}`);
|
|
70432
70432
|
}
|
|
70433
70433
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
70434
|
-
return `ur/${"1.14.
|
|
70434
|
+
return `ur/${"1.14.1"}${suffix}`;
|
|
70435
70435
|
}
|
|
70436
70436
|
function getWebFetchUserAgent() {
|
|
70437
70437
|
return `UR-User (${getURCodeUserAgent()})`;
|
|
@@ -70569,7 +70569,7 @@ var init_user = __esm(() => {
|
|
|
70569
70569
|
deviceId,
|
|
70570
70570
|
sessionId: getSessionId(),
|
|
70571
70571
|
email: getEmail(),
|
|
70572
|
-
appVersion: "1.14.
|
|
70572
|
+
appVersion: "1.14.1",
|
|
70573
70573
|
platform: getHostPlatformForAnalytics(),
|
|
70574
70574
|
organizationUuid,
|
|
70575
70575
|
accountUuid,
|
|
@@ -76346,7 +76346,7 @@ var init_metadata = __esm(() => {
|
|
|
76346
76346
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
76347
76347
|
WHITESPACE_REGEX = /\s+/;
|
|
76348
76348
|
getVersionBase = memoize_default(() => {
|
|
76349
|
-
const match = "1.14.
|
|
76349
|
+
const match = "1.14.1".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
76350
76350
|
return match ? match[0] : undefined;
|
|
76351
76351
|
});
|
|
76352
76352
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -76386,7 +76386,7 @@ var init_metadata = __esm(() => {
|
|
|
76386
76386
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
76387
76387
|
isURCodeAction: isEnvTruthy(process.env.UR_CODE_ACTION),
|
|
76388
76388
|
isURAiAuth: isURAISubscriber2(),
|
|
76389
|
-
version: "1.14.
|
|
76389
|
+
version: "1.14.1",
|
|
76390
76390
|
versionBase: getVersionBase(),
|
|
76391
76391
|
buildTime: "",
|
|
76392
76392
|
deploymentEnvironment: env3.detectDeploymentEnvironment(),
|
|
@@ -77056,7 +77056,7 @@ function initialize1PEventLogging() {
|
|
|
77056
77056
|
const platform2 = getPlatform();
|
|
77057
77057
|
const attributes = {
|
|
77058
77058
|
[import_semantic_conventions4.ATTR_SERVICE_NAME]: "ur",
|
|
77059
|
-
[import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.14.
|
|
77059
|
+
[import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.14.1"
|
|
77060
77060
|
};
|
|
77061
77061
|
if (platform2 === "wsl") {
|
|
77062
77062
|
const wslVersion = getWslVersion();
|
|
@@ -77083,7 +77083,7 @@ function initialize1PEventLogging() {
|
|
|
77083
77083
|
})
|
|
77084
77084
|
]
|
|
77085
77085
|
});
|
|
77086
|
-
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.14.
|
|
77086
|
+
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.14.1");
|
|
77087
77087
|
}
|
|
77088
77088
|
async function reinitialize1PEventLoggingIfConfigChanged() {
|
|
77089
77089
|
if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
|
|
@@ -78947,7 +78947,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
78947
78947
|
if (!isAttributionHeaderEnabled()) {
|
|
78948
78948
|
return "";
|
|
78949
78949
|
}
|
|
78950
|
-
const version2 = `${"1.14.
|
|
78950
|
+
const version2 = `${"1.14.1"}.${fingerprint}`;
|
|
78951
78951
|
const entrypoint = process.env.UR_CODE_ENTRYPOINT ?? "unknown";
|
|
78952
78952
|
const cch = "";
|
|
78953
78953
|
const workload = getWorkload();
|
|
@@ -185576,7 +185576,7 @@ function getTelemetryAttributes() {
|
|
|
185576
185576
|
attributes["session.id"] = sessionId;
|
|
185577
185577
|
}
|
|
185578
185578
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
185579
|
-
attributes["app.version"] = "1.14.
|
|
185579
|
+
attributes["app.version"] = "1.14.1";
|
|
185580
185580
|
}
|
|
185581
185581
|
const oauthAccount = getOauthAccountInfo();
|
|
185582
185582
|
if (oauthAccount) {
|
|
@@ -221365,7 +221365,7 @@ function getInstallationEnv() {
|
|
|
221365
221365
|
return;
|
|
221366
221366
|
}
|
|
221367
221367
|
function getURCodeVersion() {
|
|
221368
|
-
return "1.14.
|
|
221368
|
+
return "1.14.1";
|
|
221369
221369
|
}
|
|
221370
221370
|
async function getInstalledVSCodeExtensionVersion(command) {
|
|
221371
221371
|
const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
|
|
@@ -224093,7 +224093,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
224093
224093
|
const client2 = new Client({
|
|
224094
224094
|
name: "ur",
|
|
224095
224095
|
title: "UR",
|
|
224096
|
-
version: "1.14.
|
|
224096
|
+
version: "1.14.1",
|
|
224097
224097
|
description: "URHQ's agentic coding tool",
|
|
224098
224098
|
websiteUrl: PRODUCT_URL
|
|
224099
224099
|
}, {
|
|
@@ -224447,7 +224447,7 @@ var init_client5 = __esm(() => {
|
|
|
224447
224447
|
const client2 = new Client({
|
|
224448
224448
|
name: "ur",
|
|
224449
224449
|
title: "UR",
|
|
224450
|
-
version: "1.14.
|
|
224450
|
+
version: "1.14.1",
|
|
224451
224451
|
description: "URHQ's agentic coding tool",
|
|
224452
224452
|
websiteUrl: PRODUCT_URL
|
|
224453
224453
|
}, {
|
|
@@ -234260,9 +234260,9 @@ async function assertMinVersion() {
|
|
|
234260
234260
|
if (false) {}
|
|
234261
234261
|
try {
|
|
234262
234262
|
const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
|
|
234263
|
-
if (versionConfig.minVersion && lt("1.14.
|
|
234263
|
+
if (versionConfig.minVersion && lt("1.14.1", versionConfig.minVersion)) {
|
|
234264
234264
|
console.error(`
|
|
234265
|
-
It looks like your version of UR (${"1.14.
|
|
234265
|
+
It looks like your version of UR (${"1.14.1"}) needs an update.
|
|
234266
234266
|
A newer version (${versionConfig.minVersion} or higher) is required to continue.
|
|
234267
234267
|
|
|
234268
234268
|
To update, please run:
|
|
@@ -234478,7 +234478,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
234478
234478
|
logError2(new AutoUpdaterError("Another process is currently installing an update"));
|
|
234479
234479
|
logEvent("tengu_auto_updater_lock_contention", {
|
|
234480
234480
|
pid: process.pid,
|
|
234481
|
-
currentVersion: "1.14.
|
|
234481
|
+
currentVersion: "1.14.1"
|
|
234482
234482
|
});
|
|
234483
234483
|
return "in_progress";
|
|
234484
234484
|
}
|
|
@@ -234487,7 +234487,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
234487
234487
|
if (!env3.isRunningWithBun() && env3.isNpmFromWindowsPath()) {
|
|
234488
234488
|
logError2(new Error("Windows NPM detected in WSL environment"));
|
|
234489
234489
|
logEvent("tengu_auto_updater_windows_npm_in_wsl", {
|
|
234490
|
-
currentVersion: "1.14.
|
|
234490
|
+
currentVersion: "1.14.1"
|
|
234491
234491
|
});
|
|
234492
234492
|
console.error(`
|
|
234493
234493
|
Error: Windows NPM detected in WSL
|
|
@@ -235022,7 +235022,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
235022
235022
|
}
|
|
235023
235023
|
async function getDoctorDiagnostic() {
|
|
235024
235024
|
const installationType = await getCurrentInstallationType();
|
|
235025
|
-
const version2 = typeof MACRO !== "undefined" ? "1.14.
|
|
235025
|
+
const version2 = typeof MACRO !== "undefined" ? "1.14.1" : "unknown";
|
|
235026
235026
|
const installationPath = await getInstallationPath();
|
|
235027
235027
|
const invokedBinary = getInvokedBinary();
|
|
235028
235028
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -235957,8 +235957,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
235957
235957
|
const maxVersion = await getMaxVersion();
|
|
235958
235958
|
if (maxVersion && gt(version2, maxVersion)) {
|
|
235959
235959
|
logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`);
|
|
235960
|
-
if (gte("1.14.
|
|
235961
|
-
logForDebugging(`Native installer: current version ${"1.14.
|
|
235960
|
+
if (gte("1.14.1", maxVersion)) {
|
|
235961
|
+
logForDebugging(`Native installer: current version ${"1.14.1"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
235962
235962
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
235963
235963
|
latency_ms: Date.now() - startTime,
|
|
235964
235964
|
max_version: maxVersion,
|
|
@@ -235969,7 +235969,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
235969
235969
|
version2 = maxVersion;
|
|
235970
235970
|
}
|
|
235971
235971
|
}
|
|
235972
|
-
if (!forceReinstall && version2 === "1.14.
|
|
235972
|
+
if (!forceReinstall && version2 === "1.14.1" && await versionIsAvailable(version2) && await isPossibleURBinary(executablePath)) {
|
|
235973
235973
|
logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
|
|
235974
235974
|
logEvent("tengu_native_update_complete", {
|
|
235975
235975
|
latency_ms: Date.now() - startTime,
|
|
@@ -330849,7 +330849,7 @@ function Feedback({
|
|
|
330849
330849
|
platform: env3.platform,
|
|
330850
330850
|
gitRepo: envInfo.isGit,
|
|
330851
330851
|
terminal: env3.terminal,
|
|
330852
|
-
version: "1.14.
|
|
330852
|
+
version: "1.14.1",
|
|
330853
330853
|
transcript: normalizeMessagesForAPI(messages),
|
|
330854
330854
|
errors: sanitizedErrors,
|
|
330855
330855
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -331041,7 +331041,7 @@ function Feedback({
|
|
|
331041
331041
|
", ",
|
|
331042
331042
|
env3.terminal,
|
|
331043
331043
|
", v",
|
|
331044
|
-
"1.14.
|
|
331044
|
+
"1.14.1"
|
|
331045
331045
|
]
|
|
331046
331046
|
}, undefined, true, undefined, this)
|
|
331047
331047
|
]
|
|
@@ -331147,7 +331147,7 @@ ${sanitizedDescription}
|
|
|
331147
331147
|
` + `**Environment Info**
|
|
331148
331148
|
` + `- Platform: ${env3.platform}
|
|
331149
331149
|
` + `- Terminal: ${env3.terminal}
|
|
331150
|
-
` + `- Version: ${"1.14.
|
|
331150
|
+
` + `- Version: ${"1.14.1"}
|
|
331151
331151
|
` + `- Feedback ID: ${feedbackId}
|
|
331152
331152
|
` + `
|
|
331153
331153
|
**Errors**
|
|
@@ -334257,7 +334257,7 @@ function buildPrimarySection() {
|
|
|
334257
334257
|
}, undefined, false, undefined, this);
|
|
334258
334258
|
return [{
|
|
334259
334259
|
label: "Version",
|
|
334260
|
-
value: "1.14.
|
|
334260
|
+
value: "1.14.1"
|
|
334261
334261
|
}, {
|
|
334262
334262
|
label: "Session name",
|
|
334263
334263
|
value: nameValue
|
|
@@ -337535,7 +337535,7 @@ function Config({
|
|
|
337535
337535
|
}
|
|
337536
337536
|
}, undefined, false, undefined, this)
|
|
337537
337537
|
}, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime177.jsxDEV(ChannelDowngradeDialog, {
|
|
337538
|
-
currentVersion: "1.14.
|
|
337538
|
+
currentVersion: "1.14.1",
|
|
337539
337539
|
onChoice: (choice) => {
|
|
337540
337540
|
setShowSubmenu(null);
|
|
337541
337541
|
setTabsHidden(false);
|
|
@@ -337547,7 +337547,7 @@ function Config({
|
|
|
337547
337547
|
autoUpdatesChannel: "stable"
|
|
337548
337548
|
};
|
|
337549
337549
|
if (choice === "stay") {
|
|
337550
|
-
newSettings.minimumVersion = "1.14.
|
|
337550
|
+
newSettings.minimumVersion = "1.14.1";
|
|
337551
337551
|
}
|
|
337552
337552
|
updateSettingsForSource("userSettings", newSettings);
|
|
337553
337553
|
setSettingsData((prev_27) => ({
|
|
@@ -345617,7 +345617,7 @@ function HelpV2(t0) {
|
|
|
345617
345617
|
let t6;
|
|
345618
345618
|
if ($3[31] !== tabs) {
|
|
345619
345619
|
t6 = /* @__PURE__ */ jsx_dev_runtime204.jsxDEV(Tabs, {
|
|
345620
|
-
title: `UR v${"1.14.
|
|
345620
|
+
title: `UR v${"1.14.1"}`,
|
|
345621
345621
|
color: "professionalBlue",
|
|
345622
345622
|
defaultTab: "general",
|
|
345623
345623
|
children: tabs
|
|
@@ -365220,7 +365220,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
365220
365220
|
return [];
|
|
365221
365221
|
}
|
|
365222
365222
|
}
|
|
365223
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.14.
|
|
365223
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.14.1") {
|
|
365224
365224
|
if (process.env.USER_TYPE === "ant") {
|
|
365225
365225
|
const changelog = "";
|
|
365226
365226
|
if (changelog) {
|
|
@@ -365247,7 +365247,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.14.0")
|
|
|
365247
365247
|
releaseNotes
|
|
365248
365248
|
};
|
|
365249
365249
|
}
|
|
365250
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.14.
|
|
365250
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.14.1") {
|
|
365251
365251
|
if (process.env.USER_TYPE === "ant") {
|
|
365252
365252
|
const changelog = "";
|
|
365253
365253
|
if (changelog) {
|
|
@@ -366417,7 +366417,7 @@ function getRecentActivitySync() {
|
|
|
366417
366417
|
return cachedActivity;
|
|
366418
366418
|
}
|
|
366419
366419
|
function getLogoDisplayData() {
|
|
366420
|
-
const version2 = process.env.DEMO_VERSION ?? "1.14.
|
|
366420
|
+
const version2 = process.env.DEMO_VERSION ?? "1.14.1";
|
|
366421
366421
|
const serverUrl = getDirectConnectServerUrl();
|
|
366422
366422
|
const displayPath = process.env.DEMO_VERSION ? "/code/ur" : getDisplayPath(getCwd());
|
|
366423
366423
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -367206,7 +367206,7 @@ function LogoV2() {
|
|
|
367206
367206
|
if ($3[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
367207
367207
|
t2 = () => {
|
|
367208
367208
|
const currentConfig = getGlobalConfig();
|
|
367209
|
-
if (currentConfig.lastReleaseNotesSeen === "1.14.
|
|
367209
|
+
if (currentConfig.lastReleaseNotesSeen === "1.14.1") {
|
|
367210
367210
|
return;
|
|
367211
367211
|
}
|
|
367212
367212
|
saveGlobalConfig(_temp326);
|
|
@@ -367891,12 +367891,12 @@ function LogoV2() {
|
|
|
367891
367891
|
return t41;
|
|
367892
367892
|
}
|
|
367893
367893
|
function _temp326(current) {
|
|
367894
|
-
if (current.lastReleaseNotesSeen === "1.14.
|
|
367894
|
+
if (current.lastReleaseNotesSeen === "1.14.1") {
|
|
367895
367895
|
return current;
|
|
367896
367896
|
}
|
|
367897
367897
|
return {
|
|
367898
367898
|
...current,
|
|
367899
|
-
lastReleaseNotesSeen: "1.14.
|
|
367899
|
+
lastReleaseNotesSeen: "1.14.1"
|
|
367900
367900
|
};
|
|
367901
367901
|
}
|
|
367902
367902
|
function _temp243(s_0) {
|
|
@@ -407599,7 +407599,7 @@ async function captureMemoryDiagnostics(trigger2, dumpNumber = 0) {
|
|
|
407599
407599
|
smapsRollup,
|
|
407600
407600
|
platform: process.platform,
|
|
407601
407601
|
nodeVersion: process.version,
|
|
407602
|
-
ccVersion: "1.14.
|
|
407602
|
+
ccVersion: "1.14.1"
|
|
407603
407603
|
};
|
|
407604
407604
|
}
|
|
407605
407605
|
async function performHeapDump(trigger2 = "manual", dumpNumber = 0) {
|
|
@@ -408185,7 +408185,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
408185
408185
|
var call124 = async () => {
|
|
408186
408186
|
return {
|
|
408187
408187
|
type: "text",
|
|
408188
|
-
value: "1.14.
|
|
408188
|
+
value: "1.14.1"
|
|
408189
408189
|
};
|
|
408190
408190
|
}, version2, version_default;
|
|
408191
408191
|
var init_version = __esm(() => {
|
|
@@ -417240,7 +417240,7 @@ function generateHtmlReport(data, insights) {
|
|
|
417240
417240
|
</html>`;
|
|
417241
417241
|
}
|
|
417242
417242
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
417243
|
-
const version3 = typeof MACRO !== "undefined" ? "1.14.
|
|
417243
|
+
const version3 = typeof MACRO !== "undefined" ? "1.14.1" : "unknown";
|
|
417244
417244
|
const remote_hosts_collected = remoteStats?.hosts.filter((h2) => h2.sessionCount > 0).map((h2) => h2.name);
|
|
417245
417245
|
const facets_summary = {
|
|
417246
417246
|
total: facets.size,
|
|
@@ -421489,7 +421489,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
421489
421489
|
init_settings2();
|
|
421490
421490
|
init_slowOperations();
|
|
421491
421491
|
init_uuid();
|
|
421492
|
-
VERSION5 = typeof MACRO !== "undefined" ? "1.14.
|
|
421492
|
+
VERSION5 = typeof MACRO !== "undefined" ? "1.14.1" : "unknown";
|
|
421493
421493
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
421494
421494
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
421495
421495
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -422694,7 +422694,7 @@ var init_filesystem = __esm(() => {
|
|
|
422694
422694
|
});
|
|
422695
422695
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
422696
422696
|
const nonce = randomBytes18(16).toString("hex");
|
|
422697
|
-
return join174(getURTempDir(), "bundled-skills", "1.14.
|
|
422697
|
+
return join174(getURTempDir(), "bundled-skills", "1.14.1", nonce);
|
|
422698
422698
|
});
|
|
422699
422699
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
422700
422700
|
});
|
|
@@ -428725,7 +428725,7 @@ function computeFingerprint(messageText, version3) {
|
|
|
428725
428725
|
}
|
|
428726
428726
|
function computeFingerprintFromMessages(messages) {
|
|
428727
428727
|
const firstMessageText = extractFirstMessageText(messages);
|
|
428728
|
-
return computeFingerprint(firstMessageText, "1.14.
|
|
428728
|
+
return computeFingerprint(firstMessageText, "1.14.1");
|
|
428729
428729
|
}
|
|
428730
428730
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
428731
428731
|
var init_fingerprint = () => {};
|
|
@@ -430591,7 +430591,7 @@ async function sideQuery(opts) {
|
|
|
430591
430591
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
430592
430592
|
}
|
|
430593
430593
|
const messageText = extractFirstUserMessageText(messages);
|
|
430594
|
-
const fingerprint = computeFingerprint(messageText, "1.14.
|
|
430594
|
+
const fingerprint = computeFingerprint(messageText, "1.14.1");
|
|
430595
430595
|
const attributionHeader = getAttributionHeader(fingerprint);
|
|
430596
430596
|
const systemBlocks = [
|
|
430597
430597
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -435328,7 +435328,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
435328
435328
|
slash_commands: inputs.commands.filter((c4) => c4.userInvocable !== false).map((c4) => c4.name),
|
|
435329
435329
|
apiKeySource: getURHQApiKeyWithSource().source,
|
|
435330
435330
|
betas: getSdkBetas(),
|
|
435331
|
-
ur_version: "1.14.
|
|
435331
|
+
ur_version: "1.14.1",
|
|
435332
435332
|
output_style: outputStyle2,
|
|
435333
435333
|
agents: inputs.agents.map((agent) => agent.agentType),
|
|
435334
435334
|
skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
|
|
@@ -449956,7 +449956,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
449956
449956
|
function getSemverPart(version3) {
|
|
449957
449957
|
return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
|
|
449958
449958
|
}
|
|
449959
|
-
function useUpdateNotification(updatedVersion, initialVersion = "1.14.
|
|
449959
|
+
function useUpdateNotification(updatedVersion, initialVersion = "1.14.1") {
|
|
449960
449960
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react224.useState(() => getSemverPart(initialVersion));
|
|
449961
449961
|
if (!updatedVersion) {
|
|
449962
449962
|
return null;
|
|
@@ -450005,7 +450005,7 @@ function AutoUpdater({
|
|
|
450005
450005
|
return;
|
|
450006
450006
|
}
|
|
450007
450007
|
if (false) {}
|
|
450008
|
-
const currentVersion = "1.14.
|
|
450008
|
+
const currentVersion = "1.14.1";
|
|
450009
450009
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
450010
450010
|
let latestVersion = await getLatestVersion(channel);
|
|
450011
450011
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -450234,12 +450234,12 @@ function NativeAutoUpdater({
|
|
|
450234
450234
|
logEvent("tengu_native_auto_updater_start", {});
|
|
450235
450235
|
try {
|
|
450236
450236
|
const maxVersion = await getMaxVersion();
|
|
450237
|
-
if (maxVersion && gt("1.14.
|
|
450237
|
+
if (maxVersion && gt("1.14.1", maxVersion)) {
|
|
450238
450238
|
const msg = await getMaxVersionMessage();
|
|
450239
450239
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
450240
450240
|
}
|
|
450241
450241
|
const result = await installLatest(channel);
|
|
450242
|
-
const currentVersion = "1.14.
|
|
450242
|
+
const currentVersion = "1.14.1";
|
|
450243
450243
|
const latencyMs = Date.now() - startTime;
|
|
450244
450244
|
if (result.lockFailed) {
|
|
450245
450245
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -450376,17 +450376,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
450376
450376
|
const maxVersion = await getMaxVersion();
|
|
450377
450377
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
450378
450378
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
450379
|
-
if (gte("1.14.
|
|
450380
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.14.
|
|
450379
|
+
if (gte("1.14.1", maxVersion)) {
|
|
450380
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.14.1"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
450381
450381
|
setUpdateAvailable(false);
|
|
450382
450382
|
return;
|
|
450383
450383
|
}
|
|
450384
450384
|
latest = maxVersion;
|
|
450385
450385
|
}
|
|
450386
|
-
const hasUpdate = latest && !gte("1.14.
|
|
450386
|
+
const hasUpdate = latest && !gte("1.14.1", latest) && !shouldSkipVersion(latest);
|
|
450387
450387
|
setUpdateAvailable(!!hasUpdate);
|
|
450388
450388
|
if (hasUpdate) {
|
|
450389
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.14.
|
|
450389
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.14.1"} -> ${latest}`);
|
|
450390
450390
|
}
|
|
450391
450391
|
};
|
|
450392
450392
|
$3[0] = t1;
|
|
@@ -450420,7 +450420,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
450420
450420
|
wrap: "truncate",
|
|
450421
450421
|
children: [
|
|
450422
450422
|
"currentVersion: ",
|
|
450423
|
-
"1.14.
|
|
450423
|
+
"1.14.1"
|
|
450424
450424
|
]
|
|
450425
450425
|
}, undefined, true, undefined, this);
|
|
450426
450426
|
$3[3] = verbose;
|
|
@@ -462782,7 +462782,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
462782
462782
|
project_dir: getOriginalCwd(),
|
|
462783
462783
|
added_dirs: addedDirs
|
|
462784
462784
|
},
|
|
462785
|
-
version: "1.14.
|
|
462785
|
+
version: "1.14.1",
|
|
462786
462786
|
output_style: {
|
|
462787
462787
|
name: outputStyleName
|
|
462788
462788
|
},
|
|
@@ -474278,7 +474278,7 @@ async function submitTranscriptShare(messages, trigger2, appearanceId) {
|
|
|
474278
474278
|
} catch {}
|
|
474279
474279
|
const data = {
|
|
474280
474280
|
trigger: trigger2,
|
|
474281
|
-
version: "1.14.
|
|
474281
|
+
version: "1.14.1",
|
|
474282
474282
|
platform: process.platform,
|
|
474283
474283
|
transcript,
|
|
474284
474284
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -476512,12 +476512,6 @@ var init_tipRegistry = __esm(() => {
|
|
|
476512
476512
|
return config3.numStartups > 5;
|
|
476513
476513
|
}
|
|
476514
476514
|
},
|
|
476515
|
-
{
|
|
476516
|
-
id: "desktop-app",
|
|
476517
|
-
content: async () => "Run UR locally or remotely using the UR desktop app: clau.de/desktop",
|
|
476518
|
-
cooldownSessions: 15,
|
|
476519
|
-
isRelevant: async () => getPlatform() !== "linux"
|
|
476520
|
-
},
|
|
476521
476515
|
{
|
|
476522
476516
|
id: "desktop-shortcut",
|
|
476523
476517
|
content: async (ctx) => {
|
|
@@ -486193,7 +486187,7 @@ function WelcomeV2() {
|
|
|
486193
486187
|
dimColor: true,
|
|
486194
486188
|
children: [
|
|
486195
486189
|
"v",
|
|
486196
|
-
"1.14.
|
|
486190
|
+
"1.14.1"
|
|
486197
486191
|
]
|
|
486198
486192
|
}, undefined, true, undefined, this)
|
|
486199
486193
|
]
|
|
@@ -487453,7 +487447,7 @@ function completeOnboarding() {
|
|
|
487453
487447
|
saveGlobalConfig((current) => ({
|
|
487454
487448
|
...current,
|
|
487455
487449
|
hasCompletedOnboarding: true,
|
|
487456
|
-
lastOnboardingVersion: "1.14.
|
|
487450
|
+
lastOnboardingVersion: "1.14.1"
|
|
487457
487451
|
}));
|
|
487458
487452
|
}
|
|
487459
487453
|
function showDialog(root2, renderer) {
|
|
@@ -491913,7 +491907,7 @@ function appendToLog(path24, message) {
|
|
|
491913
491907
|
cwd: getFsImplementation().cwd(),
|
|
491914
491908
|
userType: process.env.USER_TYPE,
|
|
491915
491909
|
sessionId: getSessionId(),
|
|
491916
|
-
version: "1.14.
|
|
491910
|
+
version: "1.14.1"
|
|
491917
491911
|
};
|
|
491918
491912
|
getLogWriter(path24).write(messageWithTimestamp);
|
|
491919
491913
|
}
|
|
@@ -495939,8 +495933,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
495939
495933
|
}
|
|
495940
495934
|
async function checkEnvLessBridgeMinVersion() {
|
|
495941
495935
|
const cfg = await getEnvLessBridgeConfig();
|
|
495942
|
-
if (cfg.min_version && lt("1.14.
|
|
495943
|
-
return `Your version of UR (${"1.14.
|
|
495936
|
+
if (cfg.min_version && lt("1.14.1", cfg.min_version)) {
|
|
495937
|
+
return `Your version of UR (${"1.14.1"}) is too old for Remote Control.
|
|
495944
495938
|
Version ${cfg.min_version} or higher is required. Run \`ur update\` to update.`;
|
|
495945
495939
|
}
|
|
495946
495940
|
return null;
|
|
@@ -496414,7 +496408,7 @@ async function initBridgeCore(params) {
|
|
|
496414
496408
|
const rawApi = createBridgeApiClient({
|
|
496415
496409
|
baseUrl,
|
|
496416
496410
|
getAccessToken,
|
|
496417
|
-
runnerVersion: "1.14.
|
|
496411
|
+
runnerVersion: "1.14.1",
|
|
496418
496412
|
onDebug: logForDebugging,
|
|
496419
496413
|
onAuth401,
|
|
496420
496414
|
getTrustedDeviceToken
|
|
@@ -502079,7 +502073,7 @@ async function startMCPServer(cwd3, debug2, verbose) {
|
|
|
502079
502073
|
setCwd(cwd3);
|
|
502080
502074
|
const server = new Server({
|
|
502081
502075
|
name: "ur/tengu",
|
|
502082
|
-
version: "1.14.
|
|
502076
|
+
version: "1.14.1"
|
|
502083
502077
|
}, {
|
|
502084
502078
|
capabilities: {
|
|
502085
502079
|
tools: {}
|
|
@@ -503690,7 +503684,7 @@ __export(exports_update, {
|
|
|
503690
503684
|
});
|
|
503691
503685
|
async function update() {
|
|
503692
503686
|
logEvent("tengu_update_check", {});
|
|
503693
|
-
writeToStdout(`Current version: ${"1.14.
|
|
503687
|
+
writeToStdout(`Current version: ${"1.14.1"}
|
|
503694
503688
|
`);
|
|
503695
503689
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
503696
503690
|
writeToStdout(`Checking for updates to ${channel} version...
|
|
@@ -503765,8 +503759,8 @@ async function update() {
|
|
|
503765
503759
|
writeToStdout(`UR is managed by Homebrew.
|
|
503766
503760
|
`);
|
|
503767
503761
|
const latest = await getLatestVersion(channel);
|
|
503768
|
-
if (latest && !gte("1.14.
|
|
503769
|
-
writeToStdout(`${formatUpdateAvailableMessage("1.14.
|
|
503762
|
+
if (latest && !gte("1.14.1", latest)) {
|
|
503763
|
+
writeToStdout(`${formatUpdateAvailableMessage("1.14.1", latest)}
|
|
503770
503764
|
`);
|
|
503771
503765
|
writeToStdout(`
|
|
503772
503766
|
`);
|
|
@@ -503782,8 +503776,8 @@ async function update() {
|
|
|
503782
503776
|
writeToStdout(`UR is managed by winget.
|
|
503783
503777
|
`);
|
|
503784
503778
|
const latest = await getLatestVersion(channel);
|
|
503785
|
-
if (latest && !gte("1.14.
|
|
503786
|
-
writeToStdout(`${formatUpdateAvailableMessage("1.14.
|
|
503779
|
+
if (latest && !gte("1.14.1", latest)) {
|
|
503780
|
+
writeToStdout(`${formatUpdateAvailableMessage("1.14.1", latest)}
|
|
503787
503781
|
`);
|
|
503788
503782
|
writeToStdout(`
|
|
503789
503783
|
`);
|
|
@@ -503799,8 +503793,8 @@ async function update() {
|
|
|
503799
503793
|
writeToStdout(`UR is managed by apk.
|
|
503800
503794
|
`);
|
|
503801
503795
|
const latest = await getLatestVersion(channel);
|
|
503802
|
-
if (latest && !gte("1.14.
|
|
503803
|
-
writeToStdout(`${formatUpdateAvailableMessage("1.14.
|
|
503796
|
+
if (latest && !gte("1.14.1", latest)) {
|
|
503797
|
+
writeToStdout(`${formatUpdateAvailableMessage("1.14.1", latest)}
|
|
503804
503798
|
`);
|
|
503805
503799
|
writeToStdout(`
|
|
503806
503800
|
`);
|
|
@@ -503865,11 +503859,11 @@ async function update() {
|
|
|
503865
503859
|
`);
|
|
503866
503860
|
await gracefulShutdown(1);
|
|
503867
503861
|
}
|
|
503868
|
-
if (result.latestVersion === "1.14.
|
|
503869
|
-
writeToStdout(source_default.green(`UR is up to date (${"1.14.
|
|
503862
|
+
if (result.latestVersion === "1.14.1") {
|
|
503863
|
+
writeToStdout(source_default.green(`UR is up to date (${"1.14.1"})`) + `
|
|
503870
503864
|
`);
|
|
503871
503865
|
} else {
|
|
503872
|
-
writeToStdout(source_default.green(`Successfully updated from ${"1.14.
|
|
503866
|
+
writeToStdout(source_default.green(`Successfully updated from ${"1.14.1"} to version ${result.latestVersion}`) + `
|
|
503873
503867
|
`);
|
|
503874
503868
|
await regenerateCompletionCache();
|
|
503875
503869
|
}
|
|
@@ -503929,12 +503923,12 @@ async function update() {
|
|
|
503929
503923
|
`);
|
|
503930
503924
|
await gracefulShutdown(1);
|
|
503931
503925
|
}
|
|
503932
|
-
if (latestVersion === "1.14.
|
|
503933
|
-
writeToStdout(source_default.green(`UR is up to date (${"1.14.
|
|
503926
|
+
if (latestVersion === "1.14.1") {
|
|
503927
|
+
writeToStdout(source_default.green(`UR is up to date (${"1.14.1"})`) + `
|
|
503934
503928
|
`);
|
|
503935
503929
|
await gracefulShutdown(0);
|
|
503936
503930
|
}
|
|
503937
|
-
writeToStdout(`${formatUpdateAvailableMessage("1.14.
|
|
503931
|
+
writeToStdout(`${formatUpdateAvailableMessage("1.14.1", latestVersion)}
|
|
503938
503932
|
`);
|
|
503939
503933
|
writeToStdout(`Installing update...
|
|
503940
503934
|
`);
|
|
@@ -503979,7 +503973,7 @@ async function update() {
|
|
|
503979
503973
|
logForDebugging(`update: Installation status: ${status2}`);
|
|
503980
503974
|
switch (status2) {
|
|
503981
503975
|
case "success":
|
|
503982
|
-
writeToStdout(source_default.green(`Successfully updated from ${"1.14.
|
|
503976
|
+
writeToStdout(source_default.green(`Successfully updated from ${"1.14.1"} to version ${latestVersion}`) + `
|
|
503983
503977
|
`);
|
|
503984
503978
|
await regenerateCompletionCache();
|
|
503985
503979
|
break;
|
|
@@ -505230,7 +505224,7 @@ ${customInstructions}` : customInstructions;
|
|
|
505230
505224
|
}
|
|
505231
505225
|
}
|
|
505232
505226
|
logForDiagnosticsNoPII("info", "started", {
|
|
505233
|
-
version: "1.14.
|
|
505227
|
+
version: "1.14.1",
|
|
505234
505228
|
is_native_binary: isInBundledMode()
|
|
505235
505229
|
});
|
|
505236
505230
|
registerCleanup(async () => {
|
|
@@ -506014,7 +506008,7 @@ Usage: ur --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
506014
506008
|
pendingHookMessages
|
|
506015
506009
|
}, renderAndRun);
|
|
506016
506010
|
}
|
|
506017
|
-
}).version("1.14.
|
|
506011
|
+
}).version("1.14.1 (Ur)", "-v, --version", "Output the version number");
|
|
506018
506012
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
506019
506013
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
506020
506014
|
if (canUserConfigureAdvisor()) {
|
|
@@ -506724,7 +506718,7 @@ if (false) {}
|
|
|
506724
506718
|
async function main2() {
|
|
506725
506719
|
const args = process.argv.slice(2);
|
|
506726
506720
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
506727
|
-
console.log(`${"1.14.
|
|
506721
|
+
console.log(`${"1.14.1"} (Ur)`);
|
|
506728
506722
|
return;
|
|
506729
506723
|
}
|
|
506730
506724
|
if (args[0] === "a2a" && args[1] === "serve" && !args.includes("--help") && !args.includes("-h")) {
|
package/docs/VALIDATION.md
CHANGED
package/documentation/index.html
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
<main id="content" class="content">
|
|
44
44
|
<header class="topbar">
|
|
45
45
|
<div>
|
|
46
|
-
<p class="eyebrow">Version 1.14.
|
|
46
|
+
<p class="eyebrow">Version 1.14.1</p>
|
|
47
47
|
<h1>UR Agent Documentation</h1>
|
|
48
48
|
<p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR Agent.</p>
|
|
49
49
|
</div>
|