ur-agent 1.68.7 → 1.68.10
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 +50 -0
- package/dist/cli.js +125 -120
- 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,55 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.68.10
|
|
4
|
+
|
|
5
|
+
- `ToolSearchTool` no longer registers on runtimes where it cannot work. Its
|
|
6
|
+
purpose is fetching schemas for tools whose definitions were deferred, and
|
|
7
|
+
deferral needs the runtime to expand `tool_reference` blocks — an
|
|
8
|
+
Anthropic-native beta shape that no UR runtime supports (UR runs on Ollama,
|
|
9
|
+
OpenAI-compatible servers and vendor CLIs). `isEnabled()` consulted only
|
|
10
|
+
`isToolSearchEnabledOptimistic()`, which reads the mode, and the mode
|
|
11
|
+
defaults to `'tst'` (on). The tool therefore registered on every run: its
|
|
12
|
+
description shipped with each request, and the model was offered a tool that
|
|
13
|
+
could not function, because nothing was ever deferred for it to fetch.
|
|
14
|
+
- Audit note on the surface as a whole: 168 commands, of which 8 touch a
|
|
15
|
+
feature flag that is not compiled in, and in each case the flag gates a
|
|
16
|
+
sub-feature rather than the command. 89 of 91 flags are absent from shipped
|
|
17
|
+
builds. Two of those (`CONTEXT_COLLAPSE`, `REACTIVE_COMPACT`) would have
|
|
18
|
+
failed on the first turn if enabled and were fixed in 1.68.2.
|
|
19
|
+
|
|
20
|
+
## 1.68.9
|
|
21
|
+
|
|
22
|
+
- Narrowed that allowlist entry from `ur.com` to `ur.com/docs`. Replacing a
|
|
23
|
+
docs-only host with a bare domain widened what WebFetch retrieves without
|
|
24
|
+
asking, on a list whose own header warns that broad entries are dangerous
|
|
25
|
+
where a host may serve user-supplied content — and the domain in question
|
|
26
|
+
does not exist yet, so whatever ends up hosted there would have inherited
|
|
27
|
+
that trust. The matcher enforces path-segment boundaries, so `/docs-evil/x`
|
|
28
|
+
does not match. Caught by `apiTool`, which asserted the old entry.
|
|
29
|
+
|
|
30
|
+
## 1.68.8
|
|
31
|
+
|
|
32
|
+
- The bundled `ur-guide` agent no longer answers UR questions out of another
|
|
33
|
+
product's documentation. It instructed the model to fetch
|
|
34
|
+
`https://docs.claude.com/llms.txt` and present it to users as "UR SDK docs"
|
|
35
|
+
and "UR API docs", including the line "Agent SDK docs are part of the UR API
|
|
36
|
+
documentation at the same URL". Its other source, `docs.ur.dev`, was never
|
|
37
|
+
served. Both now resolve to `https://ur.com/docs`.
|
|
38
|
+
- Replaced the remaining 33 `docs.ur.dev` links across MCP help, the security
|
|
39
|
+
dialog, keybindings, settings validation tips, preflight checks and the
|
|
40
|
+
feedback survey. Two sandbox dialogs had been pointing their href at the new
|
|
41
|
+
domain while still displaying the old one.
|
|
42
|
+
- `docs.ur.dev` in the WebFetch preapproved-host allowlist now points at
|
|
43
|
+
ur.com. Changed on its own: it is a hostname the fetch tool trusts, not a
|
|
44
|
+
link.
|
|
45
|
+
- `KNOWN_AGENTS` listed `ur-code-guide`; the registered agent type is
|
|
46
|
+
`ur-guide`. A workflow naming the real agent was warned as unknown, while the
|
|
47
|
+
listed name would have been accepted despite resolving to nothing.
|
|
48
|
+
- Removed a dead `UR_CODE_DOCS_MAP_URL` export from `constants/prompts.ts` —
|
|
49
|
+
a duplicate of the live constant, imported by nothing.
|
|
50
|
+
- Added `test/docsUrlIntegrity.test.ts`, including a check that a link's
|
|
51
|
+
displayed text matches where it actually goes.
|
|
52
|
+
|
|
3
53
|
## 1.68.7
|
|
4
54
|
|
|
5
55
|
- Corrected the ur.ai -> ur.com replacement, which had rewritten identifiers as
|
package/dist/cli.js
CHANGED
|
@@ -75702,7 +75702,7 @@ var init_auth = __esm(() => {
|
|
|
75702
75702
|
|
|
75703
75703
|
// src/utils/userAgent.ts
|
|
75704
75704
|
function getURCodeUserAgent() {
|
|
75705
|
-
return `ur/${"1.68.
|
|
75705
|
+
return `ur/${"1.68.10"}`;
|
|
75706
75706
|
}
|
|
75707
75707
|
|
|
75708
75708
|
// src/utils/workloadContext.ts
|
|
@@ -75724,7 +75724,7 @@ function getUserAgent() {
|
|
|
75724
75724
|
const clientApp = process.env.UR_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}` : "";
|
|
75725
75725
|
const workload = getWorkload();
|
|
75726
75726
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
75727
|
-
return `ur-cli/${"1.68.
|
|
75727
|
+
return `ur-cli/${"1.68.10"} (${process.env.USER_TYPE}, ${process.env.UR_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
75728
75728
|
}
|
|
75729
75729
|
function getMCPUserAgent() {
|
|
75730
75730
|
const parts = [];
|
|
@@ -75738,7 +75738,7 @@ function getMCPUserAgent() {
|
|
|
75738
75738
|
parts.push(`client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}`);
|
|
75739
75739
|
}
|
|
75740
75740
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
75741
|
-
return `ur/${"1.68.
|
|
75741
|
+
return `ur/${"1.68.10"}${suffix}`;
|
|
75742
75742
|
}
|
|
75743
75743
|
function getWebFetchUserAgent() {
|
|
75744
75744
|
return `UR-User (${getURCodeUserAgent()})`;
|
|
@@ -75876,7 +75876,7 @@ var init_user = __esm(() => {
|
|
|
75876
75876
|
deviceId,
|
|
75877
75877
|
sessionId: getSessionId(),
|
|
75878
75878
|
email: getEmail(),
|
|
75879
|
-
appVersion: "1.68.
|
|
75879
|
+
appVersion: "1.68.10",
|
|
75880
75880
|
platform: getHostPlatformForAnalytics(),
|
|
75881
75881
|
organizationUuid,
|
|
75882
75882
|
accountUuid,
|
|
@@ -84076,7 +84076,7 @@ var init_metadata = __esm(() => {
|
|
|
84076
84076
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
84077
84077
|
WHITESPACE_REGEX = /\s+/;
|
|
84078
84078
|
getVersionBase = memoize_default(() => {
|
|
84079
|
-
const match = "1.68.
|
|
84079
|
+
const match = "1.68.10".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
84080
84080
|
return match ? match[0] : undefined;
|
|
84081
84081
|
});
|
|
84082
84082
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -84116,7 +84116,7 @@ var init_metadata = __esm(() => {
|
|
|
84116
84116
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
84117
84117
|
isURCodeAction: isEnvTruthy(process.env.UR_CODE_ACTION),
|
|
84118
84118
|
isURAiAuth: isURAISubscriber(),
|
|
84119
|
-
version: "1.68.
|
|
84119
|
+
version: "1.68.10",
|
|
84120
84120
|
versionBase: getVersionBase(),
|
|
84121
84121
|
buildTime: "",
|
|
84122
84122
|
deploymentEnvironment: env2.detectDeploymentEnvironment(),
|
|
@@ -84786,7 +84786,7 @@ function initialize1PEventLogging() {
|
|
|
84786
84786
|
const platform2 = getPlatform();
|
|
84787
84787
|
const attributes = {
|
|
84788
84788
|
[import_semantic_conventions4.ATTR_SERVICE_NAME]: "ur",
|
|
84789
|
-
[import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.68.
|
|
84789
|
+
[import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.68.10"
|
|
84790
84790
|
};
|
|
84791
84791
|
if (platform2 === "wsl") {
|
|
84792
84792
|
const wslVersion = getWslVersion();
|
|
@@ -84814,7 +84814,7 @@ function initialize1PEventLogging() {
|
|
|
84814
84814
|
})
|
|
84815
84815
|
]
|
|
84816
84816
|
});
|
|
84817
|
-
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.68.
|
|
84817
|
+
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.68.10");
|
|
84818
84818
|
}
|
|
84819
84819
|
async function reinitialize1PEventLoggingIfConfigChanged() {
|
|
84820
84820
|
if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
|
|
@@ -87533,7 +87533,7 @@ function getValidationTip(context3) {
|
|
|
87533
87533
|
}
|
|
87534
87534
|
return tip;
|
|
87535
87535
|
}
|
|
87536
|
-
var DOCUMENTATION_BASE = "https://
|
|
87536
|
+
var DOCUMENTATION_BASE = "https://ur.com/docs", TIP_MATCHERS, PATH_DOC_LINKS;
|
|
87537
87537
|
var init_validationTips = __esm(() => {
|
|
87538
87538
|
TIP_MATCHERS = [
|
|
87539
87539
|
{
|
|
@@ -94702,7 +94702,7 @@ function formatAgentTrendReport(report = buildAgentTrendReport()) {
|
|
|
94702
94702
|
function formatA2AAgentCard(options = {}, pretty = true) {
|
|
94703
94703
|
return JSON.stringify(buildA2AAgentCard(options), null, pretty ? 2 : 0);
|
|
94704
94704
|
}
|
|
94705
|
-
var urVersion = "1.68.
|
|
94705
|
+
var urVersion = "1.68.10", researchSnapshotDate = "2026-07-15", coverage, priorityRoadmap;
|
|
94706
94706
|
var init_trends = __esm(() => {
|
|
94707
94707
|
init_a2aCardSignature();
|
|
94708
94708
|
coverage = [
|
|
@@ -97505,7 +97505,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
97505
97505
|
if (!isAttributionHeaderEnabled()) {
|
|
97506
97506
|
return "";
|
|
97507
97507
|
}
|
|
97508
|
-
const version2 = `${"1.68.
|
|
97508
|
+
const version2 = `${"1.68.10"}.${fingerprint}`;
|
|
97509
97509
|
const entrypoint = process.env.UR_CODE_ENTRYPOINT ?? "unknown";
|
|
97510
97510
|
const cch = "";
|
|
97511
97511
|
const workload = getWorkload();
|
|
@@ -144914,7 +144914,7 @@ function getFeedbackGuideline() {
|
|
|
144914
144914
|
}
|
|
144915
144915
|
return "- When you cannot find an answer or the feature doesn't exist, direct the user to use /feedback to report a feature request or bug";
|
|
144916
144916
|
}
|
|
144917
|
-
var
|
|
144917
|
+
var UR_DOCS_URL = "https://ur.com/docs", UR_CODE_DOCS_MAP_URL, CDP_DOCS_MAP_URL, UR_CODE_GUIDE_AGENT_TYPE = "ur-guide", UR_CODE_GUIDE_AGENT;
|
|
144918
144918
|
var init_urCodeGuideAgent = __esm(() => {
|
|
144919
144919
|
init_prompt3();
|
|
144920
144920
|
init_prompt2();
|
|
@@ -144923,6 +144923,8 @@ var init_urCodeGuideAgent = __esm(() => {
|
|
|
144923
144923
|
init_embeddedTools();
|
|
144924
144924
|
init_settings2();
|
|
144925
144925
|
init_slowOperations();
|
|
144926
|
+
UR_CODE_DOCS_MAP_URL = UR_DOCS_URL;
|
|
144927
|
+
CDP_DOCS_MAP_URL = UR_DOCS_URL;
|
|
144926
144928
|
UR_CODE_GUIDE_AGENT = {
|
|
144927
144929
|
agentType: UR_CODE_GUIDE_AGENT_TYPE,
|
|
144928
144930
|
whenToUse: `Use this agent when the user asks questions ("Can UR...", "Does UR...", "How do I...") about: (1) UR (the CLI tool) - features, hooks, slash commands, MCP servers, settings, IDE integrations, keyboard shortcuts; (2) UR SDK - building custom agents; (3) UR API - API usage, tool use, and SDK usage. **IMPORTANT:** Before spawning a new agent, check if there is already a running or recently completed ur-guide agent that you can continue via ${SEND_MESSAGE_TOOL_NAME}.`,
|
|
@@ -152491,6 +152493,9 @@ var init_ToolSearchTool = __esm(() => {
|
|
|
152491
152493
|
}, (toolName) => toolName);
|
|
152492
152494
|
ToolSearchTool = buildTool({
|
|
152493
152495
|
isEnabled() {
|
|
152496
|
+
if (!supportsToolReferenceExpansion()) {
|
|
152497
|
+
return false;
|
|
152498
|
+
}
|
|
152494
152499
|
return isToolSearchEnabledOptimistic();
|
|
152495
152500
|
},
|
|
152496
152501
|
isConcurrencySafe() {
|
|
@@ -155378,7 +155383,7 @@ var init_projectSafety = __esm(() => {
|
|
|
155378
155383
|
function getInstruments() {
|
|
155379
155384
|
if (instruments)
|
|
155380
155385
|
return instruments;
|
|
155381
|
-
const meter = import_api10.metrics.getMeter("ur-agent.gen_ai", "1.68.
|
|
155386
|
+
const meter = import_api10.metrics.getMeter("ur-agent.gen_ai", "1.68.10");
|
|
155382
155387
|
instruments = {
|
|
155383
155388
|
operationDuration: meter.createHistogram("gen_ai.client.operation.duration", {
|
|
155384
155389
|
description: "GenAI operation duration.",
|
|
@@ -155476,7 +155481,7 @@ function genAiAgentAttributes() {
|
|
|
155476
155481
|
"gen_ai.operation.name": GEN_AI_OPERATION_INVOKE_AGENT,
|
|
155477
155482
|
"gen_ai.provider.name": "ur",
|
|
155478
155483
|
"gen_ai.agent.name": "UR-Nexus",
|
|
155479
|
-
"gen_ai.agent.version": "1.68.
|
|
155484
|
+
"gen_ai.agent.version": "1.68.10"
|
|
155480
155485
|
};
|
|
155481
155486
|
}
|
|
155482
155487
|
function genAiWorkflowAttributes(workflowName) {
|
|
@@ -155492,7 +155497,7 @@ function genAiWorkflowAttributes(workflowName) {
|
|
|
155492
155497
|
function startGenAiWorkflowSpan(workflowName) {
|
|
155493
155498
|
const attributes = genAiWorkflowAttributes(workflowName);
|
|
155494
155499
|
const name = typeof attributes["gen_ai.workflow.name"] === "string" ? `invoke_workflow ${attributes["gen_ai.workflow.name"]}` : GEN_AI_OPERATION_INVOKE_WORKFLOW;
|
|
155495
|
-
return import_api10.trace.getTracer("ur-agent.gen_ai", "1.68.
|
|
155500
|
+
return import_api10.trace.getTracer("ur-agent.gen_ai", "1.68.10").startSpan(name, { kind: import_api10.SpanKind.INTERNAL, attributes });
|
|
155496
155501
|
}
|
|
155497
155502
|
function endGenAiWorkflowSpan(span, options2 = {}) {
|
|
155498
155503
|
try {
|
|
@@ -155530,7 +155535,7 @@ function startGenAiMemorySpan(operation, options2 = {}) {
|
|
|
155530
155535
|
if (options2.recordCount !== undefined && Number.isInteger(options2.recordCount) && options2.recordCount >= 0) {
|
|
155531
155536
|
attributes["gen_ai.memory.record.count"] = options2.recordCount;
|
|
155532
155537
|
}
|
|
155533
|
-
return import_api10.trace.getTracer("ur-agent.gen_ai", "1.68.
|
|
155538
|
+
return import_api10.trace.getTracer("ur-agent.gen_ai", "1.68.10").startSpan(operation, { kind: import_api10.SpanKind.INTERNAL, attributes });
|
|
155534
155539
|
}
|
|
155535
155540
|
function endGenAiMemorySpan(span, options2 = {}) {
|
|
155536
155541
|
try {
|
|
@@ -249013,7 +249018,7 @@ function getTelemetryAttributes() {
|
|
|
249013
249018
|
attributes["session.id"] = sessionId;
|
|
249014
249019
|
}
|
|
249015
249020
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
249016
|
-
attributes["app.version"] = "1.68.
|
|
249021
|
+
attributes["app.version"] = "1.68.10";
|
|
249017
249022
|
}
|
|
249018
249023
|
const oauthAccount = getOauthAccountInfo();
|
|
249019
249024
|
if (oauthAccount) {
|
|
@@ -290680,7 +290685,7 @@ function parseMcpConfig(params) {
|
|
|
290680
290685
|
...filePath && { file: filePath },
|
|
290681
290686
|
path: `mcpServers.${name}`,
|
|
290682
290687
|
message: `Windows requires 'cmd /c' wrapper to execute npx`,
|
|
290683
|
-
suggestion: `Change command to "cmd" with args ["/c", "npx", ...]. See: https://
|
|
290688
|
+
suggestion: `Change command to "cmd" with args ["/c", "npx", ...]. See: https://ur.com/docs/mcp#configure-mcp-servers`,
|
|
290684
290689
|
mcpErrorMetadata: {
|
|
290685
290690
|
scope,
|
|
290686
290691
|
serverName: name,
|
|
@@ -295493,7 +295498,7 @@ function getInstallationEnv() {
|
|
|
295493
295498
|
return;
|
|
295494
295499
|
}
|
|
295495
295500
|
function getURCodeVersion() {
|
|
295496
|
-
return "1.68.
|
|
295501
|
+
return "1.68.10";
|
|
295497
295502
|
}
|
|
295498
295503
|
async function getInstalledVSCodeExtensionVersion(command) {
|
|
295499
295504
|
const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
|
|
@@ -302824,7 +302829,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
302824
302829
|
const client2 = new Client({
|
|
302825
302830
|
name: "ur",
|
|
302826
302831
|
title: "UR",
|
|
302827
|
-
version: "1.68.
|
|
302832
|
+
version: "1.68.10",
|
|
302828
302833
|
description: "UR-Nexus autonomous engineering workflow engine",
|
|
302829
302834
|
websiteUrl: PRODUCT_URL
|
|
302830
302835
|
}, {
|
|
@@ -303184,7 +303189,7 @@ var init_client5 = __esm(() => {
|
|
|
303184
303189
|
const client2 = new Client({
|
|
303185
303190
|
name: "ur",
|
|
303186
303191
|
title: "UR",
|
|
303187
|
-
version: "1.68.
|
|
303192
|
+
version: "1.68.10",
|
|
303188
303193
|
description: "UR-Nexus autonomous engineering workflow engine",
|
|
303189
303194
|
websiteUrl: PRODUCT_URL
|
|
303190
303195
|
}, {
|
|
@@ -315723,7 +315728,7 @@ async function createRuntime() {
|
|
|
315723
315728
|
bootstrapTelemetry();
|
|
315724
315729
|
const resource = defaultResource().merge(detectResources({ detectors: [envDetector] })).merge(resourceFromAttributes({
|
|
315725
315730
|
[import_semantic_conventions7.ATTR_SERVICE_NAME]: "ur-agent",
|
|
315726
|
-
[import_semantic_conventions7.ATTR_SERVICE_VERSION]: "1.68.
|
|
315731
|
+
[import_semantic_conventions7.ATTR_SERVICE_VERSION]: "1.68.10"
|
|
315727
315732
|
}));
|
|
315728
315733
|
const tracerProvider = exporters.traces.length > 0 ? new BasicTracerProvider({
|
|
315729
315734
|
resource,
|
|
@@ -315756,11 +315761,11 @@ async function createRuntime() {
|
|
|
315756
315761
|
setMeterProvider(meterProvider);
|
|
315757
315762
|
setLoggerProvider(loggerProvider);
|
|
315758
315763
|
if (meterProvider) {
|
|
315759
|
-
const meter = meterProvider.getMeter("ur-agent", "1.68.
|
|
315764
|
+
const meter = meterProvider.getMeter("ur-agent", "1.68.10");
|
|
315760
315765
|
setMeter(meter, (name, options2) => meter.createCounter(name, options2));
|
|
315761
315766
|
}
|
|
315762
315767
|
if (loggerProvider) {
|
|
315763
|
-
setEventLogger(loggerProvider.getLogger("ur-agent.events", "1.68.
|
|
315768
|
+
setEventLogger(loggerProvider.getLogger("ur-agent.events", "1.68.10"));
|
|
315764
315769
|
}
|
|
315765
315770
|
if (!cleanupRegistered2) {
|
|
315766
315771
|
cleanupRegistered2 = true;
|
|
@@ -316422,9 +316427,9 @@ async function assertMinVersion() {
|
|
|
316422
316427
|
if (false) {}
|
|
316423
316428
|
try {
|
|
316424
316429
|
const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
|
|
316425
|
-
if (versionConfig.minVersion && lt("1.68.
|
|
316430
|
+
if (versionConfig.minVersion && lt("1.68.10", versionConfig.minVersion)) {
|
|
316426
316431
|
console.error(`
|
|
316427
|
-
It looks like your version of UR (${"1.68.
|
|
316432
|
+
It looks like your version of UR (${"1.68.10"}) needs an update.
|
|
316428
316433
|
A newer version (${versionConfig.minVersion} or higher) is required to continue.
|
|
316429
316434
|
|
|
316430
316435
|
To update, please run:
|
|
@@ -316640,7 +316645,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
316640
316645
|
logError2(new AutoUpdaterError("Another process is currently installing an update"));
|
|
316641
316646
|
logEvent("tengu_auto_updater_lock_contention", {
|
|
316642
316647
|
pid: process.pid,
|
|
316643
|
-
currentVersion: "1.68.
|
|
316648
|
+
currentVersion: "1.68.10"
|
|
316644
316649
|
});
|
|
316645
316650
|
return "in_progress";
|
|
316646
316651
|
}
|
|
@@ -316649,7 +316654,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
316649
316654
|
if (!env2.isRunningWithBun() && env2.isNpmFromWindowsPath()) {
|
|
316650
316655
|
logError2(new Error("Windows NPM detected in WSL environment"));
|
|
316651
316656
|
logEvent("tengu_auto_updater_windows_npm_in_wsl", {
|
|
316652
|
-
currentVersion: "1.68.
|
|
316657
|
+
currentVersion: "1.68.10"
|
|
316653
316658
|
});
|
|
316654
316659
|
console.error(`
|
|
316655
316660
|
Error: Windows NPM detected in WSL
|
|
@@ -317184,7 +317189,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
317184
317189
|
}
|
|
317185
317190
|
async function getDoctorDiagnostic() {
|
|
317186
317191
|
const installationType = await getCurrentInstallationType();
|
|
317187
|
-
const version2 = typeof MACRO !== "undefined" ? "1.68.
|
|
317192
|
+
const version2 = typeof MACRO !== "undefined" ? "1.68.10" : "unknown";
|
|
317188
317193
|
const installationPath = await getInstallationPath();
|
|
317189
317194
|
const invokedBinary = getInvokedBinary();
|
|
317190
317195
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -318119,8 +318124,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
318119
318124
|
const maxVersion = await getMaxVersion();
|
|
318120
318125
|
if (maxVersion && gt(version2, maxVersion)) {
|
|
318121
318126
|
logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`);
|
|
318122
|
-
if (gte("1.68.
|
|
318123
|
-
logForDebugging(`Native installer: current version ${"1.68.
|
|
318127
|
+
if (gte("1.68.10", maxVersion)) {
|
|
318128
|
+
logForDebugging(`Native installer: current version ${"1.68.10"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
318124
318129
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
318125
318130
|
latency_ms: Date.now() - startTime,
|
|
318126
318131
|
max_version: maxVersion,
|
|
@@ -318131,7 +318136,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
318131
318136
|
version2 = maxVersion;
|
|
318132
318137
|
}
|
|
318133
318138
|
}
|
|
318134
|
-
if (!forceReinstall && version2 === "1.68.
|
|
318139
|
+
if (!forceReinstall && version2 === "1.68.10" && await versionIsAvailable(version2) && await isPossibleURBinary(executablePath)) {
|
|
318135
318140
|
logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
|
|
318136
318141
|
logEvent("tengu_native_update_complete", {
|
|
318137
318142
|
latency_ms: Date.now() - startTime,
|
|
@@ -327755,8 +327760,8 @@ function OAuthStatusMessage(t0) {
|
|
|
327755
327760
|
"\xB7 Amazon Bedrock:",
|
|
327756
327761
|
" ",
|
|
327757
327762
|
/* @__PURE__ */ jsx_dev_runtime72.jsxDEV(Link, {
|
|
327758
|
-
url: "https://
|
|
327759
|
-
children: "https://
|
|
327763
|
+
url: "https://ur.com/docs/amazon-bedrock",
|
|
327764
|
+
children: "https://ur.com/docs/amazon-bedrock"
|
|
327760
327765
|
}, undefined, false, undefined, this)
|
|
327761
327766
|
]
|
|
327762
327767
|
}, undefined, true, undefined, this);
|
|
@@ -327771,8 +327776,8 @@ function OAuthStatusMessage(t0) {
|
|
|
327771
327776
|
"\xB7 Microsoft Foundry:",
|
|
327772
327777
|
" ",
|
|
327773
327778
|
/* @__PURE__ */ jsx_dev_runtime72.jsxDEV(Link, {
|
|
327774
|
-
url: "https://
|
|
327775
|
-
children: "https://
|
|
327779
|
+
url: "https://ur.com/docs/microsoft-foundry",
|
|
327780
|
+
children: "https://ur.com/docs/microsoft-foundry"
|
|
327776
327781
|
}, undefined, false, undefined, this)
|
|
327777
327782
|
]
|
|
327778
327783
|
}, undefined, true, undefined, this);
|
|
@@ -327794,8 +327799,8 @@ function OAuthStatusMessage(t0) {
|
|
|
327794
327799
|
"\xB7 Vertex AI:",
|
|
327795
327800
|
" ",
|
|
327796
327801
|
/* @__PURE__ */ jsx_dev_runtime72.jsxDEV(Link, {
|
|
327797
|
-
url: "https://
|
|
327798
|
-
children: "https://
|
|
327802
|
+
url: "https://ur.com/docs/google-vertex-ai",
|
|
327803
|
+
children: "https://ur.com/docs/google-vertex-ai"
|
|
327799
327804
|
}, undefined, false, undefined, this)
|
|
327800
327805
|
]
|
|
327801
327806
|
}, undefined, true, undefined, this)
|
|
@@ -367765,7 +367770,7 @@ function isPreapprovedHost(hostname3, pathname) {
|
|
|
367765
367770
|
var PREAPPROVED_HOSTS, HOSTNAME_ONLY, PATH_PREFIXES;
|
|
367766
367771
|
var init_preapproved = __esm(() => {
|
|
367767
367772
|
PREAPPROVED_HOSTS = new Set([
|
|
367768
|
-
"
|
|
367773
|
+
"ur.com/docs",
|
|
367769
367774
|
"modelcontextprotocol.io",
|
|
367770
367775
|
"github.com/Maitham16",
|
|
367771
367776
|
"agentskills.io",
|
|
@@ -388342,7 +388347,7 @@ function isAnyTracingEnabled() {
|
|
|
388342
388347
|
return isTelemetryEnabled() || isEnhancedTelemetryEnabled() || isBetaTracingEnabled();
|
|
388343
388348
|
}
|
|
388344
388349
|
function getTracer() {
|
|
388345
|
-
return import_api39.trace.getTracer("ur-agent.gen_ai", "1.68.
|
|
388350
|
+
return import_api39.trace.getTracer("ur-agent.gen_ai", "1.68.10");
|
|
388346
388351
|
}
|
|
388347
388352
|
function createSpanAttributes(spanType, customAttributes = {}) {
|
|
388348
388353
|
const baseAttributes = getTelemetryAttributes();
|
|
@@ -419586,7 +419591,7 @@ function Feedback({
|
|
|
419586
419591
|
platform: env2.platform,
|
|
419587
419592
|
gitRepo: envInfo.isGit,
|
|
419588
419593
|
terminal: env2.terminal,
|
|
419589
|
-
version: "1.68.
|
|
419594
|
+
version: "1.68.10",
|
|
419590
419595
|
transcript: normalizeMessagesForAPI(messages),
|
|
419591
419596
|
errors: sanitizedErrors,
|
|
419592
419597
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -419778,7 +419783,7 @@ function Feedback({
|
|
|
419778
419783
|
", ",
|
|
419779
419784
|
env2.terminal,
|
|
419780
419785
|
", v",
|
|
419781
|
-
"1.68.
|
|
419786
|
+
"1.68.10"
|
|
419782
419787
|
]
|
|
419783
419788
|
}, undefined, true, undefined, this)
|
|
419784
419789
|
]
|
|
@@ -419884,7 +419889,7 @@ ${sanitizedDescription}
|
|
|
419884
419889
|
` + `**Environment Info**
|
|
419885
419890
|
` + `- Platform: ${env2.platform}
|
|
419886
419891
|
` + `- Terminal: ${env2.terminal}
|
|
419887
|
-
` + `- Version: ${"1.68.
|
|
419892
|
+
` + `- Version: ${"1.68.10"}
|
|
419888
419893
|
` + `- Feedback ID: ${feedbackId}
|
|
419889
419894
|
` + `
|
|
419890
419895
|
**Errors**
|
|
@@ -422994,7 +422999,7 @@ function buildPrimarySection() {
|
|
|
422994
422999
|
}, undefined, false, undefined, this);
|
|
422995
423000
|
return [{
|
|
422996
423001
|
label: "Version",
|
|
422997
|
-
value: "1.68.
|
|
423002
|
+
value: "1.68.10"
|
|
422998
423003
|
}, {
|
|
422999
423004
|
label: "Session name",
|
|
423000
423005
|
value: nameValue
|
|
@@ -426324,7 +426329,7 @@ function Config({
|
|
|
426324
426329
|
}
|
|
426325
426330
|
}, undefined, false, undefined, this)
|
|
426326
426331
|
}, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime179.jsxDEV(ChannelDowngradeDialog, {
|
|
426327
|
-
currentVersion: "1.68.
|
|
426332
|
+
currentVersion: "1.68.10",
|
|
426328
426333
|
onChoice: (choice) => {
|
|
426329
426334
|
setShowSubmenu(null);
|
|
426330
426335
|
setTabsHidden(false);
|
|
@@ -426336,7 +426341,7 @@ function Config({
|
|
|
426336
426341
|
autoUpdatesChannel: "stable"
|
|
426337
426342
|
};
|
|
426338
426343
|
if (choice === "stay") {
|
|
426339
|
-
newSettings.minimumVersion = "1.68.
|
|
426344
|
+
newSettings.minimumVersion = "1.68.10";
|
|
426340
426345
|
}
|
|
426341
426346
|
updateSettingsForSource("userSettings", newSettings);
|
|
426342
426347
|
setSettingsData((prev_27) => ({
|
|
@@ -430969,8 +430974,8 @@ function McpParsingWarnings() {
|
|
|
430969
430974
|
"For help configuring MCP servers, see:",
|
|
430970
430975
|
" ",
|
|
430971
430976
|
/* @__PURE__ */ jsx_dev_runtime194.jsxDEV(Link, {
|
|
430972
|
-
url: "https://
|
|
430973
|
-
children: "https://
|
|
430977
|
+
url: "https://ur.com/docs/mcp",
|
|
430978
|
+
children: "https://ur.com/docs/mcp"
|
|
430974
430979
|
}, undefined, false, undefined, this)
|
|
430975
430980
|
]
|
|
430976
430981
|
}, undefined, true, undefined, this)
|
|
@@ -433541,7 +433546,7 @@ ${editorHint}`, {
|
|
|
433541
433546
|
children: [
|
|
433542
433547
|
"Learn more: ",
|
|
433543
433548
|
/* @__PURE__ */ jsx_dev_runtime202.jsxDEV(Link, {
|
|
433544
|
-
url: "https://
|
|
433549
|
+
url: "https://ur.com/docs/memory"
|
|
433545
433550
|
}, undefined, false, undefined, this)
|
|
433546
433551
|
]
|
|
433547
433552
|
}, undefined, true, undefined, this)
|
|
@@ -434410,7 +434415,7 @@ function HelpV2(t0) {
|
|
|
434410
434415
|
let t6;
|
|
434411
434416
|
if ($2[31] !== tabs) {
|
|
434412
434417
|
t6 = /* @__PURE__ */ jsx_dev_runtime206.jsxDEV(Tabs, {
|
|
434413
|
-
title: `UR v${"1.68.
|
|
434418
|
+
title: `UR v${"1.68.10"}`,
|
|
434414
434419
|
color: "professionalBlue",
|
|
434415
434420
|
defaultTab: "general",
|
|
434416
434421
|
children: tabs
|
|
@@ -434429,7 +434434,7 @@ function HelpV2(t0) {
|
|
|
434429
434434
|
"For more help:",
|
|
434430
434435
|
" ",
|
|
434431
434436
|
/* @__PURE__ */ jsx_dev_runtime206.jsxDEV(Link, {
|
|
434432
|
-
url: "https://
|
|
434437
|
+
url: "https://ur.com/docs/overview"
|
|
434433
434438
|
}, undefined, false, undefined, this)
|
|
434434
434439
|
]
|
|
434435
434440
|
}, undefined, true, undefined, this)
|
|
@@ -435343,7 +435348,7 @@ function buildToolUseContext(tools, readFileStateCache, toolPermissionContext, a
|
|
|
435343
435348
|
async function handleInitialize(options2) {
|
|
435344
435349
|
return {
|
|
435345
435350
|
name: "UR",
|
|
435346
|
-
version: "1.68.
|
|
435351
|
+
version: "1.68.10",
|
|
435347
435352
|
protocolVersion: "0.1.0",
|
|
435348
435353
|
workspaceRoot: options2.cwd,
|
|
435349
435354
|
capabilities: {
|
|
@@ -437367,7 +437372,7 @@ function generateKeybindingsTemplate() {
|
|
|
437367
437372
|
const bindings = filterReservedShortcuts(DEFAULT_BINDINGS);
|
|
437368
437373
|
const config3 = {
|
|
437369
437374
|
$schema: "https://www.schemastore.org/ur-keybindings.json",
|
|
437370
|
-
$docs: "https://
|
|
437375
|
+
$docs: "https://ur.com/docs/keybindings",
|
|
437371
437376
|
bindings
|
|
437372
437377
|
};
|
|
437373
437378
|
return jsonStringify(config3, null, 2) + `
|
|
@@ -438324,8 +438329,8 @@ function MCPListPanel(t0) {
|
|
|
438324
438329
|
dimColor: true,
|
|
438325
438330
|
children: [
|
|
438326
438331
|
/* @__PURE__ */ jsx_dev_runtime211.jsxDEV(Link, {
|
|
438327
|
-
url: "https://
|
|
438328
|
-
children: "https://
|
|
438332
|
+
url: "https://ur.com/docs/mcp",
|
|
438333
|
+
children: "https://ur.com/docs/mcp"
|
|
438329
438334
|
}, undefined, false, undefined, this),
|
|
438330
438335
|
" ",
|
|
438331
438336
|
"for help"
|
|
@@ -452451,7 +452456,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
452451
452456
|
return [];
|
|
452452
452457
|
}
|
|
452453
452458
|
}
|
|
452454
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.68.
|
|
452459
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.68.10") {
|
|
452455
452460
|
if (process.env.USER_TYPE === "ant") {
|
|
452456
452461
|
const changelog = "";
|
|
452457
452462
|
if (changelog) {
|
|
@@ -452478,7 +452483,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.68.7")
|
|
|
452478
452483
|
releaseNotes
|
|
452479
452484
|
};
|
|
452480
452485
|
}
|
|
452481
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.68.
|
|
452486
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.68.10") {
|
|
452482
452487
|
if (process.env.USER_TYPE === "ant") {
|
|
452483
452488
|
const changelog = "";
|
|
452484
452489
|
if (changelog) {
|
|
@@ -455344,7 +455349,7 @@ function getRecentActivitySync() {
|
|
|
455344
455349
|
return cachedActivity;
|
|
455345
455350
|
}
|
|
455346
455351
|
function getLogoDisplayData() {
|
|
455347
|
-
const version2 = process.env.DEMO_VERSION ?? "1.68.
|
|
455352
|
+
const version2 = process.env.DEMO_VERSION ?? "1.68.10";
|
|
455348
455353
|
const serverUrl = getDirectConnectServerUrl();
|
|
455349
455354
|
const displayPath = process.env.DEMO_VERSION ? "/code/ur" : getDisplayPath(getCwd());
|
|
455350
455355
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -456211,7 +456216,7 @@ function LogoV2() {
|
|
|
456211
456216
|
if ($2[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
456212
456217
|
t2 = () => {
|
|
456213
456218
|
const currentConfig2 = getGlobalConfig();
|
|
456214
|
-
if (currentConfig2.lastReleaseNotesSeen === "1.68.
|
|
456219
|
+
if (currentConfig2.lastReleaseNotesSeen === "1.68.10") {
|
|
456215
456220
|
return;
|
|
456216
456221
|
}
|
|
456217
456222
|
saveGlobalConfig(_temp325);
|
|
@@ -456896,12 +456901,12 @@ function LogoV2() {
|
|
|
456896
456901
|
return t41;
|
|
456897
456902
|
}
|
|
456898
456903
|
function _temp325(current) {
|
|
456899
|
-
if (current.lastReleaseNotesSeen === "1.68.
|
|
456904
|
+
if (current.lastReleaseNotesSeen === "1.68.10") {
|
|
456900
456905
|
return current;
|
|
456901
456906
|
}
|
|
456902
456907
|
return {
|
|
456903
456908
|
...current,
|
|
456904
|
-
lastReleaseNotesSeen: "1.68.
|
|
456909
|
+
lastReleaseNotesSeen: "1.68.10"
|
|
456905
456910
|
};
|
|
456906
456911
|
}
|
|
456907
456912
|
function _temp241(s_0) {
|
|
@@ -464344,7 +464349,7 @@ var init_ultrareviewCommand = __esm(() => {
|
|
|
464344
464349
|
});
|
|
464345
464350
|
|
|
464346
464351
|
// src/commands/review.ts
|
|
464347
|
-
var CCR_TERMS_URL = "https://
|
|
464352
|
+
var CCR_TERMS_URL = "https://ur.com/docs/ur-on-the-web", LOCAL_REVIEW_PROMPT = (args) => `
|
|
464348
464353
|
You are an expert code reviewer. Follow these steps:
|
|
464349
464354
|
|
|
464350
464355
|
1. If no PR number is provided in the args, run \`gh pr list\` to show open PRs
|
|
@@ -465455,7 +465460,7 @@ ${reasons}`,
|
|
|
465455
465460
|
} : prev);
|
|
465456
465461
|
}
|
|
465457
465462
|
}
|
|
465458
|
-
var ULTRAPLAN_TIMEOUT_MS, CCR_TERMS_URL2 = "https://
|
|
465463
|
+
var ULTRAPLAN_TIMEOUT_MS, CCR_TERMS_URL2 = "https://ur.com/docs/ur-on-the-web", _rawPrompt, DEFAULT_INSTRUCTIONS, ULTRAPLAN_INSTRUCTIONS, call40 = async (onDone, context6, args) => {
|
|
465459
465464
|
const blurb = args.trim();
|
|
465460
465465
|
if (!blurb) {
|
|
465461
465466
|
const msg = await launchUltraplan({
|
|
@@ -473847,7 +473852,7 @@ function compileAgenticCiWorkflow(specName = "default", options2 = {}) {
|
|
|
473847
473852
|
if (spec.name !== specName) {
|
|
473848
473853
|
throw new Error("Agentic CI workflow spec name does not match");
|
|
473849
473854
|
}
|
|
473850
|
-
const packageVersion = options2.packageVersion ?? (typeof MACRO !== "undefined" ? "1.68.
|
|
473855
|
+
const packageVersion = options2.packageVersion ?? (typeof MACRO !== "undefined" ? "1.68.10" : "1.68.10");
|
|
473851
473856
|
if (!/^\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?$/.test(packageVersion)) {
|
|
473852
473857
|
throw new Error("invalid ur-agent package version");
|
|
473853
473858
|
}
|
|
@@ -474840,7 +474845,7 @@ runner; \`ur trigger\` is the inbound parser that decides what to run.
|
|
|
474840
474845
|
path: ".github/workflows/ur.yml",
|
|
474841
474846
|
root: "project",
|
|
474842
474847
|
content: compileAgenticCiWorkflow("default", {
|
|
474843
|
-
packageVersion: typeof MACRO !== "undefined" ? "1.68.
|
|
474848
|
+
packageVersion: typeof MACRO !== "undefined" ? "1.68.10" : "1.68.10"
|
|
474844
474849
|
})
|
|
474845
474850
|
},
|
|
474846
474851
|
{
|
|
@@ -474910,7 +474915,7 @@ function value(tokens, flag) {
|
|
|
474910
474915
|
return index2 >= 0 ? tokens[index2 + 1] : undefined;
|
|
474911
474916
|
}
|
|
474912
474917
|
function cliVersion() {
|
|
474913
|
-
return typeof MACRO !== "undefined" ? "1.68.
|
|
474918
|
+
return typeof MACRO !== "undefined" ? "1.68.10" : "1.68.10";
|
|
474914
474919
|
}
|
|
474915
474920
|
function workflowPath(cwd2) {
|
|
474916
474921
|
return join159(cwd2, ".github", "workflows", "ur-agentic-ci.yml");
|
|
@@ -480775,7 +480780,7 @@ function createAcpStdioApp(deps) {
|
|
|
480775
480780
|
}
|
|
480776
480781
|
},
|
|
480777
480782
|
authMethods: [],
|
|
480778
|
-
agentInfo: { name: "UR-Nexus", version: "1.68.
|
|
480783
|
+
agentInfo: { name: "UR-Nexus", version: "1.68.10" }
|
|
480779
480784
|
})).onRequest("authenticate", () => ({})).onRequest("session/new", async (context6) => {
|
|
480780
480785
|
const result = runtime2.newSession(context6.params.cwd, context6.params.mcpServers, context6.params.additionalDirectories);
|
|
480781
480786
|
await runtime2.announce({
|
|
@@ -480872,7 +480877,7 @@ function createAcpStdioAgent(deps) {
|
|
|
480872
480877
|
}
|
|
480873
480878
|
},
|
|
480874
480879
|
authMethods: [],
|
|
480875
|
-
agentInfo: { name: "UR-Nexus", version: "1.68.
|
|
480880
|
+
agentInfo: { name: "UR-Nexus", version: "1.68.10" }
|
|
480876
480881
|
});
|
|
480877
480882
|
return;
|
|
480878
480883
|
case "authenticate":
|
|
@@ -485228,7 +485233,7 @@ var init_workflows = __esm(() => {
|
|
|
485228
485233
|
"explore",
|
|
485229
485234
|
"verification",
|
|
485230
485235
|
"statusline-setup",
|
|
485231
|
-
"ur-
|
|
485236
|
+
"ur-guide",
|
|
485232
485237
|
"reviewer",
|
|
485233
485238
|
"test-runner",
|
|
485234
485239
|
"browser-debugger",
|
|
@@ -682339,8 +682344,8 @@ function FastModePicker(t0) {
|
|
|
682339
682344
|
"Learn more:",
|
|
682340
682345
|
" ",
|
|
682341
682346
|
/* @__PURE__ */ jsx_dev_runtime286.jsxDEV(Link, {
|
|
682342
|
-
url: "https://
|
|
682343
|
-
children: "https://
|
|
682347
|
+
url: "https://ur.com/docs/fast-mode",
|
|
682348
|
+
children: "https://ur.com/docs/fast-mode"
|
|
682344
682349
|
}, undefined, false, undefined, this)
|
|
682345
682350
|
]
|
|
682346
682351
|
}, undefined, true, undefined, this);
|
|
@@ -684085,7 +684090,7 @@ function SelectEventMode(t0) {
|
|
|
684085
684090
|
" This menu is read-only. To add or modify hooks, edit settings.json directly or ask UR.",
|
|
684086
684091
|
" ",
|
|
684087
684092
|
/* @__PURE__ */ jsx_dev_runtime291.jsxDEV(Link, {
|
|
684088
|
-
url: "https://
|
|
684093
|
+
url: "https://ur.com/docs/hooks",
|
|
684089
684094
|
children: "Learn more"
|
|
684090
684095
|
}, undefined, false, undefined, this)
|
|
684091
684096
|
]
|
|
@@ -692032,7 +692037,7 @@ async function captureMemoryDiagnostics(trigger2, dumpNumber = 0) {
|
|
|
692032
692037
|
smapsRollup,
|
|
692033
692038
|
platform: process.platform,
|
|
692034
692039
|
nodeVersion: process.version,
|
|
692035
|
-
ccVersion: "1.68.
|
|
692040
|
+
ccVersion: "1.68.10"
|
|
692036
692041
|
};
|
|
692037
692042
|
}
|
|
692038
692043
|
async function performHeapDump(trigger2 = "manual", dumpNumber = 0) {
|
|
@@ -692612,7 +692617,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
692612
692617
|
var call153 = async () => {
|
|
692613
692618
|
return {
|
|
692614
692619
|
type: "text",
|
|
692615
|
-
value: "1.68.
|
|
692620
|
+
value: "1.68.10"
|
|
692616
692621
|
};
|
|
692617
692622
|
}, version2, version_default;
|
|
692618
692623
|
var init_version = __esm(() => {
|
|
@@ -693328,8 +693333,8 @@ function OverridesSelect(t0) {
|
|
|
693328
693333
|
"Learn more:",
|
|
693329
693334
|
" ",
|
|
693330
693335
|
/* @__PURE__ */ jsx_dev_runtime325.jsxDEV(Link, {
|
|
693331
|
-
url: "https://
|
|
693332
|
-
children: "
|
|
693336
|
+
url: "https://ur.com/docs/sandboxing#configure-sandboxing",
|
|
693337
|
+
children: "ur.com/docs/sandboxing#configure-sandboxing"
|
|
693333
693338
|
}, undefined, false, undefined, this)
|
|
693334
693339
|
]
|
|
693335
693340
|
}, undefined, true, undefined, this)
|
|
@@ -693699,8 +693704,8 @@ function SandboxModeTab(t0) {
|
|
|
693699
693704
|
"Learn more:",
|
|
693700
693705
|
" ",
|
|
693701
693706
|
/* @__PURE__ */ jsx_dev_runtime326.jsxDEV(Link, {
|
|
693702
|
-
url: "https://
|
|
693703
|
-
children: "
|
|
693707
|
+
url: "https://ur.com/docs/sandboxing",
|
|
693708
|
+
children: "ur.com/docs/sandboxing"
|
|
693704
693709
|
}, undefined, false, undefined, this)
|
|
693705
693710
|
]
|
|
693706
693711
|
}, undefined, true, undefined, this)
|
|
@@ -694602,7 +694607,7 @@ function URInChromeMenu(t0) {
|
|
|
694602
694607
|
if ($2[33] === Symbol.for("react.memo_cache_sentinel")) {
|
|
694603
694608
|
t10 = /* @__PURE__ */ jsx_dev_runtime328.jsxDEV(ThemedText, {
|
|
694604
694609
|
dimColor: true,
|
|
694605
|
-
children: "Learn more: https://
|
|
694610
|
+
children: "Learn more: https://ur.com/docs/chrome"
|
|
694606
694611
|
}, undefined, false, undefined, this);
|
|
694607
694612
|
$2[33] = t10;
|
|
694608
694613
|
} else {
|
|
@@ -703792,7 +703797,7 @@ function generateHtmlReport(data, insights) {
|
|
|
703792
703797
|
</html>`;
|
|
703793
703798
|
}
|
|
703794
703799
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
703795
|
-
const version3 = typeof MACRO !== "undefined" ? "1.68.
|
|
703800
|
+
const version3 = typeof MACRO !== "undefined" ? "1.68.10" : "unknown";
|
|
703796
703801
|
const remote_hosts_collected = remoteStats?.hosts.filter((h2) => h2.sessionCount > 0).map((h2) => h2.name);
|
|
703797
703802
|
const facets_summary = {
|
|
703798
703803
|
total: facets.size,
|
|
@@ -708119,7 +708124,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
708119
708124
|
init_settings2();
|
|
708120
708125
|
init_slowOperations();
|
|
708121
708126
|
init_uuid();
|
|
708122
|
-
VERSION7 = typeof MACRO !== "undefined" ? "1.68.
|
|
708127
|
+
VERSION7 = typeof MACRO !== "undefined" ? "1.68.10" : "unknown";
|
|
708123
708128
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
708124
708129
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
708125
708130
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -709336,7 +709341,7 @@ var init_filesystem = __esm(() => {
|
|
|
709336
709341
|
});
|
|
709337
709342
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
709338
709343
|
const nonce = randomBytes20(16).toString("hex");
|
|
709339
|
-
return join230(getURTempDir(), "bundled-skills", "1.68.
|
|
709344
|
+
return join230(getURTempDir(), "bundled-skills", "1.68.10", nonce);
|
|
709340
709345
|
});
|
|
709341
709346
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
709342
709347
|
});
|
|
@@ -715642,7 +715647,7 @@ function computeFingerprint(messageText2, version3) {
|
|
|
715642
715647
|
}
|
|
715643
715648
|
function computeFingerprintFromMessages(messages) {
|
|
715644
715649
|
const firstMessageText = extractFirstMessageText(messages);
|
|
715645
|
-
return computeFingerprint(firstMessageText, "1.68.
|
|
715650
|
+
return computeFingerprint(firstMessageText, "1.68.10");
|
|
715646
715651
|
}
|
|
715647
715652
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
715648
715653
|
var init_fingerprint = () => {};
|
|
@@ -717541,7 +717546,7 @@ async function sideQuery(opts) {
|
|
|
717541
717546
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
717542
717547
|
}
|
|
717543
717548
|
const messageText2 = extractFirstUserMessageText(messages);
|
|
717544
|
-
const fingerprint2 = computeFingerprint(messageText2, "1.68.
|
|
717549
|
+
const fingerprint2 = computeFingerprint(messageText2, "1.68.10");
|
|
717545
717550
|
const attributionHeader = getAttributionHeader(fingerprint2);
|
|
717546
717551
|
const systemBlocks = [
|
|
717547
717552
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -721648,7 +721653,7 @@ function CostThresholdDialog(t0) {
|
|
|
721648
721653
|
children: "Learn more about how to monitor your spending:"
|
|
721649
721654
|
}, undefined, false, undefined, this),
|
|
721650
721655
|
/* @__PURE__ */ jsx_dev_runtime351.jsxDEV(Link, {
|
|
721651
|
-
url: "https://
|
|
721656
|
+
url: "https://ur.com/docs/costs"
|
|
721652
721657
|
}, undefined, false, undefined, this)
|
|
721653
721658
|
]
|
|
721654
721659
|
}, undefined, true, undefined, this);
|
|
@@ -722328,7 +722333,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
722328
722333
|
slash_commands: inputs.commands.filter((c4) => c4.userInvocable !== false).map((c4) => c4.name),
|
|
722329
722334
|
apiKeySource: getURHQApiKeyWithSource().source,
|
|
722330
722335
|
betas: getSdkBetas(),
|
|
722331
|
-
ur_version: "1.68.
|
|
722336
|
+
ur_version: "1.68.10",
|
|
722332
722337
|
output_style: outputStyle2,
|
|
722333
722338
|
agents: inputs.agents.map((agent2) => agent2.agentType),
|
|
722334
722339
|
skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill2) => skill2.name),
|
|
@@ -736279,7 +736284,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
736279
736284
|
function getSemverPart(version3) {
|
|
736280
736285
|
return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
|
|
736281
736286
|
}
|
|
736282
|
-
function useUpdateNotification(updatedVersion, initialVersion = "1.68.
|
|
736287
|
+
function useUpdateNotification(updatedVersion, initialVersion = "1.68.10") {
|
|
736283
736288
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react222.useState(() => getSemverPart(initialVersion));
|
|
736284
736289
|
if (!updatedVersion) {
|
|
736285
736290
|
return null;
|
|
@@ -736328,7 +736333,7 @@ function AutoUpdater({
|
|
|
736328
736333
|
return;
|
|
736329
736334
|
}
|
|
736330
736335
|
if (false) {}
|
|
736331
|
-
const currentVersion = "1.68.
|
|
736336
|
+
const currentVersion = "1.68.10";
|
|
736332
736337
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
736333
736338
|
let latestVersion = await getLatestVersion(channel);
|
|
736334
736339
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -736557,12 +736562,12 @@ function NativeAutoUpdater({
|
|
|
736557
736562
|
logEvent("tengu_native_auto_updater_start", {});
|
|
736558
736563
|
try {
|
|
736559
736564
|
const maxVersion = await getMaxVersion();
|
|
736560
|
-
if (maxVersion && gt("1.68.
|
|
736565
|
+
if (maxVersion && gt("1.68.10", maxVersion)) {
|
|
736561
736566
|
const msg = await getMaxVersionMessage();
|
|
736562
736567
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
736563
736568
|
}
|
|
736564
736569
|
const result = await installLatest(channel);
|
|
736565
|
-
const currentVersion = "1.68.
|
|
736570
|
+
const currentVersion = "1.68.10";
|
|
736566
736571
|
const latencyMs = Date.now() - startTime;
|
|
736567
736572
|
if (result.lockFailed) {
|
|
736568
736573
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -736699,17 +736704,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
736699
736704
|
const maxVersion = await getMaxVersion();
|
|
736700
736705
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
736701
736706
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
736702
|
-
if (gte("1.68.
|
|
736703
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.68.
|
|
736707
|
+
if (gte("1.68.10", maxVersion)) {
|
|
736708
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.68.10"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
736704
736709
|
setUpdateAvailable(false);
|
|
736705
736710
|
return;
|
|
736706
736711
|
}
|
|
736707
736712
|
latest = maxVersion;
|
|
736708
736713
|
}
|
|
736709
|
-
const hasUpdate = latest && !gte("1.68.
|
|
736714
|
+
const hasUpdate = latest && !gte("1.68.10", latest) && !shouldSkipVersion(latest);
|
|
736710
736715
|
setUpdateAvailable(!!hasUpdate);
|
|
736711
736716
|
if (hasUpdate) {
|
|
736712
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.68.
|
|
736717
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.68.10"} -> ${latest}`);
|
|
736713
736718
|
}
|
|
736714
736719
|
};
|
|
736715
736720
|
$2[0] = t1;
|
|
@@ -736743,7 +736748,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
736743
736748
|
wrap: "truncate",
|
|
736744
736749
|
children: [
|
|
736745
736750
|
"currentVersion: ",
|
|
736746
|
-
"1.68.
|
|
736751
|
+
"1.68.10"
|
|
736747
736752
|
]
|
|
736748
736753
|
}, undefined, true, undefined, this);
|
|
736749
736754
|
$2[3] = verbose;
|
|
@@ -747453,7 +747458,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
747453
747458
|
project_dir: getOriginalCwd(),
|
|
747454
747459
|
added_dirs: addedDirs
|
|
747455
747460
|
},
|
|
747456
|
-
version: "1.68.
|
|
747461
|
+
version: "1.68.10",
|
|
747457
747462
|
output_style: {
|
|
747458
747463
|
name: outputStyleName
|
|
747459
747464
|
},
|
|
@@ -747532,7 +747537,7 @@ function StatusLineInner({
|
|
|
747532
747537
|
const taskRunningCount = countActiveBackgroundTasks(taskValues);
|
|
747533
747538
|
const agentRunningCount = countActiveForegroundAgents(taskValues);
|
|
747534
747539
|
const defaultStatusLineText = buildDefaultStatusBar({
|
|
747535
|
-
version: "1.68.
|
|
747540
|
+
version: "1.68.10",
|
|
747536
747541
|
providerLabel: providerRuntime.providerLabel,
|
|
747537
747542
|
authMode: providerRuntime.authLabel,
|
|
747538
747543
|
model: renderModelName(mainLoopModel) || providerRuntime.model || "",
|
|
@@ -759713,7 +759718,7 @@ async function submitTranscriptShare(messages, trigger2, appearanceId) {
|
|
|
759713
759718
|
} catch {}
|
|
759714
759719
|
const data = {
|
|
759715
759720
|
trigger: trigger2,
|
|
759716
|
-
version: "1.68.
|
|
759721
|
+
version: "1.68.10",
|
|
759717
759722
|
platform: process.platform,
|
|
759718
759723
|
transcript,
|
|
759719
759724
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -760531,7 +760536,7 @@ function TranscriptSharePrompt(t0) {
|
|
|
760531
760536
|
marginLeft: 2,
|
|
760532
760537
|
children: /* @__PURE__ */ jsx_dev_runtime434.jsxDEV(ThemedText, {
|
|
760533
760538
|
dimColor: true,
|
|
760534
|
-
children: "Learn more: https://
|
|
760539
|
+
children: "Learn more: https://ur.com/docs/data-usage#session-quality-surveys"
|
|
760535
760540
|
}, undefined, false, undefined, this)
|
|
760536
760541
|
}, undefined, false, undefined, this);
|
|
760537
760542
|
$2[7] = t4;
|
|
@@ -771195,7 +771200,7 @@ function MCPServerDialogCopy() {
|
|
|
771195
771200
|
"MCP servers may execute code or access system resources. All tool calls require approval. Learn more in the",
|
|
771196
771201
|
" ",
|
|
771197
771202
|
/* @__PURE__ */ jsx_dev_runtime457.jsxDEV(Link, {
|
|
771198
|
-
url: "https://
|
|
771203
|
+
url: "https://ur.com/docs/mcp",
|
|
771199
771204
|
children: "MCP documentation"
|
|
771200
771205
|
}, undefined, false, undefined, this),
|
|
771201
771206
|
"."
|
|
@@ -771847,7 +771852,7 @@ function PreflightStep(t0) {
|
|
|
771847
771852
|
}, undefined, false, undefined, this),
|
|
771848
771853
|
/* @__PURE__ */ jsx_dev_runtime461.jsxDEV(ThemedText, {
|
|
771849
771854
|
color: "suggestion",
|
|
771850
|
-
children: "See https://
|
|
771855
|
+
children: "See https://ur.com/docs/network-config"
|
|
771851
771856
|
}, undefined, false, undefined, this)
|
|
771852
771857
|
]
|
|
771853
771858
|
}, undefined, true, undefined, this) : /* @__PURE__ */ jsx_dev_runtime461.jsxDEV(ThemedBox_default, {
|
|
@@ -772081,7 +772086,7 @@ function WelcomeV2() {
|
|
|
772081
772086
|
dimColor: true,
|
|
772082
772087
|
children: [
|
|
772083
772088
|
"v",
|
|
772084
|
-
"1.68.
|
|
772089
|
+
"1.68.10"
|
|
772085
772090
|
]
|
|
772086
772091
|
}, undefined, true, undefined, this)
|
|
772087
772092
|
]
|
|
@@ -772331,7 +772336,7 @@ function Onboarding({
|
|
|
772331
772336
|
"For more details see:",
|
|
772332
772337
|
/* @__PURE__ */ jsx_dev_runtime466.jsxDEV(Newline, {}, undefined, false, undefined, this),
|
|
772333
772338
|
/* @__PURE__ */ jsx_dev_runtime466.jsxDEV(Link, {
|
|
772334
|
-
url: "https://
|
|
772339
|
+
url: "https://ur.com/docs/security"
|
|
772335
772340
|
}, undefined, false, undefined, this)
|
|
772336
772341
|
]
|
|
772337
772342
|
}, undefined, true, undefined, this)
|
|
@@ -772905,7 +772910,7 @@ function TrustDialog(t0) {
|
|
|
772905
772910
|
t19 = /* @__PURE__ */ jsx_dev_runtime467.jsxDEV(ThemedText, {
|
|
772906
772911
|
dimColor: true,
|
|
772907
772912
|
children: /* @__PURE__ */ jsx_dev_runtime467.jsxDEV(Link, {
|
|
772908
|
-
url: "https://
|
|
772913
|
+
url: "https://ur.com/docs/security",
|
|
772909
772914
|
children: "Security guide"
|
|
772910
772915
|
}, undefined, false, undefined, this)
|
|
772911
772916
|
}, undefined, false, undefined, this);
|
|
@@ -773090,7 +773095,7 @@ function BypassPermissionsModeDialog(t0) {
|
|
|
773090
773095
|
children: "By proceeding, you accept all responsibility for actions taken while running in Bypass Permissions mode."
|
|
773091
773096
|
}, undefined, false, undefined, this),
|
|
773092
773097
|
/* @__PURE__ */ jsx_dev_runtime468.jsxDEV(Link, {
|
|
773093
|
-
url: "https://
|
|
773098
|
+
url: "https://ur.com/docs/security"
|
|
773094
773099
|
}, undefined, false, undefined, this)
|
|
773095
773100
|
]
|
|
773096
773101
|
}, undefined, true, undefined, this);
|
|
@@ -773276,7 +773281,7 @@ function URInChromeOnboarding(t0) {
|
|
|
773276
773281
|
" ",
|
|
773277
773282
|
"or visit ",
|
|
773278
773283
|
/* @__PURE__ */ jsx_dev_runtime469.jsxDEV(Link, {
|
|
773279
|
-
url: "https://
|
|
773284
|
+
url: "https://ur.com/docs/chrome"
|
|
773280
773285
|
}, undefined, false, undefined, this)
|
|
773281
773286
|
]
|
|
773282
773287
|
}, undefined, true, undefined, this);
|
|
@@ -773341,7 +773346,7 @@ function completeOnboarding() {
|
|
|
773341
773346
|
saveGlobalConfig((current) => ({
|
|
773342
773347
|
...current,
|
|
773343
773348
|
hasCompletedOnboarding: true,
|
|
773344
|
-
lastOnboardingVersion: "1.68.
|
|
773349
|
+
lastOnboardingVersion: "1.68.10"
|
|
773345
773350
|
}));
|
|
773346
773351
|
}
|
|
773347
773352
|
function showDialog(root2, renderer) {
|
|
@@ -776025,7 +776030,7 @@ var init_keybindings3 = __esm(() => {
|
|
|
776025
776030
|
init_bundledSkills();
|
|
776026
776031
|
FILE_FORMAT_EXAMPLE = {
|
|
776027
776032
|
$schema: "https://www.schemastore.org/ur-keybindings.json",
|
|
776028
|
-
$docs: "https://
|
|
776033
|
+
$docs: "https://ur.com/docs/keybindings",
|
|
776029
776034
|
bindings: [
|
|
776030
776035
|
{
|
|
776031
776036
|
context: "Chat",
|
|
@@ -778385,7 +778390,7 @@ function appendToLog(path24, message) {
|
|
|
778385
778390
|
cwd: getFsImplementation().cwd(),
|
|
778386
778391
|
userType: process.env.USER_TYPE,
|
|
778387
778392
|
sessionId: getSessionId(),
|
|
778388
|
-
version: "1.68.
|
|
778393
|
+
version: "1.68.10"
|
|
778389
778394
|
};
|
|
778390
778395
|
getLogWriter(path24).write(messageWithTimestamp);
|
|
778391
778396
|
}
|
|
@@ -782549,8 +782554,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
782549
782554
|
}
|
|
782550
782555
|
async function checkEnvLessBridgeMinVersion() {
|
|
782551
782556
|
const cfg = await getEnvLessBridgeConfig();
|
|
782552
|
-
if (cfg.min_version && lt("1.68.
|
|
782553
|
-
return `Your version of UR (${"1.68.
|
|
782557
|
+
if (cfg.min_version && lt("1.68.10", cfg.min_version)) {
|
|
782558
|
+
return `Your version of UR (${"1.68.10"}) is too old for Remote Control.
|
|
782554
782559
|
Version ${cfg.min_version} or higher is required. Run \`ur update\` to update.`;
|
|
782555
782560
|
}
|
|
782556
782561
|
return null;
|
|
@@ -783024,7 +783029,7 @@ async function initBridgeCore(params) {
|
|
|
783024
783029
|
const rawApi = createBridgeApiClient({
|
|
783025
783030
|
baseUrl,
|
|
783026
783031
|
getAccessToken,
|
|
783027
|
-
runnerVersion: "1.68.
|
|
783032
|
+
runnerVersion: "1.68.10",
|
|
783028
783033
|
onDebug: logForDebugging,
|
|
783029
783034
|
onAuth401,
|
|
783030
783035
|
getTrustedDeviceToken
|
|
@@ -792497,7 +792502,7 @@ function getAgUiCapabilities() {
|
|
|
792497
792502
|
name: "UR-Nexus",
|
|
792498
792503
|
type: "ur-nexus",
|
|
792499
792504
|
description: "Provider-flexible, local-first autonomous engineering workflow agent.",
|
|
792500
|
-
version: "1.68.
|
|
792505
|
+
version: "1.68.10",
|
|
792501
792506
|
provider: "UR",
|
|
792502
792507
|
documentationUrl: "https://github.com/Maitham16/UR/blob/master/docs/AG_UI.md"
|
|
792503
792508
|
},
|
|
@@ -793637,7 +793642,7 @@ function createMCPServer(cwd4, debug2, verbose) {
|
|
|
793637
793642
|
};
|
|
793638
793643
|
const server2 = new Server({
|
|
793639
793644
|
name: "ur-nexus",
|
|
793640
|
-
version: "1.68.
|
|
793645
|
+
version: "1.68.10"
|
|
793641
793646
|
}, {
|
|
793642
793647
|
capabilities: {
|
|
793643
793648
|
tools: {}
|
|
@@ -794795,7 +794800,7 @@ function thrownResponse(error40) {
|
|
|
794795
794800
|
}
|
|
794796
794801
|
async function createUrMcp2026Runtime(options4) {
|
|
794797
794802
|
const server2 = createMCPServer(options4.cwd, options4.debug === true, options4.verbose === true);
|
|
794798
|
-
const client2 = new Client({ name: "ur-mcp-2026-adapter", version: "1.68.
|
|
794803
|
+
const client2 = new Client({ name: "ur-mcp-2026-adapter", version: "1.68.10" }, { capabilities: {} });
|
|
794799
794804
|
const [clientTransport, serverTransport] = createLinkedTransportPair();
|
|
794800
794805
|
try {
|
|
794801
794806
|
await server2.connect(serverTransport);
|
|
@@ -794806,7 +794811,7 @@ async function createUrMcp2026Runtime(options4) {
|
|
|
794806
794811
|
}
|
|
794807
794812
|
const runtime2 = new Mcp2026Runtime({
|
|
794808
794813
|
cwd: options4.cwd,
|
|
794809
|
-
version: "1.68.
|
|
794814
|
+
version: "1.68.10",
|
|
794810
794815
|
backend: {
|
|
794811
794816
|
listTools: async () => {
|
|
794812
794817
|
const listed = await client2.listTools();
|
|
@@ -796939,7 +796944,7 @@ async function update() {
|
|
|
796939
796944
|
logEvent("tengu_update_check", {});
|
|
796940
796945
|
const diagnostic2 = await getDoctorDiagnostic();
|
|
796941
796946
|
const result = await checkUpgradeStatus({
|
|
796942
|
-
currentVersion: "1.68.
|
|
796947
|
+
currentVersion: "1.68.10",
|
|
796943
796948
|
packageName: UR_AGENT_PACKAGE_NAME,
|
|
796944
796949
|
installationType: diagnostic2.installationType,
|
|
796945
796950
|
latestVersion: () => getLatestNpmPackageVersion(UR_AGENT_PACKAGE_NAME)
|
|
@@ -798255,7 +798260,7 @@ ${customInstructions}` : customInstructions;
|
|
|
798255
798260
|
}
|
|
798256
798261
|
}
|
|
798257
798262
|
logForDiagnosticsNoPII("info", "started", {
|
|
798258
|
-
version: "1.68.
|
|
798263
|
+
version: "1.68.10",
|
|
798259
798264
|
is_native_binary: isInBundledMode()
|
|
798260
798265
|
});
|
|
798261
798266
|
registerCleanup(async () => {
|
|
@@ -799041,7 +799046,7 @@ Usage: ur --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
799041
799046
|
pendingHookMessages
|
|
799042
799047
|
}, renderAndRun);
|
|
799043
799048
|
}
|
|
799044
|
-
}).version("1.68.
|
|
799049
|
+
}).version("1.68.10 (UR-Nexus)", "-v, --version", "Output the version number");
|
|
799045
799050
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
799046
799051
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
799047
799052
|
if (canUserConfigureAdvisor()) {
|
|
@@ -800100,7 +800105,7 @@ if (false) {}
|
|
|
800100
800105
|
async function main2() {
|
|
800101
800106
|
const args = process.argv.slice(2);
|
|
800102
800107
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
800103
|
-
console.log(`${"1.68.
|
|
800108
|
+
console.log(`${"1.68.10"} (UR-Nexus)`);
|
|
800104
800109
|
return;
|
|
800105
800110
|
}
|
|
800106
800111
|
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.68.
|
|
48
|
+
<p class="eyebrow">Version 1.68.10</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.68.
|
|
5
|
+
"version": "1.68.10",
|
|
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.68.
|
|
3
|
+
> Audited against the executable source and tests for `ur-agent` v1.68.10.
|
|
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/`
|