ur-agent 1.76.4 → 1.76.7
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
|
@@ -107465,7 +107465,7 @@ var init_auth = __esm(() => {
|
|
|
107465
107465
|
|
|
107466
107466
|
// src/utils/userAgent.ts
|
|
107467
107467
|
function getURCodeUserAgent() {
|
|
107468
|
-
return `ur/${"1.76.
|
|
107468
|
+
return `ur/${"1.76.7"}`;
|
|
107469
107469
|
}
|
|
107470
107470
|
|
|
107471
107471
|
// src/utils/workloadContext.ts
|
|
@@ -107487,7 +107487,7 @@ function getUserAgent() {
|
|
|
107487
107487
|
const clientApp = process.env.UR_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}` : "";
|
|
107488
107488
|
const workload = getWorkload();
|
|
107489
107489
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
107490
|
-
return `ur-cli/${"1.76.
|
|
107490
|
+
return `ur-cli/${"1.76.7"} (${process.env.USER_TYPE}, ${process.env.UR_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
107491
107491
|
}
|
|
107492
107492
|
function getMCPUserAgent() {
|
|
107493
107493
|
const parts = [];
|
|
@@ -107501,7 +107501,7 @@ function getMCPUserAgent() {
|
|
|
107501
107501
|
parts.push(`client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}`);
|
|
107502
107502
|
}
|
|
107503
107503
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
107504
|
-
return `ur/${"1.76.
|
|
107504
|
+
return `ur/${"1.76.7"}${suffix}`;
|
|
107505
107505
|
}
|
|
107506
107506
|
function getWebFetchUserAgent() {
|
|
107507
107507
|
return `UR-User (${getURCodeUserAgent()})`;
|
|
@@ -107639,7 +107639,7 @@ var init_user = __esm(() => {
|
|
|
107639
107639
|
deviceId,
|
|
107640
107640
|
sessionId: getSessionId(),
|
|
107641
107641
|
email: getEmail(),
|
|
107642
|
-
appVersion: "1.76.
|
|
107642
|
+
appVersion: "1.76.7",
|
|
107643
107643
|
platform: getHostPlatformForAnalytics(),
|
|
107644
107644
|
organizationUuid,
|
|
107645
107645
|
accountUuid,
|
|
@@ -115526,7 +115526,7 @@ var init_metadata = __esm(() => {
|
|
|
115526
115526
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
115527
115527
|
WHITESPACE_REGEX = /\s+/;
|
|
115528
115528
|
getVersionBase = memoize_default(() => {
|
|
115529
|
-
const match = "1.76.
|
|
115529
|
+
const match = "1.76.7".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
115530
115530
|
return match ? match[0] : undefined;
|
|
115531
115531
|
});
|
|
115532
115532
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -115566,7 +115566,7 @@ var init_metadata = __esm(() => {
|
|
|
115566
115566
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
115567
115567
|
isURCodeAction: isEnvTruthy(process.env.UR_CODE_ACTION),
|
|
115568
115568
|
isURAiAuth: isURAISubscriber(),
|
|
115569
|
-
version: "1.76.
|
|
115569
|
+
version: "1.76.7",
|
|
115570
115570
|
versionBase: getVersionBase(),
|
|
115571
115571
|
buildTime: "",
|
|
115572
115572
|
deploymentEnvironment: env2.detectDeploymentEnvironment(),
|
|
@@ -116236,7 +116236,7 @@ function initialize1PEventLogging() {
|
|
|
116236
116236
|
const platform2 = getPlatform();
|
|
116237
116237
|
const attributes = {
|
|
116238
116238
|
[import_semantic_conventions4.ATTR_SERVICE_NAME]: "ur",
|
|
116239
|
-
[import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.76.
|
|
116239
|
+
[import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.76.7"
|
|
116240
116240
|
};
|
|
116241
116241
|
if (platform2 === "wsl") {
|
|
116242
116242
|
const wslVersion = getWslVersion();
|
|
@@ -116264,7 +116264,7 @@ function initialize1PEventLogging() {
|
|
|
116264
116264
|
})
|
|
116265
116265
|
]
|
|
116266
116266
|
});
|
|
116267
|
-
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.76.
|
|
116267
|
+
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.76.7");
|
|
116268
116268
|
}
|
|
116269
116269
|
async function reinitialize1PEventLoggingIfConfigChanged() {
|
|
116270
116270
|
if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
|
|
@@ -126045,7 +126045,7 @@ function formatAgentTrendReport(report = buildAgentTrendReport()) {
|
|
|
126045
126045
|
function formatA2AAgentCard(options = {}, pretty = true) {
|
|
126046
126046
|
return JSON.stringify(buildA2AAgentCard(options), null, pretty ? 2 : 0);
|
|
126047
126047
|
}
|
|
126048
|
-
var urVersion = "1.76.
|
|
126048
|
+
var urVersion = "1.76.7", researchSnapshotDate = "2026-07-15", coverage, priorityRoadmap;
|
|
126049
126049
|
var init_trends = __esm(() => {
|
|
126050
126050
|
init_a2aCardSignature();
|
|
126051
126051
|
coverage = [
|
|
@@ -128848,7 +128848,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
128848
128848
|
if (!isAttributionHeaderEnabled()) {
|
|
128849
128849
|
return "";
|
|
128850
128850
|
}
|
|
128851
|
-
const version2 = `${"1.76.
|
|
128851
|
+
const version2 = `${"1.76.7"}.${fingerprint}`;
|
|
128852
128852
|
const entrypoint = process.env.UR_CODE_ENTRYPOINT ?? "unknown";
|
|
128853
128853
|
const cch = "";
|
|
128854
128854
|
const workload = getWorkload();
|
|
@@ -156847,7 +156847,7 @@ var init_projectSafety = __esm(() => {
|
|
|
156847
156847
|
function getInstruments() {
|
|
156848
156848
|
if (instruments)
|
|
156849
156849
|
return instruments;
|
|
156850
|
-
const meter = import_api10.metrics.getMeter("ur-agent.gen_ai", "1.76.
|
|
156850
|
+
const meter = import_api10.metrics.getMeter("ur-agent.gen_ai", "1.76.7");
|
|
156851
156851
|
instruments = {
|
|
156852
156852
|
operationDuration: meter.createHistogram("gen_ai.client.operation.duration", {
|
|
156853
156853
|
description: "GenAI operation duration.",
|
|
@@ -156945,7 +156945,7 @@ function genAiAgentAttributes() {
|
|
|
156945
156945
|
"gen_ai.operation.name": GEN_AI_OPERATION_INVOKE_AGENT,
|
|
156946
156946
|
"gen_ai.provider.name": "ur",
|
|
156947
156947
|
"gen_ai.agent.name": "UR-Nexus",
|
|
156948
|
-
"gen_ai.agent.version": "1.76.
|
|
156948
|
+
"gen_ai.agent.version": "1.76.7"
|
|
156949
156949
|
};
|
|
156950
156950
|
}
|
|
156951
156951
|
function genAiWorkflowAttributes(workflowName) {
|
|
@@ -156961,7 +156961,7 @@ function genAiWorkflowAttributes(workflowName) {
|
|
|
156961
156961
|
function startGenAiWorkflowSpan(workflowName) {
|
|
156962
156962
|
const attributes = genAiWorkflowAttributes(workflowName);
|
|
156963
156963
|
const name = typeof attributes["gen_ai.workflow.name"] === "string" ? `invoke_workflow ${attributes["gen_ai.workflow.name"]}` : GEN_AI_OPERATION_INVOKE_WORKFLOW;
|
|
156964
|
-
return import_api10.trace.getTracer("ur-agent.gen_ai", "1.76.
|
|
156964
|
+
return import_api10.trace.getTracer("ur-agent.gen_ai", "1.76.7").startSpan(name, { kind: import_api10.SpanKind.INTERNAL, attributes });
|
|
156965
156965
|
}
|
|
156966
156966
|
function endGenAiWorkflowSpan(span, options2 = {}) {
|
|
156967
156967
|
try {
|
|
@@ -156999,7 +156999,7 @@ function startGenAiMemorySpan(operation, options2 = {}) {
|
|
|
156999
156999
|
if (options2.recordCount !== undefined && Number.isInteger(options2.recordCount) && options2.recordCount >= 0) {
|
|
157000
157000
|
attributes["gen_ai.memory.record.count"] = options2.recordCount;
|
|
157001
157001
|
}
|
|
157002
|
-
return import_api10.trace.getTracer("ur-agent.gen_ai", "1.76.
|
|
157002
|
+
return import_api10.trace.getTracer("ur-agent.gen_ai", "1.76.7").startSpan(operation, { kind: import_api10.SpanKind.INTERNAL, attributes });
|
|
157003
157003
|
}
|
|
157004
157004
|
function endGenAiMemorySpan(span, options2 = {}) {
|
|
157005
157005
|
try {
|
|
@@ -250647,7 +250647,7 @@ function getTelemetryAttributes() {
|
|
|
250647
250647
|
attributes["session.id"] = sessionId;
|
|
250648
250648
|
}
|
|
250649
250649
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
250650
|
-
attributes["app.version"] = "1.76.
|
|
250650
|
+
attributes["app.version"] = "1.76.7";
|
|
250651
250651
|
}
|
|
250652
250652
|
const oauthAccount = getOauthAccountInfo();
|
|
250653
250653
|
if (oauthAccount) {
|
|
@@ -297131,7 +297131,7 @@ function getInstallationEnv() {
|
|
|
297131
297131
|
return;
|
|
297132
297132
|
}
|
|
297133
297133
|
function getURCodeVersion() {
|
|
297134
|
-
return "1.76.
|
|
297134
|
+
return "1.76.7";
|
|
297135
297135
|
}
|
|
297136
297136
|
async function getInstalledVSCodeExtensionVersion(command) {
|
|
297137
297137
|
const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
|
|
@@ -304462,7 +304462,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
304462
304462
|
const client2 = new Client({
|
|
304463
304463
|
name: "ur",
|
|
304464
304464
|
title: "UR",
|
|
304465
|
-
version: "1.76.
|
|
304465
|
+
version: "1.76.7",
|
|
304466
304466
|
description: "UR-Nexus autonomous engineering workflow engine",
|
|
304467
304467
|
websiteUrl: PRODUCT_URL
|
|
304468
304468
|
}, {
|
|
@@ -304822,7 +304822,7 @@ var init_client5 = __esm(() => {
|
|
|
304822
304822
|
const client2 = new Client({
|
|
304823
304823
|
name: "ur",
|
|
304824
304824
|
title: "UR",
|
|
304825
|
-
version: "1.76.
|
|
304825
|
+
version: "1.76.7",
|
|
304826
304826
|
description: "UR-Nexus autonomous engineering workflow engine",
|
|
304827
304827
|
websiteUrl: PRODUCT_URL
|
|
304828
304828
|
}, {
|
|
@@ -317375,7 +317375,7 @@ async function createRuntime() {
|
|
|
317375
317375
|
bootstrapTelemetry();
|
|
317376
317376
|
const resource = defaultResource().merge(detectResources({ detectors: [envDetector] })).merge(resourceFromAttributes({
|
|
317377
317377
|
[import_semantic_conventions7.ATTR_SERVICE_NAME]: "ur-agent",
|
|
317378
|
-
[import_semantic_conventions7.ATTR_SERVICE_VERSION]: "1.76.
|
|
317378
|
+
[import_semantic_conventions7.ATTR_SERVICE_VERSION]: "1.76.7"
|
|
317379
317379
|
}));
|
|
317380
317380
|
const tracerProvider = exporters.traces.length > 0 ? new BasicTracerProvider({
|
|
317381
317381
|
resource,
|
|
@@ -317408,11 +317408,11 @@ async function createRuntime() {
|
|
|
317408
317408
|
setMeterProvider(meterProvider);
|
|
317409
317409
|
setLoggerProvider(loggerProvider);
|
|
317410
317410
|
if (meterProvider) {
|
|
317411
|
-
const meter = meterProvider.getMeter("ur-agent", "1.76.
|
|
317411
|
+
const meter = meterProvider.getMeter("ur-agent", "1.76.7");
|
|
317412
317412
|
setMeter(meter, (name, options2) => meter.createCounter(name, options2));
|
|
317413
317413
|
}
|
|
317414
317414
|
if (loggerProvider) {
|
|
317415
|
-
setEventLogger(loggerProvider.getLogger("ur-agent.events", "1.76.
|
|
317415
|
+
setEventLogger(loggerProvider.getLogger("ur-agent.events", "1.76.7"));
|
|
317416
317416
|
}
|
|
317417
317417
|
if (!cleanupRegistered2) {
|
|
317418
317418
|
cleanupRegistered2 = true;
|
|
@@ -318074,9 +318074,9 @@ async function assertMinVersion() {
|
|
|
318074
318074
|
if (false) {}
|
|
318075
318075
|
try {
|
|
318076
318076
|
const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
|
|
318077
|
-
if (versionConfig.minVersion && lt("1.76.
|
|
318077
|
+
if (versionConfig.minVersion && lt("1.76.7", versionConfig.minVersion)) {
|
|
318078
318078
|
console.error(`
|
|
318079
|
-
It looks like your version of UR (${"1.76.
|
|
318079
|
+
It looks like your version of UR (${"1.76.7"}) needs an update.
|
|
318080
318080
|
A newer version (${versionConfig.minVersion} or higher) is required to continue.
|
|
318081
318081
|
|
|
318082
318082
|
To update, please run:
|
|
@@ -318292,7 +318292,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
318292
318292
|
logError2(new AutoUpdaterError("Another process is currently installing an update"));
|
|
318293
318293
|
logEvent("tengu_auto_updater_lock_contention", {
|
|
318294
318294
|
pid: process.pid,
|
|
318295
|
-
currentVersion: "1.76.
|
|
318295
|
+
currentVersion: "1.76.7"
|
|
318296
318296
|
});
|
|
318297
318297
|
return "in_progress";
|
|
318298
318298
|
}
|
|
@@ -318301,7 +318301,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
318301
318301
|
if (!env2.isRunningWithBun() && env2.isNpmFromWindowsPath()) {
|
|
318302
318302
|
logError2(new Error("Windows NPM detected in WSL environment"));
|
|
318303
318303
|
logEvent("tengu_auto_updater_windows_npm_in_wsl", {
|
|
318304
|
-
currentVersion: "1.76.
|
|
318304
|
+
currentVersion: "1.76.7"
|
|
318305
318305
|
});
|
|
318306
318306
|
console.error(`
|
|
318307
318307
|
Error: Windows NPM detected in WSL
|
|
@@ -318836,7 +318836,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
318836
318836
|
}
|
|
318837
318837
|
async function getDoctorDiagnostic() {
|
|
318838
318838
|
const installationType = await getCurrentInstallationType();
|
|
318839
|
-
const version2 = typeof MACRO !== "undefined" ? "1.76.
|
|
318839
|
+
const version2 = typeof MACRO !== "undefined" ? "1.76.7" : "unknown";
|
|
318840
318840
|
const installationPath = await getInstallationPath();
|
|
318841
318841
|
const invokedBinary = getInvokedBinary();
|
|
318842
318842
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -319771,8 +319771,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
319771
319771
|
const maxVersion = await getMaxVersion();
|
|
319772
319772
|
if (maxVersion && gt(version2, maxVersion)) {
|
|
319773
319773
|
logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`);
|
|
319774
|
-
if (gte("1.76.
|
|
319775
|
-
logForDebugging(`Native installer: current version ${"1.76.
|
|
319774
|
+
if (gte("1.76.7", maxVersion)) {
|
|
319775
|
+
logForDebugging(`Native installer: current version ${"1.76.7"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
319776
319776
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
319777
319777
|
latency_ms: Date.now() - startTime,
|
|
319778
319778
|
max_version: maxVersion,
|
|
@@ -319783,7 +319783,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
319783
319783
|
version2 = maxVersion;
|
|
319784
319784
|
}
|
|
319785
319785
|
}
|
|
319786
|
-
if (!forceReinstall && version2 === "1.76.
|
|
319786
|
+
if (!forceReinstall && version2 === "1.76.7" && await versionIsAvailable(version2) && await isPossibleURBinary(executablePath)) {
|
|
319787
319787
|
logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
|
|
319788
319788
|
logEvent("tengu_native_update_complete", {
|
|
319789
319789
|
latency_ms: Date.now() - startTime,
|
|
@@ -389358,7 +389358,7 @@ function isAnyTracingEnabled() {
|
|
|
389358
389358
|
return isTelemetryEnabled() || isEnhancedTelemetryEnabled() || isBetaTracingEnabled();
|
|
389359
389359
|
}
|
|
389360
389360
|
function getTracer() {
|
|
389361
|
-
return import_api39.trace.getTracer("ur-agent.gen_ai", "1.76.
|
|
389361
|
+
return import_api39.trace.getTracer("ur-agent.gen_ai", "1.76.7");
|
|
389362
389362
|
}
|
|
389363
389363
|
function createSpanAttributes(spanType, customAttributes = {}) {
|
|
389364
389364
|
const baseAttributes = getTelemetryAttributes();
|
|
@@ -419527,7 +419527,7 @@ function Feedback({
|
|
|
419527
419527
|
platform: env2.platform,
|
|
419528
419528
|
gitRepo: envInfo.isGit,
|
|
419529
419529
|
terminal: env2.terminal,
|
|
419530
|
-
version: "1.76.
|
|
419530
|
+
version: "1.76.7",
|
|
419531
419531
|
transcript: normalizeMessagesForAPI(messages),
|
|
419532
419532
|
errors: sanitizedErrors,
|
|
419533
419533
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -419719,7 +419719,7 @@ function Feedback({
|
|
|
419719
419719
|
", ",
|
|
419720
419720
|
env2.terminal,
|
|
419721
419721
|
", v",
|
|
419722
|
-
"1.76.
|
|
419722
|
+
"1.76.7"
|
|
419723
419723
|
]
|
|
419724
419724
|
}, undefined, true, undefined, this)
|
|
419725
419725
|
]
|
|
@@ -419825,7 +419825,7 @@ ${sanitizedDescription}
|
|
|
419825
419825
|
` + `**Environment Info**
|
|
419826
419826
|
` + `- Platform: ${env2.platform}
|
|
419827
419827
|
` + `- Terminal: ${env2.terminal}
|
|
419828
|
-
` + `- Version: ${"1.76.
|
|
419828
|
+
` + `- Version: ${"1.76.7"}
|
|
419829
419829
|
` + `- Feedback ID: ${feedbackId}
|
|
419830
419830
|
` + `
|
|
419831
419831
|
**Errors**
|
|
@@ -422935,7 +422935,7 @@ function buildPrimarySection() {
|
|
|
422935
422935
|
}, undefined, false, undefined, this);
|
|
422936
422936
|
return [{
|
|
422937
422937
|
label: "Version",
|
|
422938
|
-
value: "1.76.
|
|
422938
|
+
value: "1.76.7"
|
|
422939
422939
|
}, {
|
|
422940
422940
|
label: "Session name",
|
|
422941
422941
|
value: nameValue
|
|
@@ -426317,7 +426317,7 @@ function Config({
|
|
|
426317
426317
|
}
|
|
426318
426318
|
}, undefined, false, undefined, this)
|
|
426319
426319
|
}, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime179.jsxDEV(ChannelDowngradeDialog, {
|
|
426320
|
-
currentVersion: "1.76.
|
|
426320
|
+
currentVersion: "1.76.7",
|
|
426321
426321
|
onChoice: (choice) => {
|
|
426322
426322
|
setShowSubmenu(null);
|
|
426323
426323
|
setTabsHidden(false);
|
|
@@ -426329,7 +426329,7 @@ function Config({
|
|
|
426329
426329
|
autoUpdatesChannel: "stable"
|
|
426330
426330
|
};
|
|
426331
426331
|
if (choice === "stay") {
|
|
426332
|
-
newSettings.minimumVersion = "1.76.
|
|
426332
|
+
newSettings.minimumVersion = "1.76.7";
|
|
426333
426333
|
}
|
|
426334
426334
|
updateSettingsForSource("userSettings", newSettings);
|
|
426335
426335
|
setSettingsData((prev_27) => ({
|
|
@@ -434393,7 +434393,7 @@ function HelpV2(t0) {
|
|
|
434393
434393
|
let t6;
|
|
434394
434394
|
if ($2[31] !== tabs) {
|
|
434395
434395
|
t6 = /* @__PURE__ */ jsx_dev_runtime206.jsxDEV(Tabs, {
|
|
434396
|
-
title: `UR v${"1.76.
|
|
434396
|
+
title: `UR v${"1.76.7"}`,
|
|
434397
434397
|
color: "professionalBlue",
|
|
434398
434398
|
defaultTab: "general",
|
|
434399
434399
|
children: tabs
|
|
@@ -435326,7 +435326,7 @@ function buildToolUseContext(tools, readFileStateCache, toolPermissionContext, a
|
|
|
435326
435326
|
async function handleInitialize(options2) {
|
|
435327
435327
|
return {
|
|
435328
435328
|
name: "UR",
|
|
435329
|
-
version: "1.76.
|
|
435329
|
+
version: "1.76.7",
|
|
435330
435330
|
protocolVersion: "0.1.0",
|
|
435331
435331
|
workspaceRoot: options2.cwd,
|
|
435332
435332
|
capabilities: {
|
|
@@ -452434,7 +452434,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
452434
452434
|
return [];
|
|
452435
452435
|
}
|
|
452436
452436
|
}
|
|
452437
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.76.
|
|
452437
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.76.7") {
|
|
452438
452438
|
if (process.env.USER_TYPE === "ant") {
|
|
452439
452439
|
const changelog = "";
|
|
452440
452440
|
if (changelog) {
|
|
@@ -452461,7 +452461,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.76.4")
|
|
|
452461
452461
|
releaseNotes
|
|
452462
452462
|
};
|
|
452463
452463
|
}
|
|
452464
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.76.
|
|
452464
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.76.7") {
|
|
452465
452465
|
if (process.env.USER_TYPE === "ant") {
|
|
452466
452466
|
const changelog = "";
|
|
452467
452467
|
if (changelog) {
|
|
@@ -455327,7 +455327,7 @@ function getRecentActivitySync() {
|
|
|
455327
455327
|
return cachedActivity;
|
|
455328
455328
|
}
|
|
455329
455329
|
function getLogoDisplayData() {
|
|
455330
|
-
const version2 = process.env.DEMO_VERSION ?? "1.76.
|
|
455330
|
+
const version2 = process.env.DEMO_VERSION ?? "1.76.7";
|
|
455331
455331
|
const serverUrl = getDirectConnectServerUrl();
|
|
455332
455332
|
const displayPath = process.env.DEMO_VERSION ? "/code/ur" : getDisplayPath(getCwd());
|
|
455333
455333
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -456194,7 +456194,7 @@ function LogoV2() {
|
|
|
456194
456194
|
if ($2[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
456195
456195
|
t2 = () => {
|
|
456196
456196
|
const currentConfig2 = getGlobalConfig();
|
|
456197
|
-
if (currentConfig2.lastReleaseNotesSeen === "1.76.
|
|
456197
|
+
if (currentConfig2.lastReleaseNotesSeen === "1.76.7") {
|
|
456198
456198
|
return;
|
|
456199
456199
|
}
|
|
456200
456200
|
saveGlobalConfig(_temp325);
|
|
@@ -456879,12 +456879,12 @@ function LogoV2() {
|
|
|
456879
456879
|
return t41;
|
|
456880
456880
|
}
|
|
456881
456881
|
function _temp325(current) {
|
|
456882
|
-
if (current.lastReleaseNotesSeen === "1.76.
|
|
456882
|
+
if (current.lastReleaseNotesSeen === "1.76.7") {
|
|
456883
456883
|
return current;
|
|
456884
456884
|
}
|
|
456885
456885
|
return {
|
|
456886
456886
|
...current,
|
|
456887
|
-
lastReleaseNotesSeen: "1.76.
|
|
456887
|
+
lastReleaseNotesSeen: "1.76.7"
|
|
456888
456888
|
};
|
|
456889
456889
|
}
|
|
456890
456890
|
function _temp241(s_0) {
|
|
@@ -473698,7 +473698,7 @@ function compileAgenticCiWorkflow(specName = "default", options2 = {}) {
|
|
|
473698
473698
|
if (spec.name !== specName) {
|
|
473699
473699
|
throw new Error("Agentic CI workflow spec name does not match");
|
|
473700
473700
|
}
|
|
473701
|
-
const packageVersion = options2.packageVersion ?? (typeof MACRO !== "undefined" ? "1.76.
|
|
473701
|
+
const packageVersion = options2.packageVersion ?? (typeof MACRO !== "undefined" ? "1.76.7" : "1.76.7");
|
|
473702
473702
|
if (!/^\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?$/.test(packageVersion)) {
|
|
473703
473703
|
throw new Error("invalid ur-agent package version");
|
|
473704
473704
|
}
|
|
@@ -474691,7 +474691,7 @@ runner; \`ur trigger\` is the inbound parser that decides what to run.
|
|
|
474691
474691
|
path: ".github/workflows/ur.yml",
|
|
474692
474692
|
root: "project",
|
|
474693
474693
|
content: compileAgenticCiWorkflow("default", {
|
|
474694
|
-
packageVersion: typeof MACRO !== "undefined" ? "1.76.
|
|
474694
|
+
packageVersion: typeof MACRO !== "undefined" ? "1.76.7" : "1.76.7"
|
|
474695
474695
|
})
|
|
474696
474696
|
},
|
|
474697
474697
|
{
|
|
@@ -474754,7 +474754,7 @@ function value(tokens, flag) {
|
|
|
474754
474754
|
return index2 >= 0 ? tokens[index2 + 1] : undefined;
|
|
474755
474755
|
}
|
|
474756
474756
|
function cliVersion() {
|
|
474757
|
-
return typeof MACRO !== "undefined" ? "1.76.
|
|
474757
|
+
return typeof MACRO !== "undefined" ? "1.76.7" : "1.76.7";
|
|
474758
474758
|
}
|
|
474759
474759
|
function workflowPath(cwd2) {
|
|
474760
474760
|
return join159(cwd2, ".github", "workflows", "ur-agentic-ci.yml");
|
|
@@ -480610,7 +480610,7 @@ function createAcpStdioApp(deps) {
|
|
|
480610
480610
|
}
|
|
480611
480611
|
},
|
|
480612
480612
|
authMethods: [],
|
|
480613
|
-
agentInfo: { name: "UR-Nexus", version: "1.76.
|
|
480613
|
+
agentInfo: { name: "UR-Nexus", version: "1.76.7" }
|
|
480614
480614
|
})).onRequest("authenticate", () => ({})).onRequest("session/new", async (context6) => {
|
|
480615
480615
|
const result = runtime2.newSession(context6.params.cwd, context6.params.mcpServers, context6.params.additionalDirectories);
|
|
480616
480616
|
await runtime2.announce({
|
|
@@ -480707,7 +480707,7 @@ function createAcpStdioAgent(deps) {
|
|
|
480707
480707
|
}
|
|
480708
480708
|
},
|
|
480709
480709
|
authMethods: [],
|
|
480710
|
-
agentInfo: { name: "UR-Nexus", version: "1.76.
|
|
480710
|
+
agentInfo: { name: "UR-Nexus", version: "1.76.7" }
|
|
480711
480711
|
});
|
|
480712
480712
|
return;
|
|
480713
480713
|
case "authenticate":
|
|
@@ -690159,7 +690159,7 @@ async function captureMemoryDiagnostics(trigger2, dumpNumber = 0) {
|
|
|
690159
690159
|
smapsRollup,
|
|
690160
690160
|
platform: process.platform,
|
|
690161
690161
|
nodeVersion: process.version,
|
|
690162
|
-
ccVersion: "1.76.
|
|
690162
|
+
ccVersion: "1.76.7"
|
|
690163
690163
|
};
|
|
690164
690164
|
}
|
|
690165
690165
|
async function performHeapDump(trigger2 = "manual", dumpNumber = 0) {
|
|
@@ -690739,7 +690739,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
690739
690739
|
var call154 = async () => {
|
|
690740
690740
|
return {
|
|
690741
690741
|
type: "text",
|
|
690742
|
-
value: "1.76.
|
|
690742
|
+
value: "1.76.7"
|
|
690743
690743
|
};
|
|
690744
690744
|
}, version2, version_default;
|
|
690745
690745
|
var init_version = __esm(() => {
|
|
@@ -702006,7 +702006,7 @@ function generateHtmlReport(data, insights) {
|
|
|
702006
702006
|
</html>`;
|
|
702007
702007
|
}
|
|
702008
702008
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
702009
|
-
const version3 = typeof MACRO !== "undefined" ? "1.76.
|
|
702009
|
+
const version3 = typeof MACRO !== "undefined" ? "1.76.7" : "unknown";
|
|
702010
702010
|
const remote_hosts_collected = remoteStats?.hosts.filter((h2) => h2.sessionCount > 0).map((h2) => h2.name);
|
|
702011
702011
|
const facets_summary = {
|
|
702012
702012
|
total: facets.size,
|
|
@@ -706320,7 +706320,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
706320
706320
|
init_settings2();
|
|
706321
706321
|
init_slowOperations();
|
|
706322
706322
|
init_uuid();
|
|
706323
|
-
VERSION7 = typeof MACRO !== "undefined" ? "1.76.
|
|
706323
|
+
VERSION7 = typeof MACRO !== "undefined" ? "1.76.7" : "unknown";
|
|
706324
706324
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
706325
706325
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
706326
706326
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -707535,7 +707535,7 @@ var init_filesystem = __esm(() => {
|
|
|
707535
707535
|
});
|
|
707536
707536
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
707537
707537
|
const nonce = randomBytes20(16).toString("hex");
|
|
707538
|
-
return join232(getURTempDir(), "bundled-skills", "1.76.
|
|
707538
|
+
return join232(getURTempDir(), "bundled-skills", "1.76.7", nonce);
|
|
707539
707539
|
});
|
|
707540
707540
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
707541
707541
|
});
|
|
@@ -713884,7 +713884,7 @@ function computeFingerprint(messageText2, version3) {
|
|
|
713884
713884
|
}
|
|
713885
713885
|
function computeFingerprintFromMessages(messages) {
|
|
713886
713886
|
const firstMessageText = extractFirstMessageText(messages);
|
|
713887
|
-
return computeFingerprint(firstMessageText, "1.76.
|
|
713887
|
+
return computeFingerprint(firstMessageText, "1.76.7");
|
|
713888
713888
|
}
|
|
713889
713889
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
713890
713890
|
var init_fingerprint = () => {};
|
|
@@ -715803,7 +715803,7 @@ async function sideQuery(opts) {
|
|
|
715803
715803
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
715804
715804
|
}
|
|
715805
715805
|
const messageText2 = extractFirstUserMessageText(messages);
|
|
715806
|
-
const fingerprint2 = computeFingerprint(messageText2, "1.76.
|
|
715806
|
+
const fingerprint2 = computeFingerprint(messageText2, "1.76.7");
|
|
715807
715807
|
const attributionHeader = getAttributionHeader(fingerprint2);
|
|
715808
715808
|
const systemBlocks = [
|
|
715809
715809
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -720640,7 +720640,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
720640
720640
|
slash_commands: inputs.commands.filter((c4) => c4.userInvocable !== false).map((c4) => c4.name),
|
|
720641
720641
|
apiKeySource: getURHQApiKeyWithSource().source,
|
|
720642
720642
|
betas: getSdkBetas(),
|
|
720643
|
-
ur_version: "1.76.
|
|
720643
|
+
ur_version: "1.76.7",
|
|
720644
720644
|
output_style: outputStyle2,
|
|
720645
720645
|
agents: inputs.agents.map((agent2) => agent2.agentType),
|
|
720646
720646
|
skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill2) => skill2.name),
|
|
@@ -734512,7 +734512,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
734512
734512
|
function getSemverPart(version3) {
|
|
734513
734513
|
return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
|
|
734514
734514
|
}
|
|
734515
|
-
function useUpdateNotification(updatedVersion, initialVersion = "1.76.
|
|
734515
|
+
function useUpdateNotification(updatedVersion, initialVersion = "1.76.7") {
|
|
734516
734516
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react223.useState(() => getSemverPart(initialVersion));
|
|
734517
734517
|
if (!updatedVersion) {
|
|
734518
734518
|
return null;
|
|
@@ -734561,7 +734561,7 @@ function AutoUpdater({
|
|
|
734561
734561
|
return;
|
|
734562
734562
|
}
|
|
734563
734563
|
if (false) {}
|
|
734564
|
-
const currentVersion = "1.76.
|
|
734564
|
+
const currentVersion = "1.76.7";
|
|
734565
734565
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
734566
734566
|
let latestVersion = await getLatestVersion(channel);
|
|
734567
734567
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -734790,12 +734790,12 @@ function NativeAutoUpdater({
|
|
|
734790
734790
|
logEvent("tengu_native_auto_updater_start", {});
|
|
734791
734791
|
try {
|
|
734792
734792
|
const maxVersion = await getMaxVersion();
|
|
734793
|
-
if (maxVersion && gt("1.76.
|
|
734793
|
+
if (maxVersion && gt("1.76.7", maxVersion)) {
|
|
734794
734794
|
const msg = await getMaxVersionMessage();
|
|
734795
734795
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
734796
734796
|
}
|
|
734797
734797
|
const result = await installLatest(channel);
|
|
734798
|
-
const currentVersion = "1.76.
|
|
734798
|
+
const currentVersion = "1.76.7";
|
|
734799
734799
|
const latencyMs = Date.now() - startTime;
|
|
734800
734800
|
if (result.lockFailed) {
|
|
734801
734801
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -734932,17 +734932,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
734932
734932
|
const maxVersion = await getMaxVersion();
|
|
734933
734933
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
734934
734934
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
734935
|
-
if (gte("1.76.
|
|
734936
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.76.
|
|
734935
|
+
if (gte("1.76.7", maxVersion)) {
|
|
734936
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.76.7"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
734937
734937
|
setUpdateAvailable(false);
|
|
734938
734938
|
return;
|
|
734939
734939
|
}
|
|
734940
734940
|
latest = maxVersion;
|
|
734941
734941
|
}
|
|
734942
|
-
const hasUpdate = latest && !gte("1.76.
|
|
734942
|
+
const hasUpdate = latest && !gte("1.76.7", latest) && !shouldSkipVersion(latest);
|
|
734943
734943
|
setUpdateAvailable(!!hasUpdate);
|
|
734944
734944
|
if (hasUpdate) {
|
|
734945
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.76.
|
|
734945
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.76.7"} -> ${latest}`);
|
|
734946
734946
|
}
|
|
734947
734947
|
};
|
|
734948
734948
|
$2[0] = t1;
|
|
@@ -734976,7 +734976,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
734976
734976
|
wrap: "truncate",
|
|
734977
734977
|
children: [
|
|
734978
734978
|
"currentVersion: ",
|
|
734979
|
-
"1.76.
|
|
734979
|
+
"1.76.7"
|
|
734980
734980
|
]
|
|
734981
734981
|
}, undefined, true, undefined, this);
|
|
734982
734982
|
$2[3] = verbose;
|
|
@@ -745776,7 +745776,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
745776
745776
|
project_dir: getOriginalCwd(),
|
|
745777
745777
|
added_dirs: addedDirs
|
|
745778
745778
|
},
|
|
745779
|
-
version: "1.76.
|
|
745779
|
+
version: "1.76.7",
|
|
745780
745780
|
output_style: {
|
|
745781
745781
|
name: outputStyleName
|
|
745782
745782
|
},
|
|
@@ -745911,7 +745911,7 @@ function StatusLineInner({
|
|
|
745911
745911
|
const attention = customStatusError ?? taskAttention;
|
|
745912
745912
|
const terminalSize = React132.useContext(TerminalSizeContext);
|
|
745913
745913
|
const defaultStatusLineText = buildDefaultStatusBar({
|
|
745914
|
-
version: "1.76.
|
|
745914
|
+
version: "1.76.7",
|
|
745915
745915
|
providerLabel: providerRuntime.providerLabel,
|
|
745916
745916
|
authMode: providerRuntime.authLabel,
|
|
745917
745917
|
model: renderModelName(mainLoopModel) || providerRuntime.model || "",
|
|
@@ -758196,7 +758196,7 @@ async function submitTranscriptShare(messages, trigger2, appearanceId) {
|
|
|
758196
758196
|
} catch {}
|
|
758197
758197
|
const data = {
|
|
758198
758198
|
trigger: trigger2,
|
|
758199
|
-
version: "1.76.
|
|
758199
|
+
version: "1.76.7",
|
|
758200
758200
|
platform: process.platform,
|
|
758201
758201
|
transcript,
|
|
758202
758202
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -770570,7 +770570,7 @@ function WelcomeV2() {
|
|
|
770570
770570
|
dimColor: true,
|
|
770571
770571
|
children: [
|
|
770572
770572
|
"v",
|
|
770573
|
-
"1.76.
|
|
770573
|
+
"1.76.7"
|
|
770574
770574
|
]
|
|
770575
770575
|
}, undefined, true, undefined, this)
|
|
770576
770576
|
]
|
|
@@ -771830,7 +771830,7 @@ function completeOnboarding() {
|
|
|
771830
771830
|
saveGlobalConfig((current) => ({
|
|
771831
771831
|
...current,
|
|
771832
771832
|
hasCompletedOnboarding: true,
|
|
771833
|
-
lastOnboardingVersion: "1.76.
|
|
771833
|
+
lastOnboardingVersion: "1.76.7"
|
|
771834
771834
|
}));
|
|
771835
771835
|
}
|
|
771836
771836
|
function showDialog(root2, renderer) {
|
|
@@ -776874,7 +776874,7 @@ function appendToLog(path24, message) {
|
|
|
776874
776874
|
cwd: getFsImplementation().cwd(),
|
|
776875
776875
|
userType: process.env.USER_TYPE,
|
|
776876
776876
|
sessionId: getSessionId(),
|
|
776877
|
-
version: "1.76.
|
|
776877
|
+
version: "1.76.7"
|
|
776878
776878
|
};
|
|
776879
776879
|
getLogWriter(path24).write(messageWithTimestamp);
|
|
776880
776880
|
}
|
|
@@ -781033,8 +781033,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
781033
781033
|
}
|
|
781034
781034
|
async function checkEnvLessBridgeMinVersion() {
|
|
781035
781035
|
const cfg = await getEnvLessBridgeConfig();
|
|
781036
|
-
if (cfg.min_version && lt("1.76.
|
|
781037
|
-
return `Your version of UR (${"1.76.
|
|
781036
|
+
if (cfg.min_version && lt("1.76.7", cfg.min_version)) {
|
|
781037
|
+
return `Your version of UR (${"1.76.7"}) is too old for Remote Control.
|
|
781038
781038
|
Version ${cfg.min_version} or higher is required. Run \`ur update\` to update.`;
|
|
781039
781039
|
}
|
|
781040
781040
|
return null;
|
|
@@ -781508,7 +781508,7 @@ async function initBridgeCore(params) {
|
|
|
781508
781508
|
const rawApi = createBridgeApiClient({
|
|
781509
781509
|
baseUrl,
|
|
781510
781510
|
getAccessToken,
|
|
781511
|
-
runnerVersion: "1.76.
|
|
781511
|
+
runnerVersion: "1.76.7",
|
|
781512
781512
|
onDebug: logForDebugging,
|
|
781513
781513
|
onAuth401,
|
|
781514
781514
|
getTrustedDeviceToken
|
|
@@ -790981,7 +790981,7 @@ function getAgUiCapabilities() {
|
|
|
790981
790981
|
name: "UR-Nexus",
|
|
790982
790982
|
type: "ur-nexus",
|
|
790983
790983
|
description: "Provider-flexible, local-first autonomous engineering workflow agent.",
|
|
790984
|
-
version: "1.76.
|
|
790984
|
+
version: "1.76.7",
|
|
790985
790985
|
provider: "UR",
|
|
790986
790986
|
documentationUrl: "https://github.com/Maitham16/UR/blob/master/docs/AG_UI.md"
|
|
790987
790987
|
},
|
|
@@ -792121,7 +792121,7 @@ function createMCPServer(cwd4, debug2, verbose) {
|
|
|
792121
792121
|
};
|
|
792122
792122
|
const server2 = new Server({
|
|
792123
792123
|
name: "ur-nexus",
|
|
792124
|
-
version: "1.76.
|
|
792124
|
+
version: "1.76.7"
|
|
792125
792125
|
}, {
|
|
792126
792126
|
capabilities: {
|
|
792127
792127
|
tools: {}
|
|
@@ -793279,7 +793279,7 @@ function thrownResponse(error40) {
|
|
|
793279
793279
|
}
|
|
793280
793280
|
async function createUrMcp2026Runtime(options4) {
|
|
793281
793281
|
const server2 = createMCPServer(options4.cwd, options4.debug === true, options4.verbose === true);
|
|
793282
|
-
const client2 = new Client({ name: "ur-mcp-2026-adapter", version: "1.76.
|
|
793282
|
+
const client2 = new Client({ name: "ur-mcp-2026-adapter", version: "1.76.7" }, { capabilities: {} });
|
|
793283
793283
|
const [clientTransport, serverTransport] = createLinkedTransportPair();
|
|
793284
793284
|
try {
|
|
793285
793285
|
await server2.connect(serverTransport);
|
|
@@ -793290,7 +793290,7 @@ async function createUrMcp2026Runtime(options4) {
|
|
|
793290
793290
|
}
|
|
793291
793291
|
const runtime2 = new Mcp2026Runtime({
|
|
793292
793292
|
cwd: options4.cwd,
|
|
793293
|
-
version: "1.76.
|
|
793293
|
+
version: "1.76.7",
|
|
793294
793294
|
backend: {
|
|
793295
793295
|
listTools: async () => {
|
|
793296
793296
|
const listed = await client2.listTools();
|
|
@@ -795431,7 +795431,7 @@ async function update() {
|
|
|
795431
795431
|
logEvent("tengu_update_check", {});
|
|
795432
795432
|
const diagnostic2 = await getDoctorDiagnostic();
|
|
795433
795433
|
const result = await checkUpgradeStatus({
|
|
795434
|
-
currentVersion: "1.76.
|
|
795434
|
+
currentVersion: "1.76.7",
|
|
795435
795435
|
packageName: UR_AGENT_PACKAGE_NAME,
|
|
795436
795436
|
installationType: diagnostic2.installationType,
|
|
795437
795437
|
latestVersion: () => getLatestNpmPackageVersion(UR_AGENT_PACKAGE_NAME)
|
|
@@ -796747,7 +796747,7 @@ ${customInstructions}` : customInstructions;
|
|
|
796747
796747
|
}
|
|
796748
796748
|
}
|
|
796749
796749
|
logForDiagnosticsNoPII("info", "started", {
|
|
796750
|
-
version: "1.76.
|
|
796750
|
+
version: "1.76.7",
|
|
796751
796751
|
is_native_binary: isInBundledMode()
|
|
796752
796752
|
});
|
|
796753
796753
|
registerCleanup(async () => {
|
|
@@ -797533,7 +797533,7 @@ Usage: ur --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
797533
797533
|
pendingHookMessages
|
|
797534
797534
|
}, renderAndRun);
|
|
797535
797535
|
}
|
|
797536
|
-
}).version("1.76.
|
|
797536
|
+
}).version("1.76.7 (UR-Nexus)", "-v, --version", "Output the version number");
|
|
797537
797537
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
797538
797538
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
797539
797539
|
if (canUserConfigureAdvisor()) {
|
|
@@ -798585,7 +798585,7 @@ if (false) {}
|
|
|
798585
798585
|
async function main2() {
|
|
798586
798586
|
const args = process.argv.slice(2);
|
|
798587
798587
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
798588
|
-
console.log(`${"1.76.
|
|
798588
|
+
console.log(`${"1.76.7"} (UR-Nexus)`);
|
|
798589
798589
|
return;
|
|
798590
798590
|
}
|
|
798591
798591
|
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.76.
|
|
48
|
+
<p class="eyebrow">Version 1.76.7</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.76.
|
|
5
|
+
"version": "1.76.7",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED