ur-agent 1.13.5 → 1.13.6
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 +14 -0
- package/README.md +1 -0
- package/dist/cli.js +78 -78
- package/docs/VALIDATION.md +1 -1
- package/documentation/README.md +18 -0
- package/documentation/app.js +625 -0
- package/documentation/assets/ur-architecture.svg +67 -0
- package/documentation/index.html +374 -0
- package/documentation/styles.css +575 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.13.6
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **Professional static documentation site.** Added `documentation/` with a
|
|
7
|
+
full HTML/CSS/JS documentation project covering installation, architecture,
|
|
8
|
+
feature map, tutorials, command reference, slash command families,
|
|
9
|
+
configuration, project files, examples, and troubleshooting.
|
|
10
|
+
- **Packaged documentation asset.** Added `documentation` to the npm package
|
|
11
|
+
files list and linked the static site from the root README.
|
|
12
|
+
|
|
13
|
+
### Verified
|
|
14
|
+
- Rebuilt `dist/cli.js` at 1.13.6 and verified the documentation site scripts,
|
|
15
|
+
release check, package check, secret scan, and npm publish dry-run.
|
|
16
|
+
|
|
3
17
|
## 1.13.5
|
|
4
18
|
|
|
5
19
|
### Added
|
package/README.md
CHANGED
|
@@ -106,6 +106,7 @@ ur plugin --help
|
|
|
106
106
|
- [Agent Trend Coverage](docs/AGENT_TRENDS.md)
|
|
107
107
|
- [Agent Feature Expansion](docs/AGENT_FEATURES.md)
|
|
108
108
|
- [Development Guide](docs/DEVELOPMENT.md)
|
|
109
|
+
- [Static Documentation Site](documentation/index.html)
|
|
109
110
|
|
|
110
111
|
The `examples/` directory also contains prompt examples for coding, research, browser, image, video, MCP, memory, agent-trend, and agent-feature workflows.
|
|
111
112
|
|
package/dist/cli.js
CHANGED
|
@@ -12685,7 +12685,7 @@ function formatAgentTrendReport(report = buildAgentTrendReport()) {
|
|
|
12685
12685
|
function formatA2AAgentCard(options = {}, pretty = true) {
|
|
12686
12686
|
return JSON.stringify(buildA2AAgentCard(options), null, pretty ? 2 : 0);
|
|
12687
12687
|
}
|
|
12688
|
-
var urVersion = "1.13.
|
|
12688
|
+
var urVersion = "1.13.6", coverage, priorityRoadmap;
|
|
12689
12689
|
var init_trends = __esm(() => {
|
|
12690
12690
|
coverage = [
|
|
12691
12691
|
{
|
|
@@ -70342,7 +70342,7 @@ var init_auth = __esm(() => {
|
|
|
70342
70342
|
|
|
70343
70343
|
// src/utils/userAgent.ts
|
|
70344
70344
|
function getURCodeUserAgent() {
|
|
70345
|
-
return `ur/${"1.13.
|
|
70345
|
+
return `ur/${"1.13.6"}`;
|
|
70346
70346
|
}
|
|
70347
70347
|
|
|
70348
70348
|
// src/utils/workloadContext.ts
|
|
@@ -70364,7 +70364,7 @@ function getUserAgent() {
|
|
|
70364
70364
|
const clientApp = process.env.UR_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}` : "";
|
|
70365
70365
|
const workload = getWorkload();
|
|
70366
70366
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
70367
|
-
return `ur-cli/${"1.13.
|
|
70367
|
+
return `ur-cli/${"1.13.6"} (${process.env.USER_TYPE}, ${process.env.UR_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
70368
70368
|
}
|
|
70369
70369
|
function getMCPUserAgent() {
|
|
70370
70370
|
const parts = [];
|
|
@@ -70378,7 +70378,7 @@ function getMCPUserAgent() {
|
|
|
70378
70378
|
parts.push(`client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}`);
|
|
70379
70379
|
}
|
|
70380
70380
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
70381
|
-
return `ur/${"1.13.
|
|
70381
|
+
return `ur/${"1.13.6"}${suffix}`;
|
|
70382
70382
|
}
|
|
70383
70383
|
function getWebFetchUserAgent() {
|
|
70384
70384
|
return `UR-User (${getURCodeUserAgent()})`;
|
|
@@ -70516,7 +70516,7 @@ var init_user = __esm(() => {
|
|
|
70516
70516
|
deviceId,
|
|
70517
70517
|
sessionId: getSessionId(),
|
|
70518
70518
|
email: getEmail(),
|
|
70519
|
-
appVersion: "1.13.
|
|
70519
|
+
appVersion: "1.13.6",
|
|
70520
70520
|
platform: getHostPlatformForAnalytics(),
|
|
70521
70521
|
organizationUuid,
|
|
70522
70522
|
accountUuid,
|
|
@@ -76293,7 +76293,7 @@ var init_metadata = __esm(() => {
|
|
|
76293
76293
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
76294
76294
|
WHITESPACE_REGEX = /\s+/;
|
|
76295
76295
|
getVersionBase = memoize_default(() => {
|
|
76296
|
-
const match = "1.13.
|
|
76296
|
+
const match = "1.13.6".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
76297
76297
|
return match ? match[0] : undefined;
|
|
76298
76298
|
});
|
|
76299
76299
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -76333,7 +76333,7 @@ var init_metadata = __esm(() => {
|
|
|
76333
76333
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
76334
76334
|
isURCodeAction: isEnvTruthy(process.env.UR_CODE_ACTION),
|
|
76335
76335
|
isURAiAuth: isURAISubscriber2(),
|
|
76336
|
-
version: "1.13.
|
|
76336
|
+
version: "1.13.6",
|
|
76337
76337
|
versionBase: getVersionBase(),
|
|
76338
76338
|
buildTime: "",
|
|
76339
76339
|
deploymentEnvironment: env3.detectDeploymentEnvironment(),
|
|
@@ -77003,7 +77003,7 @@ function initialize1PEventLogging() {
|
|
|
77003
77003
|
const platform2 = getPlatform();
|
|
77004
77004
|
const attributes = {
|
|
77005
77005
|
[import_semantic_conventions4.ATTR_SERVICE_NAME]: "ur",
|
|
77006
|
-
[import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.13.
|
|
77006
|
+
[import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.13.6"
|
|
77007
77007
|
};
|
|
77008
77008
|
if (platform2 === "wsl") {
|
|
77009
77009
|
const wslVersion = getWslVersion();
|
|
@@ -77030,7 +77030,7 @@ function initialize1PEventLogging() {
|
|
|
77030
77030
|
})
|
|
77031
77031
|
]
|
|
77032
77032
|
});
|
|
77033
|
-
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.13.
|
|
77033
|
+
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.13.6");
|
|
77034
77034
|
}
|
|
77035
77035
|
async function reinitialize1PEventLoggingIfConfigChanged() {
|
|
77036
77036
|
if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
|
|
@@ -78894,7 +78894,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
78894
78894
|
if (!isAttributionHeaderEnabled()) {
|
|
78895
78895
|
return "";
|
|
78896
78896
|
}
|
|
78897
|
-
const version2 = `${"1.13.
|
|
78897
|
+
const version2 = `${"1.13.6"}.${fingerprint}`;
|
|
78898
78898
|
const entrypoint = process.env.UR_CODE_ENTRYPOINT ?? "unknown";
|
|
78899
78899
|
const cch = "";
|
|
78900
78900
|
const workload = getWorkload();
|
|
@@ -185522,7 +185522,7 @@ function getTelemetryAttributes() {
|
|
|
185522
185522
|
attributes["session.id"] = sessionId;
|
|
185523
185523
|
}
|
|
185524
185524
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
185525
|
-
attributes["app.version"] = "1.13.
|
|
185525
|
+
attributes["app.version"] = "1.13.6";
|
|
185526
185526
|
}
|
|
185527
185527
|
const oauthAccount = getOauthAccountInfo();
|
|
185528
185528
|
if (oauthAccount) {
|
|
@@ -221311,7 +221311,7 @@ function getInstallationEnv() {
|
|
|
221311
221311
|
return;
|
|
221312
221312
|
}
|
|
221313
221313
|
function getURCodeVersion() {
|
|
221314
|
-
return "1.13.
|
|
221314
|
+
return "1.13.6";
|
|
221315
221315
|
}
|
|
221316
221316
|
async function getInstalledVSCodeExtensionVersion(command) {
|
|
221317
221317
|
const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
|
|
@@ -224039,7 +224039,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
224039
224039
|
const client2 = new Client({
|
|
224040
224040
|
name: "ur",
|
|
224041
224041
|
title: "UR",
|
|
224042
|
-
version: "1.13.
|
|
224042
|
+
version: "1.13.6",
|
|
224043
224043
|
description: "URHQ's agentic coding tool",
|
|
224044
224044
|
websiteUrl: PRODUCT_URL
|
|
224045
224045
|
}, {
|
|
@@ -224393,7 +224393,7 @@ var init_client5 = __esm(() => {
|
|
|
224393
224393
|
const client2 = new Client({
|
|
224394
224394
|
name: "ur",
|
|
224395
224395
|
title: "UR",
|
|
224396
|
-
version: "1.13.
|
|
224396
|
+
version: "1.13.6",
|
|
224397
224397
|
description: "URHQ's agentic coding tool",
|
|
224398
224398
|
websiteUrl: PRODUCT_URL
|
|
224399
224399
|
}, {
|
|
@@ -234110,9 +234110,9 @@ async function assertMinVersion() {
|
|
|
234110
234110
|
if (false) {}
|
|
234111
234111
|
try {
|
|
234112
234112
|
const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
|
|
234113
|
-
if (versionConfig.minVersion && lt("1.13.
|
|
234113
|
+
if (versionConfig.minVersion && lt("1.13.6", versionConfig.minVersion)) {
|
|
234114
234114
|
console.error(`
|
|
234115
|
-
It looks like your version of UR (${"1.13.
|
|
234115
|
+
It looks like your version of UR (${"1.13.6"}) needs an update.
|
|
234116
234116
|
A newer version (${versionConfig.minVersion} or higher) is required to continue.
|
|
234117
234117
|
|
|
234118
234118
|
To update, please run:
|
|
@@ -234328,7 +234328,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
234328
234328
|
logError2(new AutoUpdaterError("Another process is currently installing an update"));
|
|
234329
234329
|
logEvent("tengu_auto_updater_lock_contention", {
|
|
234330
234330
|
pid: process.pid,
|
|
234331
|
-
currentVersion: "1.13.
|
|
234331
|
+
currentVersion: "1.13.6"
|
|
234332
234332
|
});
|
|
234333
234333
|
return "in_progress";
|
|
234334
234334
|
}
|
|
@@ -234337,7 +234337,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
234337
234337
|
if (!env3.isRunningWithBun() && env3.isNpmFromWindowsPath()) {
|
|
234338
234338
|
logError2(new Error("Windows NPM detected in WSL environment"));
|
|
234339
234339
|
logEvent("tengu_auto_updater_windows_npm_in_wsl", {
|
|
234340
|
-
currentVersion: "1.13.
|
|
234340
|
+
currentVersion: "1.13.6"
|
|
234341
234341
|
});
|
|
234342
234342
|
console.error(`
|
|
234343
234343
|
Error: Windows NPM detected in WSL
|
|
@@ -234872,7 +234872,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
234872
234872
|
}
|
|
234873
234873
|
async function getDoctorDiagnostic() {
|
|
234874
234874
|
const installationType = await getCurrentInstallationType();
|
|
234875
|
-
const version2 = typeof MACRO !== "undefined" ? "1.13.
|
|
234875
|
+
const version2 = typeof MACRO !== "undefined" ? "1.13.6" : "unknown";
|
|
234876
234876
|
const installationPath = await getInstallationPath();
|
|
234877
234877
|
const invokedBinary = getInvokedBinary();
|
|
234878
234878
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -235807,8 +235807,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
235807
235807
|
const maxVersion = await getMaxVersion();
|
|
235808
235808
|
if (maxVersion && gt(version2, maxVersion)) {
|
|
235809
235809
|
logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`);
|
|
235810
|
-
if (gte("1.13.
|
|
235811
|
-
logForDebugging(`Native installer: current version ${"1.13.
|
|
235810
|
+
if (gte("1.13.6", maxVersion)) {
|
|
235811
|
+
logForDebugging(`Native installer: current version ${"1.13.6"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
235812
235812
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
235813
235813
|
latency_ms: Date.now() - startTime,
|
|
235814
235814
|
max_version: maxVersion,
|
|
@@ -235819,7 +235819,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
235819
235819
|
version2 = maxVersion;
|
|
235820
235820
|
}
|
|
235821
235821
|
}
|
|
235822
|
-
if (!forceReinstall && version2 === "1.13.
|
|
235822
|
+
if (!forceReinstall && version2 === "1.13.6" && await versionIsAvailable(version2) && await isPossibleURBinary(executablePath)) {
|
|
235823
235823
|
logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
|
|
235824
235824
|
logEvent("tengu_native_update_complete", {
|
|
235825
235825
|
latency_ms: Date.now() - startTime,
|
|
@@ -330490,7 +330490,7 @@ function Feedback({
|
|
|
330490
330490
|
platform: env3.platform,
|
|
330491
330491
|
gitRepo: envInfo.isGit,
|
|
330492
330492
|
terminal: env3.terminal,
|
|
330493
|
-
version: "1.13.
|
|
330493
|
+
version: "1.13.6",
|
|
330494
330494
|
transcript: normalizeMessagesForAPI(messages),
|
|
330495
330495
|
errors: sanitizedErrors,
|
|
330496
330496
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -330682,7 +330682,7 @@ function Feedback({
|
|
|
330682
330682
|
", ",
|
|
330683
330683
|
env3.terminal,
|
|
330684
330684
|
", v",
|
|
330685
|
-
"1.13.
|
|
330685
|
+
"1.13.6"
|
|
330686
330686
|
]
|
|
330687
330687
|
}, undefined, true, undefined, this)
|
|
330688
330688
|
]
|
|
@@ -330788,7 +330788,7 @@ ${sanitizedDescription}
|
|
|
330788
330788
|
` + `**Environment Info**
|
|
330789
330789
|
` + `- Platform: ${env3.platform}
|
|
330790
330790
|
` + `- Terminal: ${env3.terminal}
|
|
330791
|
-
` + `- Version: ${"1.13.
|
|
330791
|
+
` + `- Version: ${"1.13.6"}
|
|
330792
330792
|
` + `- Feedback ID: ${feedbackId}
|
|
330793
330793
|
` + `
|
|
330794
330794
|
**Errors**
|
|
@@ -333898,7 +333898,7 @@ function buildPrimarySection() {
|
|
|
333898
333898
|
}, undefined, false, undefined, this);
|
|
333899
333899
|
return [{
|
|
333900
333900
|
label: "Version",
|
|
333901
|
-
value: "1.13.
|
|
333901
|
+
value: "1.13.6"
|
|
333902
333902
|
}, {
|
|
333903
333903
|
label: "Session name",
|
|
333904
333904
|
value: nameValue
|
|
@@ -337176,7 +337176,7 @@ function Config({
|
|
|
337176
337176
|
}
|
|
337177
337177
|
}, undefined, false, undefined, this)
|
|
337178
337178
|
}, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime177.jsxDEV(ChannelDowngradeDialog, {
|
|
337179
|
-
currentVersion: "1.13.
|
|
337179
|
+
currentVersion: "1.13.6",
|
|
337180
337180
|
onChoice: (choice) => {
|
|
337181
337181
|
setShowSubmenu(null);
|
|
337182
337182
|
setTabsHidden(false);
|
|
@@ -337188,7 +337188,7 @@ function Config({
|
|
|
337188
337188
|
autoUpdatesChannel: "stable"
|
|
337189
337189
|
};
|
|
337190
337190
|
if (choice === "stay") {
|
|
337191
|
-
newSettings.minimumVersion = "1.13.
|
|
337191
|
+
newSettings.minimumVersion = "1.13.6";
|
|
337192
337192
|
}
|
|
337193
337193
|
updateSettingsForSource("userSettings", newSettings);
|
|
337194
337194
|
setSettingsData((prev_27) => ({
|
|
@@ -345258,7 +345258,7 @@ function HelpV2(t0) {
|
|
|
345258
345258
|
let t6;
|
|
345259
345259
|
if ($3[31] !== tabs) {
|
|
345260
345260
|
t6 = /* @__PURE__ */ jsx_dev_runtime204.jsxDEV(Tabs, {
|
|
345261
|
-
title: `UR v${"1.13.
|
|
345261
|
+
title: `UR v${"1.13.6"}`,
|
|
345262
345262
|
color: "professionalBlue",
|
|
345263
345263
|
defaultTab: "general",
|
|
345264
345264
|
children: tabs
|
|
@@ -364861,7 +364861,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
364861
364861
|
return [];
|
|
364862
364862
|
}
|
|
364863
364863
|
}
|
|
364864
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.13.
|
|
364864
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.13.6") {
|
|
364865
364865
|
if (process.env.USER_TYPE === "ant") {
|
|
364866
364866
|
const changelog = "";
|
|
364867
364867
|
if (changelog) {
|
|
@@ -364888,7 +364888,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.13.5")
|
|
|
364888
364888
|
releaseNotes
|
|
364889
364889
|
};
|
|
364890
364890
|
}
|
|
364891
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.13.
|
|
364891
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.13.6") {
|
|
364892
364892
|
if (process.env.USER_TYPE === "ant") {
|
|
364893
364893
|
const changelog = "";
|
|
364894
364894
|
if (changelog) {
|
|
@@ -366058,7 +366058,7 @@ function getRecentActivitySync() {
|
|
|
366058
366058
|
return cachedActivity;
|
|
366059
366059
|
}
|
|
366060
366060
|
function getLogoDisplayData() {
|
|
366061
|
-
const version2 = process.env.DEMO_VERSION ?? "1.13.
|
|
366061
|
+
const version2 = process.env.DEMO_VERSION ?? "1.13.6";
|
|
366062
366062
|
const serverUrl = getDirectConnectServerUrl();
|
|
366063
366063
|
const displayPath = process.env.DEMO_VERSION ? "/code/ur" : getDisplayPath(getCwd());
|
|
366064
366064
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -366847,7 +366847,7 @@ function LogoV2() {
|
|
|
366847
366847
|
if ($3[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
366848
366848
|
t2 = () => {
|
|
366849
366849
|
const currentConfig = getGlobalConfig();
|
|
366850
|
-
if (currentConfig.lastReleaseNotesSeen === "1.13.
|
|
366850
|
+
if (currentConfig.lastReleaseNotesSeen === "1.13.6") {
|
|
366851
366851
|
return;
|
|
366852
366852
|
}
|
|
366853
366853
|
saveGlobalConfig(_temp326);
|
|
@@ -367532,12 +367532,12 @@ function LogoV2() {
|
|
|
367532
367532
|
return t41;
|
|
367533
367533
|
}
|
|
367534
367534
|
function _temp326(current) {
|
|
367535
|
-
if (current.lastReleaseNotesSeen === "1.13.
|
|
367535
|
+
if (current.lastReleaseNotesSeen === "1.13.6") {
|
|
367536
367536
|
return current;
|
|
367537
367537
|
}
|
|
367538
367538
|
return {
|
|
367539
367539
|
...current,
|
|
367540
|
-
lastReleaseNotesSeen: "1.13.
|
|
367540
|
+
lastReleaseNotesSeen: "1.13.6"
|
|
367541
367541
|
};
|
|
367542
367542
|
}
|
|
367543
367543
|
function _temp243(s_0) {
|
|
@@ -404391,7 +404391,7 @@ async function captureMemoryDiagnostics(trigger2, dumpNumber = 0) {
|
|
|
404391
404391
|
smapsRollup,
|
|
404392
404392
|
platform: process.platform,
|
|
404393
404393
|
nodeVersion: process.version,
|
|
404394
|
-
ccVersion: "1.13.
|
|
404394
|
+
ccVersion: "1.13.6"
|
|
404395
404395
|
};
|
|
404396
404396
|
}
|
|
404397
404397
|
async function performHeapDump(trigger2 = "manual", dumpNumber = 0) {
|
|
@@ -404977,7 +404977,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
404977
404977
|
var call116 = async () => {
|
|
404978
404978
|
return {
|
|
404979
404979
|
type: "text",
|
|
404980
|
-
value: "1.13.
|
|
404980
|
+
value: "1.13.6"
|
|
404981
404981
|
};
|
|
404982
404982
|
}, version2, version_default;
|
|
404983
404983
|
var init_version = __esm(() => {
|
|
@@ -414032,7 +414032,7 @@ function generateHtmlReport(data, insights) {
|
|
|
414032
414032
|
</html>`;
|
|
414033
414033
|
}
|
|
414034
414034
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
414035
|
-
const version3 = typeof MACRO !== "undefined" ? "1.13.
|
|
414035
|
+
const version3 = typeof MACRO !== "undefined" ? "1.13.6" : "unknown";
|
|
414036
414036
|
const remote_hosts_collected = remoteStats?.hosts.filter((h2) => h2.sessionCount > 0).map((h2) => h2.name);
|
|
414037
414037
|
const facets_summary = {
|
|
414038
414038
|
total: facets.size,
|
|
@@ -418265,7 +418265,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
418265
418265
|
init_settings2();
|
|
418266
418266
|
init_slowOperations();
|
|
418267
418267
|
init_uuid();
|
|
418268
|
-
VERSION5 = typeof MACRO !== "undefined" ? "1.13.
|
|
418268
|
+
VERSION5 = typeof MACRO !== "undefined" ? "1.13.6" : "unknown";
|
|
418269
418269
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
418270
418270
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
418271
418271
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -419470,7 +419470,7 @@ var init_filesystem = __esm(() => {
|
|
|
419470
419470
|
});
|
|
419471
419471
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
419472
419472
|
const nonce = randomBytes18(16).toString("hex");
|
|
419473
|
-
return join166(getURTempDir(), "bundled-skills", "1.13.
|
|
419473
|
+
return join166(getURTempDir(), "bundled-skills", "1.13.6", nonce);
|
|
419474
419474
|
});
|
|
419475
419475
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
419476
419476
|
});
|
|
@@ -425501,7 +425501,7 @@ function computeFingerprint(messageText, version3) {
|
|
|
425501
425501
|
}
|
|
425502
425502
|
function computeFingerprintFromMessages(messages) {
|
|
425503
425503
|
const firstMessageText = extractFirstMessageText(messages);
|
|
425504
|
-
return computeFingerprint(firstMessageText, "1.13.
|
|
425504
|
+
return computeFingerprint(firstMessageText, "1.13.6");
|
|
425505
425505
|
}
|
|
425506
425506
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
425507
425507
|
var init_fingerprint = () => {};
|
|
@@ -427367,7 +427367,7 @@ async function sideQuery(opts) {
|
|
|
427367
427367
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
427368
427368
|
}
|
|
427369
427369
|
const messageText = extractFirstUserMessageText(messages);
|
|
427370
|
-
const fingerprint = computeFingerprint(messageText, "1.13.
|
|
427370
|
+
const fingerprint = computeFingerprint(messageText, "1.13.6");
|
|
427371
427371
|
const attributionHeader = getAttributionHeader(fingerprint);
|
|
427372
427372
|
const systemBlocks = [
|
|
427373
427373
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -432104,7 +432104,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
432104
432104
|
slash_commands: inputs.commands.filter((c4) => c4.userInvocable !== false).map((c4) => c4.name),
|
|
432105
432105
|
apiKeySource: getURHQApiKeyWithSource().source,
|
|
432106
432106
|
betas: getSdkBetas(),
|
|
432107
|
-
ur_version: "1.13.
|
|
432107
|
+
ur_version: "1.13.6",
|
|
432108
432108
|
output_style: outputStyle2,
|
|
432109
432109
|
agents: inputs.agents.map((agent) => agent.agentType),
|
|
432110
432110
|
skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
|
|
@@ -446732,7 +446732,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
446732
446732
|
function getSemverPart(version3) {
|
|
446733
446733
|
return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
|
|
446734
446734
|
}
|
|
446735
|
-
function useUpdateNotification(updatedVersion, initialVersion = "1.13.
|
|
446735
|
+
function useUpdateNotification(updatedVersion, initialVersion = "1.13.6") {
|
|
446736
446736
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react224.useState(() => getSemverPart(initialVersion));
|
|
446737
446737
|
if (!updatedVersion) {
|
|
446738
446738
|
return null;
|
|
@@ -446772,7 +446772,7 @@ function AutoUpdater({
|
|
|
446772
446772
|
return;
|
|
446773
446773
|
}
|
|
446774
446774
|
if (false) {}
|
|
446775
|
-
const currentVersion = "1.13.
|
|
446775
|
+
const currentVersion = "1.13.6";
|
|
446776
446776
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
446777
446777
|
let latestVersion = await getLatestVersion(channel);
|
|
446778
446778
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -446985,12 +446985,12 @@ function NativeAutoUpdater({
|
|
|
446985
446985
|
logEvent("tengu_native_auto_updater_start", {});
|
|
446986
446986
|
try {
|
|
446987
446987
|
const maxVersion = await getMaxVersion();
|
|
446988
|
-
if (maxVersion && gt("1.13.
|
|
446988
|
+
if (maxVersion && gt("1.13.6", maxVersion)) {
|
|
446989
446989
|
const msg = await getMaxVersionMessage();
|
|
446990
446990
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
446991
446991
|
}
|
|
446992
446992
|
const result = await installLatest(channel);
|
|
446993
|
-
const currentVersion = "1.13.
|
|
446993
|
+
const currentVersion = "1.13.6";
|
|
446994
446994
|
const latencyMs = Date.now() - startTime;
|
|
446995
446995
|
if (result.lockFailed) {
|
|
446996
446996
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -447127,17 +447127,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
447127
447127
|
const maxVersion = await getMaxVersion();
|
|
447128
447128
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
447129
447129
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
447130
|
-
if (gte("1.13.
|
|
447131
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.13.
|
|
447130
|
+
if (gte("1.13.6", maxVersion)) {
|
|
447131
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.13.6"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
447132
447132
|
setUpdateAvailable(false);
|
|
447133
447133
|
return;
|
|
447134
447134
|
}
|
|
447135
447135
|
latest = maxVersion;
|
|
447136
447136
|
}
|
|
447137
|
-
const hasUpdate = latest && !gte("1.13.
|
|
447137
|
+
const hasUpdate = latest && !gte("1.13.6", latest) && !shouldSkipVersion(latest);
|
|
447138
447138
|
setUpdateAvailable(!!hasUpdate);
|
|
447139
447139
|
if (hasUpdate) {
|
|
447140
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.13.
|
|
447140
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.13.6"} -> ${latest}`);
|
|
447141
447141
|
}
|
|
447142
447142
|
};
|
|
447143
447143
|
$3[0] = t1;
|
|
@@ -447171,7 +447171,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
447171
447171
|
wrap: "truncate",
|
|
447172
447172
|
children: [
|
|
447173
447173
|
"currentVersion: ",
|
|
447174
|
-
"1.13.
|
|
447174
|
+
"1.13.6"
|
|
447175
447175
|
]
|
|
447176
447176
|
}, undefined, true, undefined, this);
|
|
447177
447177
|
$3[3] = verbose;
|
|
@@ -459533,7 +459533,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
459533
459533
|
project_dir: getOriginalCwd(),
|
|
459534
459534
|
added_dirs: addedDirs
|
|
459535
459535
|
},
|
|
459536
|
-
version: "1.13.
|
|
459536
|
+
version: "1.13.6",
|
|
459537
459537
|
output_style: {
|
|
459538
459538
|
name: outputStyleName
|
|
459539
459539
|
},
|
|
@@ -471029,7 +471029,7 @@ async function submitTranscriptShare(messages, trigger2, appearanceId) {
|
|
|
471029
471029
|
} catch {}
|
|
471030
471030
|
const data = {
|
|
471031
471031
|
trigger: trigger2,
|
|
471032
|
-
version: "1.13.
|
|
471032
|
+
version: "1.13.6",
|
|
471033
471033
|
platform: process.platform,
|
|
471034
471034
|
transcript,
|
|
471035
471035
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -482944,7 +482944,7 @@ function WelcomeV2() {
|
|
|
482944
482944
|
dimColor: true,
|
|
482945
482945
|
children: [
|
|
482946
482946
|
"v",
|
|
482947
|
-
"1.13.
|
|
482947
|
+
"1.13.6"
|
|
482948
482948
|
]
|
|
482949
482949
|
}, undefined, true, undefined, this)
|
|
482950
482950
|
]
|
|
@@ -484204,7 +484204,7 @@ function completeOnboarding() {
|
|
|
484204
484204
|
saveGlobalConfig((current) => ({
|
|
484205
484205
|
...current,
|
|
484206
484206
|
hasCompletedOnboarding: true,
|
|
484207
|
-
lastOnboardingVersion: "1.13.
|
|
484207
|
+
lastOnboardingVersion: "1.13.6"
|
|
484208
484208
|
}));
|
|
484209
484209
|
}
|
|
484210
484210
|
function showDialog(root2, renderer) {
|
|
@@ -488664,7 +488664,7 @@ function appendToLog(path24, message) {
|
|
|
488664
488664
|
cwd: getFsImplementation().cwd(),
|
|
488665
488665
|
userType: process.env.USER_TYPE,
|
|
488666
488666
|
sessionId: getSessionId(),
|
|
488667
|
-
version: "1.13.
|
|
488667
|
+
version: "1.13.6"
|
|
488668
488668
|
};
|
|
488669
488669
|
getLogWriter(path24).write(messageWithTimestamp);
|
|
488670
488670
|
}
|
|
@@ -492690,8 +492690,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
492690
492690
|
}
|
|
492691
492691
|
async function checkEnvLessBridgeMinVersion() {
|
|
492692
492692
|
const cfg = await getEnvLessBridgeConfig();
|
|
492693
|
-
if (cfg.min_version && lt("1.13.
|
|
492694
|
-
return `Your version of UR (${"1.13.
|
|
492693
|
+
if (cfg.min_version && lt("1.13.6", cfg.min_version)) {
|
|
492694
|
+
return `Your version of UR (${"1.13.6"}) is too old for Remote Control.
|
|
492695
492695
|
Version ${cfg.min_version} or higher is required. Run \`ur update\` to update.`;
|
|
492696
492696
|
}
|
|
492697
492697
|
return null;
|
|
@@ -493165,7 +493165,7 @@ async function initBridgeCore(params) {
|
|
|
493165
493165
|
const rawApi = createBridgeApiClient({
|
|
493166
493166
|
baseUrl,
|
|
493167
493167
|
getAccessToken,
|
|
493168
|
-
runnerVersion: "1.13.
|
|
493168
|
+
runnerVersion: "1.13.6",
|
|
493169
493169
|
onDebug: logForDebugging,
|
|
493170
493170
|
onAuth401,
|
|
493171
493171
|
getTrustedDeviceToken
|
|
@@ -498830,7 +498830,7 @@ async function startMCPServer(cwd3, debug2, verbose) {
|
|
|
498830
498830
|
setCwd(cwd3);
|
|
498831
498831
|
const server = new Server({
|
|
498832
498832
|
name: "ur/tengu",
|
|
498833
|
-
version: "1.13.
|
|
498833
|
+
version: "1.13.6"
|
|
498834
498834
|
}, {
|
|
498835
498835
|
capabilities: {
|
|
498836
498836
|
tools: {}
|
|
@@ -500441,7 +500441,7 @@ __export(exports_update, {
|
|
|
500441
500441
|
});
|
|
500442
500442
|
async function update() {
|
|
500443
500443
|
logEvent("tengu_update_check", {});
|
|
500444
|
-
writeToStdout(`Current version: ${"1.13.
|
|
500444
|
+
writeToStdout(`Current version: ${"1.13.6"}
|
|
500445
500445
|
`);
|
|
500446
500446
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
500447
500447
|
writeToStdout(`Checking for updates to ${channel} version...
|
|
@@ -500516,8 +500516,8 @@ async function update() {
|
|
|
500516
500516
|
writeToStdout(`UR is managed by Homebrew.
|
|
500517
500517
|
`);
|
|
500518
500518
|
const latest = await getLatestVersion(channel);
|
|
500519
|
-
if (latest && !gte("1.13.
|
|
500520
|
-
writeToStdout(`Update available: ${"1.13.
|
|
500519
|
+
if (latest && !gte("1.13.6", latest)) {
|
|
500520
|
+
writeToStdout(`Update available: ${"1.13.6"} \u2192 ${latest}
|
|
500521
500521
|
`);
|
|
500522
500522
|
writeToStdout(`
|
|
500523
500523
|
`);
|
|
@@ -500533,8 +500533,8 @@ async function update() {
|
|
|
500533
500533
|
writeToStdout(`UR is managed by winget.
|
|
500534
500534
|
`);
|
|
500535
500535
|
const latest = await getLatestVersion(channel);
|
|
500536
|
-
if (latest && !gte("1.13.
|
|
500537
|
-
writeToStdout(`Update available: ${"1.13.
|
|
500536
|
+
if (latest && !gte("1.13.6", latest)) {
|
|
500537
|
+
writeToStdout(`Update available: ${"1.13.6"} \u2192 ${latest}
|
|
500538
500538
|
`);
|
|
500539
500539
|
writeToStdout(`
|
|
500540
500540
|
`);
|
|
@@ -500550,8 +500550,8 @@ async function update() {
|
|
|
500550
500550
|
writeToStdout(`UR is managed by apk.
|
|
500551
500551
|
`);
|
|
500552
500552
|
const latest = await getLatestVersion(channel);
|
|
500553
|
-
if (latest && !gte("1.13.
|
|
500554
|
-
writeToStdout(`Update available: ${"1.13.
|
|
500553
|
+
if (latest && !gte("1.13.6", latest)) {
|
|
500554
|
+
writeToStdout(`Update available: ${"1.13.6"} \u2192 ${latest}
|
|
500555
500555
|
`);
|
|
500556
500556
|
writeToStdout(`
|
|
500557
500557
|
`);
|
|
@@ -500616,11 +500616,11 @@ async function update() {
|
|
|
500616
500616
|
`);
|
|
500617
500617
|
await gracefulShutdown(1);
|
|
500618
500618
|
}
|
|
500619
|
-
if (result.latestVersion === "1.13.
|
|
500620
|
-
writeToStdout(source_default.green(`UR is up to date (${"1.13.
|
|
500619
|
+
if (result.latestVersion === "1.13.6") {
|
|
500620
|
+
writeToStdout(source_default.green(`UR is up to date (${"1.13.6"})`) + `
|
|
500621
500621
|
`);
|
|
500622
500622
|
} else {
|
|
500623
|
-
writeToStdout(source_default.green(`Successfully updated from ${"1.13.
|
|
500623
|
+
writeToStdout(source_default.green(`Successfully updated from ${"1.13.6"} to version ${result.latestVersion}`) + `
|
|
500624
500624
|
`);
|
|
500625
500625
|
await regenerateCompletionCache();
|
|
500626
500626
|
}
|
|
@@ -500680,12 +500680,12 @@ async function update() {
|
|
|
500680
500680
|
`);
|
|
500681
500681
|
await gracefulShutdown(1);
|
|
500682
500682
|
}
|
|
500683
|
-
if (latestVersion === "1.13.
|
|
500684
|
-
writeToStdout(source_default.green(`UR is up to date (${"1.13.
|
|
500683
|
+
if (latestVersion === "1.13.6") {
|
|
500684
|
+
writeToStdout(source_default.green(`UR is up to date (${"1.13.6"})`) + `
|
|
500685
500685
|
`);
|
|
500686
500686
|
await gracefulShutdown(0);
|
|
500687
500687
|
}
|
|
500688
|
-
writeToStdout(`New version available: ${latestVersion} (current: ${"1.13.
|
|
500688
|
+
writeToStdout(`New version available: ${latestVersion} (current: ${"1.13.6"})
|
|
500689
500689
|
`);
|
|
500690
500690
|
writeToStdout(`Installing update...
|
|
500691
500691
|
`);
|
|
@@ -500730,7 +500730,7 @@ async function update() {
|
|
|
500730
500730
|
logForDebugging(`update: Installation status: ${status2}`);
|
|
500731
500731
|
switch (status2) {
|
|
500732
500732
|
case "success":
|
|
500733
|
-
writeToStdout(source_default.green(`Successfully updated from ${"1.13.
|
|
500733
|
+
writeToStdout(source_default.green(`Successfully updated from ${"1.13.6"} to version ${latestVersion}`) + `
|
|
500734
500734
|
`);
|
|
500735
500735
|
await regenerateCompletionCache();
|
|
500736
500736
|
break;
|
|
@@ -501980,7 +501980,7 @@ ${customInstructions}` : customInstructions;
|
|
|
501980
501980
|
}
|
|
501981
501981
|
}
|
|
501982
501982
|
logForDiagnosticsNoPII("info", "started", {
|
|
501983
|
-
version: "1.13.
|
|
501983
|
+
version: "1.13.6",
|
|
501984
501984
|
is_native_binary: isInBundledMode()
|
|
501985
501985
|
});
|
|
501986
501986
|
registerCleanup(async () => {
|
|
@@ -502764,7 +502764,7 @@ Usage: ur --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
502764
502764
|
pendingHookMessages
|
|
502765
502765
|
}, renderAndRun);
|
|
502766
502766
|
}
|
|
502767
|
-
}).version("1.13.
|
|
502767
|
+
}).version("1.13.6 (Ur)", "-v, --version", "Output the version number");
|
|
502768
502768
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
502769
502769
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
502770
502770
|
if (canUserConfigureAdvisor()) {
|
|
@@ -503454,7 +503454,7 @@ if (false) {}
|
|
|
503454
503454
|
async function main2() {
|
|
503455
503455
|
const args = process.argv.slice(2);
|
|
503456
503456
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
503457
|
-
console.log(`${"1.13.
|
|
503457
|
+
console.log(`${"1.13.6"} (Ur)`);
|
|
503458
503458
|
return;
|
|
503459
503459
|
}
|
|
503460
503460
|
if (args[0] === "a2a" && args[1] === "serve" && !args.includes("--help") && !args.includes("-h")) {
|
package/docs/VALIDATION.md
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# UR Agent Documentation Site
|
|
2
|
+
|
|
3
|
+
This folder is a static documentation project for UR Agent.
|
|
4
|
+
|
|
5
|
+
Open `index.html` directly in a browser. No build step or dev server is
|
|
6
|
+
required.
|
|
7
|
+
|
|
8
|
+
## Files
|
|
9
|
+
|
|
10
|
+
- `index.html` - documentation app shell and content sections.
|
|
11
|
+
- `styles.css` - responsive documentation layout and visual system.
|
|
12
|
+
- `app.js` - command data, search, filters, copy buttons, and navigation.
|
|
13
|
+
- `assets/ur-architecture.svg` - architecture diagram used by the docs.
|
|
14
|
+
|
|
15
|
+
## Maintenance
|
|
16
|
+
|
|
17
|
+
When adding a public command, update the `commands` array in `app.js` and add
|
|
18
|
+
examples to the relevant tutorial or workflow section in `index.html`.
|