@arbidocs/cli 0.3.121 → 0.3.122
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 +37 -0
- package/dist/index.js +9 -12
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.3.122
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.121...HEAD)
|
|
6
|
+
|
|
7
|
+
### 🚀 Enhancements
|
|
8
|
+
|
|
9
|
+
- **agent:** Barge-in control bar — pause/resume/status via ⋮ menu + slash commands ([db6db50e](https://github.com/arbicity/ARBI-frontend/commit/db6db50e))
|
|
10
|
+
- Add developer-gated workspace memories curation panel ([4da2ec5c](https://github.com/arbicity/ARBI-frontend/commit/4da2ec5c))
|
|
11
|
+
- Relocate memories entry to workspace section + surface provenance, core budget & sharing ([e94664e7](https://github.com/arbicity/ARBI-frontend/commit/e94664e7))
|
|
12
|
+
- **memories:** Surface created-by avatar + last-updated, collapse source to Automated/Manual ([a51806f3](https://github.com/arbicity/ARBI-frontend/commit/a51806f3))
|
|
13
|
+
- **tasks:** Goal-task UI — plan, assign agent, run & watch convergence ([a0aec88f](https://github.com/arbicity/ARBI-frontend/commit/a0aec88f))
|
|
14
|
+
- **messages:** Unify the agent turn bar into one modality ([e4c5c24f](https://github.com/arbicity/ARBI-frontend/commit/e4c5c24f))
|
|
15
|
+
- **messages:** Redesign the agent-steps trace as a readable timeline ([4d3d686e](https://github.com/arbicity/ARBI-frontend/commit/4d3d686e))
|
|
16
|
+
- **messages:** Number the steps and lead both bars with the expander ([00241e94](https://github.com/arbicity/ARBI-frontend/commit/00241e94))
|
|
17
|
+
|
|
18
|
+
### 🩹 Fixes
|
|
19
|
+
|
|
20
|
+
- **conversation:** Show the live status bar on follow-up turns ([7917af91](https://github.com/arbicity/ARBI-frontend/commit/7917af91))
|
|
21
|
+
- **messages:** Count the steps the trace actually renders ([b96d5ef5](https://github.com/arbicity/ARBI-frontend/commit/b96d5ef5))
|
|
22
|
+
|
|
23
|
+
### 💅 Refactors
|
|
24
|
+
|
|
25
|
+
- **assistant:** Rename barge-in → interject (endpoint + hook) ([a02d3489](https://github.com/arbicity/ARBI-frontend/commit/a02d3489))
|
|
26
|
+
- **memories:** Use canonical VisibilityToggle for share control ([57ad4d1e](https://github.com/arbicity/ARBI-frontend/commit/57ad4d1e))
|
|
27
|
+
- **memory:** Rename wire field content -> note ([60308c23](https://github.com/arbicity/ARBI-frontend/commit/60308c23))
|
|
28
|
+
- **sdk:** Own the doc-name map instead of each client rebuilding it ([e8e91a2d](https://github.com/arbicity/ARBI-frontend/commit/e8e91a2d))
|
|
29
|
+
|
|
30
|
+
### 🏡 Chore
|
|
31
|
+
|
|
32
|
+
- **record:** Add `memories` cinematic flow for the workspace-memory demo ([002ecad3](https://github.com/arbicity/ARBI-frontend/commit/002ecad3))
|
|
33
|
+
- **record:** Update memories demo for workspace-section + core/provenance UI ([f1436276](https://github.com/arbicity/ARBI-frontend/commit/f1436276))
|
|
34
|
+
|
|
35
|
+
### ✅ Tests
|
|
36
|
+
|
|
37
|
+
- **messages:** Cover the agent-step presentation module ([63b0ac5c](https://github.com/arbicity/ARBI-frontend/commit/63b0ac5c))
|
|
38
|
+
- **sdk,tui:** Cover agent step rendering in the CLI/TUI path ([b3bbd336](https://github.com/arbicity/ARBI-frontend/commit/b3bbd336))
|
|
39
|
+
|
|
3
40
|
## v0.3.121
|
|
4
41
|
|
|
5
42
|
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.120...HEAD)
|
package/dist/index.js
CHANGED
|
@@ -3694,7 +3694,7 @@ function getLatestVersion(skipCache = false) {
|
|
|
3694
3694
|
}
|
|
3695
3695
|
}
|
|
3696
3696
|
function getCurrentVersion() {
|
|
3697
|
-
return "0.3.
|
|
3697
|
+
return "0.3.122";
|
|
3698
3698
|
}
|
|
3699
3699
|
function readChangelog(fromVersion, toVersion) {
|
|
3700
3700
|
try {
|
|
@@ -3747,17 +3747,17 @@ function showChangelog(fromVersion, toVersion) {
|
|
|
3747
3747
|
async function checkForUpdates(autoUpdate) {
|
|
3748
3748
|
try {
|
|
3749
3749
|
const latest = getLatestVersion();
|
|
3750
|
-
if (!latest || latest === "0.3.
|
|
3750
|
+
if (!latest || latest === "0.3.122") return;
|
|
3751
3751
|
if (autoUpdate) {
|
|
3752
3752
|
warn(`
|
|
3753
|
-
Your arbi version is out of date (${"0.3.
|
|
3753
|
+
Your arbi version is out of date (${"0.3.122"} \u2192 ${latest}). Updating...`);
|
|
3754
3754
|
child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
|
|
3755
|
-
showChangelog("0.3.
|
|
3755
|
+
showChangelog("0.3.122", latest);
|
|
3756
3756
|
console.log(`Updated to ${latest}.`);
|
|
3757
3757
|
} else {
|
|
3758
3758
|
warn(
|
|
3759
3759
|
`
|
|
3760
|
-
Your arbi version is out of date (${"0.3.
|
|
3760
|
+
Your arbi version is out of date (${"0.3.122"} \u2192 ${latest}).
|
|
3761
3761
|
Run "arbi update" to upgrade, or "arbi update auto" to always stay up to date.`
|
|
3762
3762
|
);
|
|
3763
3763
|
}
|
|
@@ -3789,10 +3789,10 @@ function markNagShown(latest) {
|
|
|
3789
3789
|
function hintUpdateOnError() {
|
|
3790
3790
|
try {
|
|
3791
3791
|
const cached = readCache();
|
|
3792
|
-
if (!cached || cached.latest === "0.3.
|
|
3792
|
+
if (!cached || cached.latest === "0.3.122") return;
|
|
3793
3793
|
if (!shouldShowNag(cached.latest)) return;
|
|
3794
3794
|
warn(
|
|
3795
|
-
`Your arbi version is out of date (${"0.3.
|
|
3795
|
+
`Your arbi version is out of date (${"0.3.122"} \u2192 ${cached.latest}). Run "arbi update".`
|
|
3796
3796
|
);
|
|
3797
3797
|
markNagShown(cached.latest);
|
|
3798
3798
|
} catch {
|
|
@@ -7522,10 +7522,7 @@ function registerAskCommand(program2) {
|
|
|
7522
7522
|
}
|
|
7523
7523
|
const docs = await sdk.documents.listDocuments(arbi);
|
|
7524
7524
|
const docIds = docs.map((d) => d.external_id);
|
|
7525
|
-
const docNames =
|
|
7526
|
-
for (const d of docs) {
|
|
7527
|
-
if (d.external_id && d.file_name) docNames[d.external_id] = d.file_name;
|
|
7528
|
-
}
|
|
7525
|
+
const docNames = sdk.buildDocNameMap(docs);
|
|
7529
7526
|
if (opts.background) {
|
|
7530
7527
|
const result2 = await sdk.responses.submitBackgroundQuery({
|
|
7531
7528
|
baseUrl: config.baseUrl,
|
|
@@ -10483,7 +10480,7 @@ console.info = (...args) => {
|
|
|
10483
10480
|
_origInfo(...args);
|
|
10484
10481
|
};
|
|
10485
10482
|
var program = new commander.Command();
|
|
10486
|
-
program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.
|
|
10483
|
+
program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.122").showHelpAfterError(true).showSuggestionAfterError(true);
|
|
10487
10484
|
registerConfigCommand(program);
|
|
10488
10485
|
registerLoginCommand(program);
|
|
10489
10486
|
registerRegisterCommand(program);
|