ur-agent 1.65.7 → 1.65.8
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 +7 -0
- package/dist/cli.js +107 -85
- package/docs/VALIDATION.md +1 -1
- package/documentation/index.html +1 -1
- package/extensions/jetbrains-ur/build.gradle.kts +1 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +1 -1
- package/technical/README.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.65.8
|
|
4
|
+
|
|
5
|
+
- Fixed provider API-key entry in `/model`: the masked input now uses the
|
|
6
|
+
available terminal width, explicit cursor/focus state, and a one-line secret
|
|
7
|
+
viewport instead of rendering one masked character per row. Narrow and
|
|
8
|
+
invalid resize states retain a safe minimum width.
|
|
9
|
+
|
|
3
10
|
## 1.65.7
|
|
4
11
|
|
|
5
12
|
- Audited all 14 technical chapters against the shipped source and generated
|
package/dist/cli.js
CHANGED
|
@@ -75597,7 +75597,7 @@ var init_auth = __esm(() => {
|
|
|
75597
75597
|
|
|
75598
75598
|
// src/utils/userAgent.ts
|
|
75599
75599
|
function getURCodeUserAgent() {
|
|
75600
|
-
return `ur/${"1.65.
|
|
75600
|
+
return `ur/${"1.65.8"}`;
|
|
75601
75601
|
}
|
|
75602
75602
|
|
|
75603
75603
|
// src/utils/workloadContext.ts
|
|
@@ -75619,7 +75619,7 @@ function getUserAgent() {
|
|
|
75619
75619
|
const clientApp = process.env.UR_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}` : "";
|
|
75620
75620
|
const workload = getWorkload();
|
|
75621
75621
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
75622
|
-
return `ur-cli/${"1.65.
|
|
75622
|
+
return `ur-cli/${"1.65.8"} (${process.env.USER_TYPE}, ${process.env.UR_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
75623
75623
|
}
|
|
75624
75624
|
function getMCPUserAgent() {
|
|
75625
75625
|
const parts = [];
|
|
@@ -75633,7 +75633,7 @@ function getMCPUserAgent() {
|
|
|
75633
75633
|
parts.push(`client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}`);
|
|
75634
75634
|
}
|
|
75635
75635
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
75636
|
-
return `ur/${"1.65.
|
|
75636
|
+
return `ur/${"1.65.8"}${suffix}`;
|
|
75637
75637
|
}
|
|
75638
75638
|
function getWebFetchUserAgent() {
|
|
75639
75639
|
return `UR-User (${getURCodeUserAgent()})`;
|
|
@@ -75771,7 +75771,7 @@ var init_user = __esm(() => {
|
|
|
75771
75771
|
deviceId,
|
|
75772
75772
|
sessionId: getSessionId(),
|
|
75773
75773
|
email: getEmail(),
|
|
75774
|
-
appVersion: "1.65.
|
|
75774
|
+
appVersion: "1.65.8",
|
|
75775
75775
|
platform: getHostPlatformForAnalytics(),
|
|
75776
75776
|
organizationUuid,
|
|
75777
75777
|
accountUuid,
|
|
@@ -83971,7 +83971,7 @@ var init_metadata = __esm(() => {
|
|
|
83971
83971
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
83972
83972
|
WHITESPACE_REGEX = /\s+/;
|
|
83973
83973
|
getVersionBase = memoize_default(() => {
|
|
83974
|
-
const match = "1.65.
|
|
83974
|
+
const match = "1.65.8".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
83975
83975
|
return match ? match[0] : undefined;
|
|
83976
83976
|
});
|
|
83977
83977
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -84011,7 +84011,7 @@ var init_metadata = __esm(() => {
|
|
|
84011
84011
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
84012
84012
|
isURCodeAction: isEnvTruthy(process.env.UR_CODE_ACTION),
|
|
84013
84013
|
isURAiAuth: isURAISubscriber(),
|
|
84014
|
-
version: "1.65.
|
|
84014
|
+
version: "1.65.8",
|
|
84015
84015
|
versionBase: getVersionBase(),
|
|
84016
84016
|
buildTime: "",
|
|
84017
84017
|
deploymentEnvironment: env2.detectDeploymentEnvironment(),
|
|
@@ -84681,7 +84681,7 @@ function initialize1PEventLogging() {
|
|
|
84681
84681
|
const platform2 = getPlatform();
|
|
84682
84682
|
const attributes = {
|
|
84683
84683
|
[import_semantic_conventions4.ATTR_SERVICE_NAME]: "ur",
|
|
84684
|
-
[import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.65.
|
|
84684
|
+
[import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.65.8"
|
|
84685
84685
|
};
|
|
84686
84686
|
if (platform2 === "wsl") {
|
|
84687
84687
|
const wslVersion = getWslVersion();
|
|
@@ -84709,7 +84709,7 @@ function initialize1PEventLogging() {
|
|
|
84709
84709
|
})
|
|
84710
84710
|
]
|
|
84711
84711
|
});
|
|
84712
|
-
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.65.
|
|
84712
|
+
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.65.8");
|
|
84713
84713
|
}
|
|
84714
84714
|
async function reinitialize1PEventLoggingIfConfigChanged() {
|
|
84715
84715
|
if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
|
|
@@ -94596,7 +94596,7 @@ function formatAgentTrendReport(report = buildAgentTrendReport()) {
|
|
|
94596
94596
|
function formatA2AAgentCard(options = {}, pretty = true) {
|
|
94597
94597
|
return JSON.stringify(buildA2AAgentCard(options), null, pretty ? 2 : 0);
|
|
94598
94598
|
}
|
|
94599
|
-
var urVersion = "1.65.
|
|
94599
|
+
var urVersion = "1.65.8", researchSnapshotDate = "2026-07-15", coverage, priorityRoadmap;
|
|
94600
94600
|
var init_trends = __esm(() => {
|
|
94601
94601
|
init_a2aCardSignature();
|
|
94602
94602
|
coverage = [
|
|
@@ -97399,7 +97399,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
97399
97399
|
if (!isAttributionHeaderEnabled()) {
|
|
97400
97400
|
return "";
|
|
97401
97401
|
}
|
|
97402
|
-
const version2 = `${"1.65.
|
|
97402
|
+
const version2 = `${"1.65.8"}.${fingerprint}`;
|
|
97403
97403
|
const entrypoint = process.env.UR_CODE_ENTRYPOINT ?? "unknown";
|
|
97404
97404
|
const cch = "";
|
|
97405
97405
|
const workload = getWorkload();
|
|
@@ -155213,7 +155213,7 @@ var init_projectSafety = __esm(() => {
|
|
|
155213
155213
|
function getInstruments() {
|
|
155214
155214
|
if (instruments)
|
|
155215
155215
|
return instruments;
|
|
155216
|
-
const meter = import_api10.metrics.getMeter("ur-agent.gen_ai", "1.65.
|
|
155216
|
+
const meter = import_api10.metrics.getMeter("ur-agent.gen_ai", "1.65.8");
|
|
155217
155217
|
instruments = {
|
|
155218
155218
|
operationDuration: meter.createHistogram("gen_ai.client.operation.duration", {
|
|
155219
155219
|
description: "GenAI operation duration.",
|
|
@@ -155311,7 +155311,7 @@ function genAiAgentAttributes() {
|
|
|
155311
155311
|
"gen_ai.operation.name": GEN_AI_OPERATION_INVOKE_AGENT,
|
|
155312
155312
|
"gen_ai.provider.name": "ur",
|
|
155313
155313
|
"gen_ai.agent.name": "UR-Nexus",
|
|
155314
|
-
"gen_ai.agent.version": "1.65.
|
|
155314
|
+
"gen_ai.agent.version": "1.65.8"
|
|
155315
155315
|
};
|
|
155316
155316
|
}
|
|
155317
155317
|
function genAiWorkflowAttributes(workflowName) {
|
|
@@ -155327,7 +155327,7 @@ function genAiWorkflowAttributes(workflowName) {
|
|
|
155327
155327
|
function startGenAiWorkflowSpan(workflowName) {
|
|
155328
155328
|
const attributes = genAiWorkflowAttributes(workflowName);
|
|
155329
155329
|
const name = typeof attributes["gen_ai.workflow.name"] === "string" ? `invoke_workflow ${attributes["gen_ai.workflow.name"]}` : GEN_AI_OPERATION_INVOKE_WORKFLOW;
|
|
155330
|
-
return import_api10.trace.getTracer("ur-agent.gen_ai", "1.65.
|
|
155330
|
+
return import_api10.trace.getTracer("ur-agent.gen_ai", "1.65.8").startSpan(name, { kind: import_api10.SpanKind.INTERNAL, attributes });
|
|
155331
155331
|
}
|
|
155332
155332
|
function endGenAiWorkflowSpan(span, options2 = {}) {
|
|
155333
155333
|
try {
|
|
@@ -155365,7 +155365,7 @@ function startGenAiMemorySpan(operation, options2 = {}) {
|
|
|
155365
155365
|
if (options2.recordCount !== undefined && Number.isInteger(options2.recordCount) && options2.recordCount >= 0) {
|
|
155366
155366
|
attributes["gen_ai.memory.record.count"] = options2.recordCount;
|
|
155367
155367
|
}
|
|
155368
|
-
return import_api10.trace.getTracer("ur-agent.gen_ai", "1.65.
|
|
155368
|
+
return import_api10.trace.getTracer("ur-agent.gen_ai", "1.65.8").startSpan(operation, { kind: import_api10.SpanKind.INTERNAL, attributes });
|
|
155369
155369
|
}
|
|
155370
155370
|
function endGenAiMemorySpan(span, options2 = {}) {
|
|
155371
155371
|
try {
|
|
@@ -248848,7 +248848,7 @@ function getTelemetryAttributes() {
|
|
|
248848
248848
|
attributes["session.id"] = sessionId;
|
|
248849
248849
|
}
|
|
248850
248850
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
248851
|
-
attributes["app.version"] = "1.65.
|
|
248851
|
+
attributes["app.version"] = "1.65.8";
|
|
248852
248852
|
}
|
|
248853
248853
|
const oauthAccount = getOauthAccountInfo();
|
|
248854
248854
|
if (oauthAccount) {
|
|
@@ -295391,7 +295391,7 @@ function getInstallationEnv() {
|
|
|
295391
295391
|
return;
|
|
295392
295392
|
}
|
|
295393
295393
|
function getURCodeVersion() {
|
|
295394
|
-
return "1.65.
|
|
295394
|
+
return "1.65.8";
|
|
295395
295395
|
}
|
|
295396
295396
|
async function getInstalledVSCodeExtensionVersion(command) {
|
|
295397
295397
|
const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
|
|
@@ -302722,7 +302722,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
302722
302722
|
const client2 = new Client({
|
|
302723
302723
|
name: "ur",
|
|
302724
302724
|
title: "UR",
|
|
302725
|
-
version: "1.65.
|
|
302725
|
+
version: "1.65.8",
|
|
302726
302726
|
description: "UR-Nexus autonomous engineering workflow engine",
|
|
302727
302727
|
websiteUrl: PRODUCT_URL
|
|
302728
302728
|
}, {
|
|
@@ -303082,7 +303082,7 @@ var init_client5 = __esm(() => {
|
|
|
303082
303082
|
const client2 = new Client({
|
|
303083
303083
|
name: "ur",
|
|
303084
303084
|
title: "UR",
|
|
303085
|
-
version: "1.65.
|
|
303085
|
+
version: "1.65.8",
|
|
303086
303086
|
description: "UR-Nexus autonomous engineering workflow engine",
|
|
303087
303087
|
websiteUrl: PRODUCT_URL
|
|
303088
303088
|
}, {
|
|
@@ -315621,7 +315621,7 @@ async function createRuntime() {
|
|
|
315621
315621
|
bootstrapTelemetry();
|
|
315622
315622
|
const resource = defaultResource().merge(detectResources({ detectors: [envDetector] })).merge(resourceFromAttributes({
|
|
315623
315623
|
[import_semantic_conventions7.ATTR_SERVICE_NAME]: "ur-agent",
|
|
315624
|
-
[import_semantic_conventions7.ATTR_SERVICE_VERSION]: "1.65.
|
|
315624
|
+
[import_semantic_conventions7.ATTR_SERVICE_VERSION]: "1.65.8"
|
|
315625
315625
|
}));
|
|
315626
315626
|
const tracerProvider = exporters.traces.length > 0 ? new BasicTracerProvider({
|
|
315627
315627
|
resource,
|
|
@@ -315654,11 +315654,11 @@ async function createRuntime() {
|
|
|
315654
315654
|
setMeterProvider(meterProvider);
|
|
315655
315655
|
setLoggerProvider(loggerProvider);
|
|
315656
315656
|
if (meterProvider) {
|
|
315657
|
-
const meter = meterProvider.getMeter("ur-agent", "1.65.
|
|
315657
|
+
const meter = meterProvider.getMeter("ur-agent", "1.65.8");
|
|
315658
315658
|
setMeter(meter, (name, options2) => meter.createCounter(name, options2));
|
|
315659
315659
|
}
|
|
315660
315660
|
if (loggerProvider) {
|
|
315661
|
-
setEventLogger(loggerProvider.getLogger("ur-agent.events", "1.65.
|
|
315661
|
+
setEventLogger(loggerProvider.getLogger("ur-agent.events", "1.65.8"));
|
|
315662
315662
|
}
|
|
315663
315663
|
if (!cleanupRegistered2) {
|
|
315664
315664
|
cleanupRegistered2 = true;
|
|
@@ -316320,9 +316320,9 @@ async function assertMinVersion() {
|
|
|
316320
316320
|
if (false) {}
|
|
316321
316321
|
try {
|
|
316322
316322
|
const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
|
|
316323
|
-
if (versionConfig.minVersion && lt("1.65.
|
|
316323
|
+
if (versionConfig.minVersion && lt("1.65.8", versionConfig.minVersion)) {
|
|
316324
316324
|
console.error(`
|
|
316325
|
-
It looks like your version of UR (${"1.65.
|
|
316325
|
+
It looks like your version of UR (${"1.65.8"}) needs an update.
|
|
316326
316326
|
A newer version (${versionConfig.minVersion} or higher) is required to continue.
|
|
316327
316327
|
|
|
316328
316328
|
To update, please run:
|
|
@@ -316538,7 +316538,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
316538
316538
|
logError2(new AutoUpdaterError("Another process is currently installing an update"));
|
|
316539
316539
|
logEvent("tengu_auto_updater_lock_contention", {
|
|
316540
316540
|
pid: process.pid,
|
|
316541
|
-
currentVersion: "1.65.
|
|
316541
|
+
currentVersion: "1.65.8"
|
|
316542
316542
|
});
|
|
316543
316543
|
return "in_progress";
|
|
316544
316544
|
}
|
|
@@ -316547,7 +316547,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
316547
316547
|
if (!env2.isRunningWithBun() && env2.isNpmFromWindowsPath()) {
|
|
316548
316548
|
logError2(new Error("Windows NPM detected in WSL environment"));
|
|
316549
316549
|
logEvent("tengu_auto_updater_windows_npm_in_wsl", {
|
|
316550
|
-
currentVersion: "1.65.
|
|
316550
|
+
currentVersion: "1.65.8"
|
|
316551
316551
|
});
|
|
316552
316552
|
console.error(`
|
|
316553
316553
|
Error: Windows NPM detected in WSL
|
|
@@ -317082,7 +317082,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
317082
317082
|
}
|
|
317083
317083
|
async function getDoctorDiagnostic() {
|
|
317084
317084
|
const installationType = await getCurrentInstallationType();
|
|
317085
|
-
const version2 = typeof MACRO !== "undefined" ? "1.65.
|
|
317085
|
+
const version2 = typeof MACRO !== "undefined" ? "1.65.8" : "unknown";
|
|
317086
317086
|
const installationPath = await getInstallationPath();
|
|
317087
317087
|
const invokedBinary = getInvokedBinary();
|
|
317088
317088
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -318017,8 +318017,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
318017
318017
|
const maxVersion = await getMaxVersion();
|
|
318018
318018
|
if (maxVersion && gt(version2, maxVersion)) {
|
|
318019
318019
|
logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`);
|
|
318020
|
-
if (gte("1.65.
|
|
318021
|
-
logForDebugging(`Native installer: current version ${"1.65.
|
|
318020
|
+
if (gte("1.65.8", maxVersion)) {
|
|
318021
|
+
logForDebugging(`Native installer: current version ${"1.65.8"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
318022
318022
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
318023
318023
|
latency_ms: Date.now() - startTime,
|
|
318024
318024
|
max_version: maxVersion,
|
|
@@ -318029,7 +318029,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
318029
318029
|
version2 = maxVersion;
|
|
318030
318030
|
}
|
|
318031
318031
|
}
|
|
318032
|
-
if (!forceReinstall && version2 === "1.65.
|
|
318032
|
+
if (!forceReinstall && version2 === "1.65.8" && await versionIsAvailable(version2) && await isPossibleURBinary(executablePath)) {
|
|
318033
318033
|
logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
|
|
318034
318034
|
logEvent("tengu_native_update_complete", {
|
|
318035
318035
|
latency_ms: Date.now() - startTime,
|
|
@@ -387616,7 +387616,7 @@ function isAnyTracingEnabled() {
|
|
|
387616
387616
|
return isTelemetryEnabled() || isEnhancedTelemetryEnabled() || isBetaTracingEnabled();
|
|
387617
387617
|
}
|
|
387618
387618
|
function getTracer() {
|
|
387619
|
-
return import_api39.trace.getTracer("ur-agent.gen_ai", "1.65.
|
|
387619
|
+
return import_api39.trace.getTracer("ur-agent.gen_ai", "1.65.8");
|
|
387620
387620
|
}
|
|
387621
387621
|
function createSpanAttributes(spanType, customAttributes = {}) {
|
|
387622
387622
|
const baseAttributes = getTelemetryAttributes();
|
|
@@ -417982,7 +417982,7 @@ function Feedback({
|
|
|
417982
417982
|
platform: env2.platform,
|
|
417983
417983
|
gitRepo: envInfo.isGit,
|
|
417984
417984
|
terminal: env2.terminal,
|
|
417985
|
-
version: "1.65.
|
|
417985
|
+
version: "1.65.8",
|
|
417986
417986
|
transcript: normalizeMessagesForAPI(messages),
|
|
417987
417987
|
errors: sanitizedErrors,
|
|
417988
417988
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -418174,7 +418174,7 @@ function Feedback({
|
|
|
418174
418174
|
", ",
|
|
418175
418175
|
env2.terminal,
|
|
418176
418176
|
", v",
|
|
418177
|
-
"1.65.
|
|
418177
|
+
"1.65.8"
|
|
418178
418178
|
]
|
|
418179
418179
|
}, undefined, true, undefined, this)
|
|
418180
418180
|
]
|
|
@@ -418280,7 +418280,7 @@ ${sanitizedDescription}
|
|
|
418280
418280
|
` + `**Environment Info**
|
|
418281
418281
|
` + `- Platform: ${env2.platform}
|
|
418282
418282
|
` + `- Terminal: ${env2.terminal}
|
|
418283
|
-
` + `- Version: ${"1.65.
|
|
418283
|
+
` + `- Version: ${"1.65.8"}
|
|
418284
418284
|
` + `- Feedback ID: ${feedbackId}
|
|
418285
418285
|
` + `
|
|
418286
418286
|
**Errors**
|
|
@@ -421390,7 +421390,7 @@ function buildPrimarySection() {
|
|
|
421390
421390
|
}, undefined, false, undefined, this);
|
|
421391
421391
|
return [{
|
|
421392
421392
|
label: "Version",
|
|
421393
|
-
value: "1.65.
|
|
421393
|
+
value: "1.65.8"
|
|
421394
421394
|
}, {
|
|
421395
421395
|
label: "Session name",
|
|
421396
421396
|
value: nameValue
|
|
@@ -424720,7 +424720,7 @@ function Config({
|
|
|
424720
424720
|
}
|
|
424721
424721
|
}, undefined, false, undefined, this)
|
|
424722
424722
|
}, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime179.jsxDEV(ChannelDowngradeDialog, {
|
|
424723
|
-
currentVersion: "1.65.
|
|
424723
|
+
currentVersion: "1.65.8",
|
|
424724
424724
|
onChoice: (choice) => {
|
|
424725
424725
|
setShowSubmenu(null);
|
|
424726
424726
|
setTabsHidden(false);
|
|
@@ -424732,7 +424732,7 @@ function Config({
|
|
|
424732
424732
|
autoUpdatesChannel: "stable"
|
|
424733
424733
|
};
|
|
424734
424734
|
if (choice === "stay") {
|
|
424735
|
-
newSettings.minimumVersion = "1.65.
|
|
424735
|
+
newSettings.minimumVersion = "1.65.8";
|
|
424736
424736
|
}
|
|
424737
424737
|
updateSettingsForSource("userSettings", newSettings);
|
|
424738
424738
|
setSettingsData((prev_27) => ({
|
|
@@ -432796,7 +432796,7 @@ function HelpV2(t0) {
|
|
|
432796
432796
|
let t6;
|
|
432797
432797
|
if ($2[31] !== tabs) {
|
|
432798
432798
|
t6 = /* @__PURE__ */ jsx_dev_runtime206.jsxDEV(Tabs, {
|
|
432799
|
-
title: `UR v${"1.65.
|
|
432799
|
+
title: `UR v${"1.65.8"}`,
|
|
432800
432800
|
color: "professionalBlue",
|
|
432801
432801
|
defaultTab: "general",
|
|
432802
432802
|
children: tabs
|
|
@@ -433729,7 +433729,7 @@ function buildToolUseContext(tools, readFileStateCache, toolPermissionContext, a
|
|
|
433729
433729
|
async function handleInitialize(options2) {
|
|
433730
433730
|
return {
|
|
433731
433731
|
name: "UR",
|
|
433732
|
-
version: "1.65.
|
|
433732
|
+
version: "1.65.8",
|
|
433733
433733
|
protocolVersion: "0.1.0",
|
|
433734
433734
|
workspaceRoot: options2.cwd,
|
|
433735
433735
|
capabilities: {
|
|
@@ -450837,7 +450837,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
450837
450837
|
return [];
|
|
450838
450838
|
}
|
|
450839
450839
|
}
|
|
450840
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.65.
|
|
450840
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.65.8") {
|
|
450841
450841
|
if (process.env.USER_TYPE === "ant") {
|
|
450842
450842
|
const changelog = "";
|
|
450843
450843
|
if (changelog) {
|
|
@@ -450864,7 +450864,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.65.7")
|
|
|
450864
450864
|
releaseNotes
|
|
450865
450865
|
};
|
|
450866
450866
|
}
|
|
450867
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.65.
|
|
450867
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.65.8") {
|
|
450868
450868
|
if (process.env.USER_TYPE === "ant") {
|
|
450869
450869
|
const changelog = "";
|
|
450870
450870
|
if (changelog) {
|
|
@@ -453730,7 +453730,7 @@ function getRecentActivitySync() {
|
|
|
453730
453730
|
return cachedActivity;
|
|
453731
453731
|
}
|
|
453732
453732
|
function getLogoDisplayData() {
|
|
453733
|
-
const version2 = process.env.DEMO_VERSION ?? "1.65.
|
|
453733
|
+
const version2 = process.env.DEMO_VERSION ?? "1.65.8";
|
|
453734
453734
|
const serverUrl = getDirectConnectServerUrl();
|
|
453735
453735
|
const displayPath = process.env.DEMO_VERSION ? "/code/ur" : getDisplayPath(getCwd());
|
|
453736
453736
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -454597,7 +454597,7 @@ function LogoV2() {
|
|
|
454597
454597
|
if ($2[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
454598
454598
|
t2 = () => {
|
|
454599
454599
|
const currentConfig2 = getGlobalConfig();
|
|
454600
|
-
if (currentConfig2.lastReleaseNotesSeen === "1.65.
|
|
454600
|
+
if (currentConfig2.lastReleaseNotesSeen === "1.65.8") {
|
|
454601
454601
|
return;
|
|
454602
454602
|
}
|
|
454603
454603
|
saveGlobalConfig(_temp325);
|
|
@@ -455282,12 +455282,12 @@ function LogoV2() {
|
|
|
455282
455282
|
return t41;
|
|
455283
455283
|
}
|
|
455284
455284
|
function _temp325(current) {
|
|
455285
|
-
if (current.lastReleaseNotesSeen === "1.65.
|
|
455285
|
+
if (current.lastReleaseNotesSeen === "1.65.8") {
|
|
455286
455286
|
return current;
|
|
455287
455287
|
}
|
|
455288
455288
|
return {
|
|
455289
455289
|
...current,
|
|
455290
|
-
lastReleaseNotesSeen: "1.65.
|
|
455290
|
+
lastReleaseNotesSeen: "1.65.8"
|
|
455291
455291
|
};
|
|
455292
455292
|
}
|
|
455293
455293
|
function _temp241(s_0) {
|
|
@@ -472227,7 +472227,7 @@ function compileAgenticCiWorkflow(specName = "default", options2 = {}) {
|
|
|
472227
472227
|
if (spec.name !== specName) {
|
|
472228
472228
|
throw new Error("Agentic CI workflow spec name does not match");
|
|
472229
472229
|
}
|
|
472230
|
-
const packageVersion = options2.packageVersion ?? (typeof MACRO !== "undefined" ? "1.65.
|
|
472230
|
+
const packageVersion = options2.packageVersion ?? (typeof MACRO !== "undefined" ? "1.65.8" : "1.65.8");
|
|
472231
472231
|
if (!/^\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?$/.test(packageVersion)) {
|
|
472232
472232
|
throw new Error("invalid ur-agent package version");
|
|
472233
472233
|
}
|
|
@@ -473220,7 +473220,7 @@ runner; \`ur trigger\` is the inbound parser that decides what to run.
|
|
|
473220
473220
|
path: ".github/workflows/ur.yml",
|
|
473221
473221
|
root: "project",
|
|
473222
473222
|
content: compileAgenticCiWorkflow("default", {
|
|
473223
|
-
packageVersion: typeof MACRO !== "undefined" ? "1.65.
|
|
473223
|
+
packageVersion: typeof MACRO !== "undefined" ? "1.65.8" : "1.65.8"
|
|
473224
473224
|
})
|
|
473225
473225
|
},
|
|
473226
473226
|
{
|
|
@@ -473290,7 +473290,7 @@ function value(tokens, flag) {
|
|
|
473290
473290
|
return index2 >= 0 ? tokens[index2 + 1] : undefined;
|
|
473291
473291
|
}
|
|
473292
473292
|
function cliVersion() {
|
|
473293
|
-
return typeof MACRO !== "undefined" ? "1.65.
|
|
473293
|
+
return typeof MACRO !== "undefined" ? "1.65.8" : "1.65.8";
|
|
473294
473294
|
}
|
|
473295
473295
|
function workflowPath(cwd2) {
|
|
473296
473296
|
return join159(cwd2, ".github", "workflows", "ur-agentic-ci.yml");
|
|
@@ -479155,7 +479155,7 @@ function createAcpStdioApp(deps) {
|
|
|
479155
479155
|
}
|
|
479156
479156
|
},
|
|
479157
479157
|
authMethods: [],
|
|
479158
|
-
agentInfo: { name: "UR-Nexus", version: "1.65.
|
|
479158
|
+
agentInfo: { name: "UR-Nexus", version: "1.65.8" }
|
|
479159
479159
|
})).onRequest("authenticate", () => ({})).onRequest("session/new", async (context6) => {
|
|
479160
479160
|
const result = runtime2.newSession(context6.params.cwd, context6.params.mcpServers, context6.params.additionalDirectories);
|
|
479161
479161
|
await runtime2.announce({
|
|
@@ -479252,7 +479252,7 @@ function createAcpStdioAgent(deps) {
|
|
|
479252
479252
|
}
|
|
479253
479253
|
},
|
|
479254
479254
|
authMethods: [],
|
|
479255
|
-
agentInfo: { name: "UR-Nexus", version: "1.65.
|
|
479255
|
+
agentInfo: { name: "UR-Nexus", version: "1.65.8" }
|
|
479256
479256
|
});
|
|
479257
479257
|
return;
|
|
479258
479258
|
case "authenticate":
|
|
@@ -690394,7 +690394,7 @@ async function captureMemoryDiagnostics(trigger2, dumpNumber = 0) {
|
|
|
690394
690394
|
smapsRollup,
|
|
690395
690395
|
platform: process.platform,
|
|
690396
690396
|
nodeVersion: process.version,
|
|
690397
|
-
ccVersion: "1.65.
|
|
690397
|
+
ccVersion: "1.65.8"
|
|
690398
690398
|
};
|
|
690399
690399
|
}
|
|
690400
690400
|
async function performHeapDump(trigger2 = "manual", dumpNumber = 0) {
|
|
@@ -690974,7 +690974,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
690974
690974
|
var call153 = async () => {
|
|
690975
690975
|
return {
|
|
690976
690976
|
type: "text",
|
|
690977
|
-
value: "1.65.
|
|
690977
|
+
value: "1.65.8"
|
|
690978
690978
|
};
|
|
690979
690979
|
}, version2, version_default;
|
|
690980
690980
|
var init_version = __esm(() => {
|
|
@@ -694013,6 +694013,14 @@ var init_export2 = __esm(() => {
|
|
|
694013
694013
|
export_default = exportCommand;
|
|
694014
694014
|
});
|
|
694015
694015
|
|
|
694016
|
+
// src/components/providerApiKeyInputLayout.ts
|
|
694017
|
+
function getProviderApiKeyInputColumns(terminalColumns, isStandaloneCommand) {
|
|
694018
|
+
const width = Number.isFinite(terminalColumns) ? Math.floor(terminalColumns) : 0;
|
|
694019
|
+
const panePadding = isStandaloneCommand ? 4 : 0;
|
|
694020
|
+
return Math.max(2, width - panePadding - PROVIDER_API_KEY_LABEL.length);
|
|
694021
|
+
}
|
|
694022
|
+
var PROVIDER_API_KEY_LABEL = "API key: ";
|
|
694023
|
+
|
|
694016
694024
|
// src/components/ProviderFirstModelPicker.tsx
|
|
694017
694025
|
function ProviderFirstModelPicker({
|
|
694018
694026
|
initial,
|
|
@@ -694036,7 +694044,10 @@ function ProviderFirstModelPicker({
|
|
|
694036
694044
|
const [providerWarning, setProviderWarning] = import_react183.useState(null);
|
|
694037
694045
|
const [connectingProvider, setConnectingProvider] = import_react183.useState(null);
|
|
694038
694046
|
const [apiKeyInput, setApiKeyInput] = import_react183.useState("");
|
|
694047
|
+
const [apiKeyCursorOffset, setApiKeyCursorOffset] = import_react183.useState(0);
|
|
694039
694048
|
const [connectError, setConnectError] = import_react183.useState(null);
|
|
694049
|
+
const { columns: terminalColumns } = useTerminalSize();
|
|
694050
|
+
const apiKeyInputColumns = getProviderApiKeyInputColumns(terminalColumns, Boolean(isStandaloneCommand));
|
|
694040
694051
|
const effortValue = useAppState(selectEffortValue2);
|
|
694041
694052
|
const [effort] = import_react183.useState(effortValue !== undefined ? convertEffortValueToLevel(effortValue) : undefined);
|
|
694042
694053
|
const appThinkingEnabled = useAppState(selectThinkingEnabled2);
|
|
@@ -694125,6 +694136,7 @@ function ProviderFirstModelPicker({
|
|
|
694125
694136
|
if (provider.credentialType === "api-key") {
|
|
694126
694137
|
setConnectingProvider(provider);
|
|
694127
694138
|
setApiKeyInput("");
|
|
694139
|
+
setApiKeyCursorOffset(0);
|
|
694128
694140
|
setConnectError(null);
|
|
694129
694141
|
setStep("connect");
|
|
694130
694142
|
return;
|
|
@@ -694223,12 +694235,14 @@ function ProviderFirstModelPicker({
|
|
|
694223
694235
|
return;
|
|
694224
694236
|
}
|
|
694225
694237
|
setApiKeyInput("");
|
|
694238
|
+
setApiKeyCursorOffset(0);
|
|
694226
694239
|
setConnectError(null);
|
|
694227
694240
|
setSelectedProvider(connectingProvider);
|
|
694228
694241
|
setStep("model");
|
|
694229
694242
|
}
|
|
694230
694243
|
function handleKeyCancel() {
|
|
694231
694244
|
setApiKeyInput("");
|
|
694245
|
+
setApiKeyCursorOffset(0);
|
|
694232
694246
|
setConnectingProvider(null);
|
|
694233
694247
|
setConnectError(null);
|
|
694234
694248
|
setStep("provider");
|
|
@@ -694268,14 +694282,21 @@ function ProviderFirstModelPicker({
|
|
|
694268
694282
|
/* @__PURE__ */ jsx_dev_runtime335.jsxDEV(ThemedBox_default, {
|
|
694269
694283
|
children: [
|
|
694270
694284
|
/* @__PURE__ */ jsx_dev_runtime335.jsxDEV(ThemedText, {
|
|
694271
|
-
children:
|
|
694285
|
+
children: PROVIDER_API_KEY_LABEL
|
|
694272
694286
|
}, undefined, false, undefined, this),
|
|
694273
694287
|
/* @__PURE__ */ jsx_dev_runtime335.jsxDEV(TextInput, {
|
|
694274
694288
|
value: apiKeyInput,
|
|
694275
694289
|
onChange: setApiKeyInput,
|
|
694276
694290
|
onSubmit: handleKeySubmit,
|
|
694277
694291
|
mask: "*",
|
|
694278
|
-
placeholder: "paste key, then Enter"
|
|
694292
|
+
placeholder: "paste key, then Enter",
|
|
694293
|
+
columns: apiKeyInputColumns,
|
|
694294
|
+
cursorOffset: apiKeyCursorOffset,
|
|
694295
|
+
onChangeCursorOffset: setApiKeyCursorOffset,
|
|
694296
|
+
focus: true,
|
|
694297
|
+
showCursor: true,
|
|
694298
|
+
multiline: false,
|
|
694299
|
+
maxVisibleLines: 1
|
|
694279
694300
|
}, undefined, false, undefined, this)
|
|
694280
694301
|
]
|
|
694281
694302
|
}, undefined, true, undefined, this),
|
|
@@ -694607,6 +694628,7 @@ function ProviderFirstModelPicker({
|
|
|
694607
694628
|
function noop8() {}
|
|
694608
694629
|
var import_react183, jsx_dev_runtime335, selectCurrentProvider = (s) => s.provider?.active ?? "ollama", selectEffortValue2 = (s) => s.effortValue, selectThinkingEnabled2 = (s) => s.thinkingEnabled;
|
|
694609
694630
|
var init_ProviderFirstModelPicker = __esm(() => {
|
|
694631
|
+
init_useTerminalSize();
|
|
694610
694632
|
init_analytics();
|
|
694611
694633
|
init_providerRegistry();
|
|
694612
694634
|
init_providerCredentials();
|
|
@@ -702132,7 +702154,7 @@ function generateHtmlReport(data, insights) {
|
|
|
702132
702154
|
</html>`;
|
|
702133
702155
|
}
|
|
702134
702156
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
702135
|
-
const version3 = typeof MACRO !== "undefined" ? "1.65.
|
|
702157
|
+
const version3 = typeof MACRO !== "undefined" ? "1.65.8" : "unknown";
|
|
702136
702158
|
const remote_hosts_collected = remoteStats?.hosts.filter((h2) => h2.sessionCount > 0).map((h2) => h2.name);
|
|
702137
702159
|
const facets_summary = {
|
|
702138
702160
|
total: facets.size,
|
|
@@ -706459,7 +706481,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
706459
706481
|
init_settings2();
|
|
706460
706482
|
init_slowOperations();
|
|
706461
706483
|
init_uuid();
|
|
706462
|
-
VERSION7 = typeof MACRO !== "undefined" ? "1.65.
|
|
706484
|
+
VERSION7 = typeof MACRO !== "undefined" ? "1.65.8" : "unknown";
|
|
706463
706485
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
706464
706486
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
706465
706487
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -707674,7 +707696,7 @@ var init_filesystem = __esm(() => {
|
|
|
707674
707696
|
});
|
|
707675
707697
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
707676
707698
|
const nonce = randomBytes20(16).toString("hex");
|
|
707677
|
-
return join230(getURTempDir(), "bundled-skills", "1.65.
|
|
707699
|
+
return join230(getURTempDir(), "bundled-skills", "1.65.8", nonce);
|
|
707678
707700
|
});
|
|
707679
707701
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
707680
707702
|
});
|
|
@@ -713997,7 +714019,7 @@ function computeFingerprint(messageText2, version3) {
|
|
|
713997
714019
|
}
|
|
713998
714020
|
function computeFingerprintFromMessages(messages) {
|
|
713999
714021
|
const firstMessageText = extractFirstMessageText(messages);
|
|
714000
|
-
return computeFingerprint(firstMessageText, "1.65.
|
|
714022
|
+
return computeFingerprint(firstMessageText, "1.65.8");
|
|
714001
714023
|
}
|
|
714002
714024
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
714003
714025
|
var init_fingerprint = () => {};
|
|
@@ -715893,7 +715915,7 @@ async function sideQuery(opts) {
|
|
|
715893
715915
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
715894
715916
|
}
|
|
715895
715917
|
const messageText2 = extractFirstUserMessageText(messages);
|
|
715896
|
-
const fingerprint2 = computeFingerprint(messageText2, "1.65.
|
|
715918
|
+
const fingerprint2 = computeFingerprint(messageText2, "1.65.8");
|
|
715897
715919
|
const attributionHeader = getAttributionHeader(fingerprint2);
|
|
715898
715920
|
const systemBlocks = [
|
|
715899
715921
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -720680,7 +720702,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
720680
720702
|
slash_commands: inputs.commands.filter((c4) => c4.userInvocable !== false).map((c4) => c4.name),
|
|
720681
720703
|
apiKeySource: getURHQApiKeyWithSource().source,
|
|
720682
720704
|
betas: getSdkBetas(),
|
|
720683
|
-
ur_version: "1.65.
|
|
720705
|
+
ur_version: "1.65.8",
|
|
720684
720706
|
output_style: outputStyle2,
|
|
720685
720707
|
agents: inputs.agents.map((agent2) => agent2.agentType),
|
|
720686
720708
|
skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill2) => skill2.name),
|
|
@@ -734540,7 +734562,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
734540
734562
|
function getSemverPart(version3) {
|
|
734541
734563
|
return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
|
|
734542
734564
|
}
|
|
734543
|
-
function useUpdateNotification(updatedVersion, initialVersion = "1.65.
|
|
734565
|
+
function useUpdateNotification(updatedVersion, initialVersion = "1.65.8") {
|
|
734544
734566
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react222.useState(() => getSemverPart(initialVersion));
|
|
734545
734567
|
if (!updatedVersion) {
|
|
734546
734568
|
return null;
|
|
@@ -734589,7 +734611,7 @@ function AutoUpdater({
|
|
|
734589
734611
|
return;
|
|
734590
734612
|
}
|
|
734591
734613
|
if (false) {}
|
|
734592
|
-
const currentVersion = "1.65.
|
|
734614
|
+
const currentVersion = "1.65.8";
|
|
734593
734615
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
734594
734616
|
let latestVersion = await getLatestVersion(channel);
|
|
734595
734617
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -734818,12 +734840,12 @@ function NativeAutoUpdater({
|
|
|
734818
734840
|
logEvent("tengu_native_auto_updater_start", {});
|
|
734819
734841
|
try {
|
|
734820
734842
|
const maxVersion = await getMaxVersion();
|
|
734821
|
-
if (maxVersion && gt("1.65.
|
|
734843
|
+
if (maxVersion && gt("1.65.8", maxVersion)) {
|
|
734822
734844
|
const msg = await getMaxVersionMessage();
|
|
734823
734845
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
734824
734846
|
}
|
|
734825
734847
|
const result = await installLatest(channel);
|
|
734826
|
-
const currentVersion = "1.65.
|
|
734848
|
+
const currentVersion = "1.65.8";
|
|
734827
734849
|
const latencyMs = Date.now() - startTime;
|
|
734828
734850
|
if (result.lockFailed) {
|
|
734829
734851
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -734960,17 +734982,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
734960
734982
|
const maxVersion = await getMaxVersion();
|
|
734961
734983
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
734962
734984
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
734963
|
-
if (gte("1.65.
|
|
734964
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.65.
|
|
734985
|
+
if (gte("1.65.8", maxVersion)) {
|
|
734986
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.65.8"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
734965
734987
|
setUpdateAvailable(false);
|
|
734966
734988
|
return;
|
|
734967
734989
|
}
|
|
734968
734990
|
latest = maxVersion;
|
|
734969
734991
|
}
|
|
734970
|
-
const hasUpdate = latest && !gte("1.65.
|
|
734992
|
+
const hasUpdate = latest && !gte("1.65.8", latest) && !shouldSkipVersion(latest);
|
|
734971
734993
|
setUpdateAvailable(!!hasUpdate);
|
|
734972
734994
|
if (hasUpdate) {
|
|
734973
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.65.
|
|
734995
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.65.8"} -> ${latest}`);
|
|
734974
734996
|
}
|
|
734975
734997
|
};
|
|
734976
734998
|
$2[0] = t1;
|
|
@@ -735004,7 +735026,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
735004
735026
|
wrap: "truncate",
|
|
735005
735027
|
children: [
|
|
735006
735028
|
"currentVersion: ",
|
|
735007
|
-
"1.65.
|
|
735029
|
+
"1.65.8"
|
|
735008
735030
|
]
|
|
735009
735031
|
}, undefined, true, undefined, this);
|
|
735010
735032
|
$2[3] = verbose;
|
|
@@ -745724,7 +745746,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
745724
745746
|
project_dir: getOriginalCwd(),
|
|
745725
745747
|
added_dirs: addedDirs
|
|
745726
745748
|
},
|
|
745727
|
-
version: "1.65.
|
|
745749
|
+
version: "1.65.8",
|
|
745728
745750
|
output_style: {
|
|
745729
745751
|
name: outputStyleName
|
|
745730
745752
|
},
|
|
@@ -745802,7 +745824,7 @@ function StatusLineInner({
|
|
|
745802
745824
|
const taskValues = Object.values(tasks2);
|
|
745803
745825
|
const taskRunningCount = countActiveBackgroundTasks(taskValues);
|
|
745804
745826
|
const defaultStatusLineText = buildDefaultStatusBar({
|
|
745805
|
-
version: "1.65.
|
|
745827
|
+
version: "1.65.8",
|
|
745806
745828
|
providerLabel: providerRuntime.providerLabel,
|
|
745807
745829
|
authMode: providerRuntime.authLabel,
|
|
745808
745830
|
model: renderModelName(mainLoopModel) || providerRuntime.model || "",
|
|
@@ -757982,7 +758004,7 @@ async function submitTranscriptShare(messages, trigger2, appearanceId) {
|
|
|
757982
758004
|
} catch {}
|
|
757983
758005
|
const data = {
|
|
757984
758006
|
trigger: trigger2,
|
|
757985
|
-
version: "1.65.
|
|
758007
|
+
version: "1.65.8",
|
|
757986
758008
|
platform: process.platform,
|
|
757987
758009
|
transcript,
|
|
757988
758010
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -770347,7 +770369,7 @@ function WelcomeV2() {
|
|
|
770347
770369
|
dimColor: true,
|
|
770348
770370
|
children: [
|
|
770349
770371
|
"v",
|
|
770350
|
-
"1.65.
|
|
770372
|
+
"1.65.8"
|
|
770351
770373
|
]
|
|
770352
770374
|
}, undefined, true, undefined, this)
|
|
770353
770375
|
]
|
|
@@ -771607,7 +771629,7 @@ function completeOnboarding() {
|
|
|
771607
771629
|
saveGlobalConfig((current) => ({
|
|
771608
771630
|
...current,
|
|
771609
771631
|
hasCompletedOnboarding: true,
|
|
771610
|
-
lastOnboardingVersion: "1.65.
|
|
771632
|
+
lastOnboardingVersion: "1.65.8"
|
|
771611
771633
|
}));
|
|
771612
771634
|
}
|
|
771613
771635
|
function showDialog(root2, renderer) {
|
|
@@ -776651,7 +776673,7 @@ function appendToLog(path24, message) {
|
|
|
776651
776673
|
cwd: getFsImplementation().cwd(),
|
|
776652
776674
|
userType: process.env.USER_TYPE,
|
|
776653
776675
|
sessionId: getSessionId(),
|
|
776654
|
-
version: "1.65.
|
|
776676
|
+
version: "1.65.8"
|
|
776655
776677
|
};
|
|
776656
776678
|
getLogWriter(path24).write(messageWithTimestamp);
|
|
776657
776679
|
}
|
|
@@ -780815,8 +780837,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
780815
780837
|
}
|
|
780816
780838
|
async function checkEnvLessBridgeMinVersion() {
|
|
780817
780839
|
const cfg = await getEnvLessBridgeConfig();
|
|
780818
|
-
if (cfg.min_version && lt("1.65.
|
|
780819
|
-
return `Your version of UR (${"1.65.
|
|
780840
|
+
if (cfg.min_version && lt("1.65.8", cfg.min_version)) {
|
|
780841
|
+
return `Your version of UR (${"1.65.8"}) is too old for Remote Control.
|
|
780820
780842
|
Version ${cfg.min_version} or higher is required. Run \`ur update\` to update.`;
|
|
780821
780843
|
}
|
|
780822
780844
|
return null;
|
|
@@ -781290,7 +781312,7 @@ async function initBridgeCore(params) {
|
|
|
781290
781312
|
const rawApi = createBridgeApiClient({
|
|
781291
781313
|
baseUrl,
|
|
781292
781314
|
getAccessToken,
|
|
781293
|
-
runnerVersion: "1.65.
|
|
781315
|
+
runnerVersion: "1.65.8",
|
|
781294
781316
|
onDebug: logForDebugging,
|
|
781295
781317
|
onAuth401,
|
|
781296
781318
|
getTrustedDeviceToken
|
|
@@ -790763,7 +790785,7 @@ function getAgUiCapabilities() {
|
|
|
790763
790785
|
name: "UR-Nexus",
|
|
790764
790786
|
type: "ur-nexus",
|
|
790765
790787
|
description: "Provider-flexible, local-first autonomous engineering workflow agent.",
|
|
790766
|
-
version: "1.65.
|
|
790788
|
+
version: "1.65.8",
|
|
790767
790789
|
provider: "UR",
|
|
790768
790790
|
documentationUrl: "https://github.com/Maitham16/UR/blob/master/docs/AG_UI.md"
|
|
790769
790791
|
},
|
|
@@ -791903,7 +791925,7 @@ function createMCPServer(cwd4, debug2, verbose) {
|
|
|
791903
791925
|
};
|
|
791904
791926
|
const server2 = new Server({
|
|
791905
791927
|
name: "ur-nexus",
|
|
791906
|
-
version: "1.65.
|
|
791928
|
+
version: "1.65.8"
|
|
791907
791929
|
}, {
|
|
791908
791930
|
capabilities: {
|
|
791909
791931
|
tools: {}
|
|
@@ -793061,7 +793083,7 @@ function thrownResponse(error40) {
|
|
|
793061
793083
|
}
|
|
793062
793084
|
async function createUrMcp2026Runtime(options4) {
|
|
793063
793085
|
const server2 = createMCPServer(options4.cwd, options4.debug === true, options4.verbose === true);
|
|
793064
|
-
const client2 = new Client({ name: "ur-mcp-2026-adapter", version: "1.65.
|
|
793086
|
+
const client2 = new Client({ name: "ur-mcp-2026-adapter", version: "1.65.8" }, { capabilities: {} });
|
|
793065
793087
|
const [clientTransport, serverTransport] = createLinkedTransportPair();
|
|
793066
793088
|
try {
|
|
793067
793089
|
await server2.connect(serverTransport);
|
|
@@ -793072,7 +793094,7 @@ async function createUrMcp2026Runtime(options4) {
|
|
|
793072
793094
|
}
|
|
793073
793095
|
const runtime2 = new Mcp2026Runtime({
|
|
793074
793096
|
cwd: options4.cwd,
|
|
793075
|
-
version: "1.65.
|
|
793097
|
+
version: "1.65.8",
|
|
793076
793098
|
backend: {
|
|
793077
793099
|
listTools: async () => {
|
|
793078
793100
|
const listed = await client2.listTools();
|
|
@@ -795205,7 +795227,7 @@ async function update() {
|
|
|
795205
795227
|
logEvent("tengu_update_check", {});
|
|
795206
795228
|
const diagnostic2 = await getDoctorDiagnostic();
|
|
795207
795229
|
const result = await checkUpgradeStatus({
|
|
795208
|
-
currentVersion: "1.65.
|
|
795230
|
+
currentVersion: "1.65.8",
|
|
795209
795231
|
packageName: UR_AGENT_PACKAGE_NAME,
|
|
795210
795232
|
installationType: diagnostic2.installationType,
|
|
795211
795233
|
latestVersion: () => getLatestNpmPackageVersion(UR_AGENT_PACKAGE_NAME)
|
|
@@ -796521,7 +796543,7 @@ ${customInstructions}` : customInstructions;
|
|
|
796521
796543
|
}
|
|
796522
796544
|
}
|
|
796523
796545
|
logForDiagnosticsNoPII("info", "started", {
|
|
796524
|
-
version: "1.65.
|
|
796546
|
+
version: "1.65.8",
|
|
796525
796547
|
is_native_binary: isInBundledMode()
|
|
796526
796548
|
});
|
|
796527
796549
|
registerCleanup(async () => {
|
|
@@ -797307,7 +797329,7 @@ Usage: ur --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
797307
797329
|
pendingHookMessages
|
|
797308
797330
|
}, renderAndRun);
|
|
797309
797331
|
}
|
|
797310
|
-
}).version("1.65.
|
|
797332
|
+
}).version("1.65.8 (UR-Nexus)", "-v, --version", "Output the version number");
|
|
797311
797333
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
797312
797334
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
797313
797335
|
if (canUserConfigureAdvisor()) {
|
|
@@ -798366,7 +798388,7 @@ if (false) {}
|
|
|
798366
798388
|
async function main2() {
|
|
798367
798389
|
const args = process.argv.slice(2);
|
|
798368
798390
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
798369
|
-
console.log(`${"1.65.
|
|
798391
|
+
console.log(`${"1.65.8"} (UR-Nexus)`);
|
|
798370
798392
|
return;
|
|
798371
798393
|
}
|
|
798372
798394
|
if (args[0] === "a2a" && args[1] === "serve" && !args.includes("--help") && !args.includes("-h")) {
|
package/docs/VALIDATION.md
CHANGED
package/documentation/index.html
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
<main id="content" class="content">
|
|
46
46
|
<header class="topbar">
|
|
47
47
|
<div>
|
|
48
|
-
<p class="eyebrow">Version 1.65.
|
|
48
|
+
<p class="eyebrow">Version 1.65.8</p>
|
|
49
49
|
<h1>UR-Nexus Documentation</h1>
|
|
50
50
|
<p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-Nexus.</p>
|
|
51
51
|
</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.65.
|
|
5
|
+
"version": "1.65.8",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED
package/technical/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# UR-Nexus — Technical Specifications
|
|
2
2
|
|
|
3
|
-
> Audited against the executable source and tests for `ur-agent` v1.65.
|
|
3
|
+
> Audited against the executable source and tests for `ur-agent` v1.65.8.
|
|
4
4
|
> Command, tool, flag, provider, and setting claims are checked against the
|
|
5
5
|
> implementation rather than copied from product prose. Release validation
|
|
6
6
|
> keeps this version synchronized and packages the complete `technical/`
|