@arbidocs/cli 0.3.161 → 0.3.163
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 +46 -0
- package/dist/index.js +8 -8
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,51 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.3.163
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.162...HEAD)
|
|
6
|
+
|
|
7
|
+
### 🚀 Enhancements
|
|
8
|
+
|
|
9
|
+
- **topbar:** Move Skills into the topbar with an open-book icon ([4f8aa5a1](https://github.com/arbicity/ARBI-frontend/commit/4f8aa5a1))
|
|
10
|
+
- **sidebar:** Move Smart Tips into the sidebar and rework workspace navigation ([0e5ca648](https://github.com/arbicity/ARBI-frontend/commit/0e5ca648))
|
|
11
|
+
- **layout:** Full-width topbar carrying the workspace card, sidebar below ([d1ff92ea](https://github.com/arbicity/ARBI-frontend/commit/d1ff92ea))
|
|
12
|
+
- **workspace:** Land on the Dashboard when opening a workspace ([058e4091](https://github.com/arbicity/ARBI-frontend/commit/058e4091))
|
|
13
|
+
- **facts:** Dashboard "Add a fact" opens the composer on the Facts page ([25b739af](https://github.com/arbicity/ARBI-frontend/commit/25b739af))
|
|
14
|
+
- **workspace-card:** Type-coloured badge, member count on Dashboard, responsive collapse ([d1ca5d99](https://github.com/arbicity/ARBI-frontend/commit/d1ca5d99))
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **workspace:** Prevent crash selecting a project without AI/storage quotas ([a1bfac7e](https://github.com/arbicity/ARBI-frontend/commit/a1bfac7e))
|
|
19
|
+
- Remove stale @tanstack/react-query-devtools devDependency ([8f6478a0](https://github.com/arbicity/ARBI-frontend/commit/8f6478a0))
|
|
20
|
+
|
|
21
|
+
### 💅 Refactors
|
|
22
|
+
|
|
23
|
+
- **ui:** Tidy contacts header, DM identity chip, and workspace plan/usage placement ([67ba7cdb](https://github.com/arbicity/ARBI-frontend/commit/67ba7cdb))
|
|
24
|
+
- **blocks:** Uniform typography on the entity identity bar ([6a8b49d5](https://github.com/arbicity/ARBI-frontend/commit/6a8b49d5))
|
|
25
|
+
- **react:** Soften the project pill — tinted fill, light border, rounded ([18efb8c6](https://github.com/arbicity/ARBI-frontend/commit/18efb8c6))
|
|
26
|
+
|
|
27
|
+
### 🏡 Chore
|
|
28
|
+
|
|
29
|
+
- Start UI fixes branch ([45123888](https://github.com/arbicity/ARBI-frontend/commit/45123888))
|
|
30
|
+
- Remove React Query devtools button ([9d07026a](https://github.com/arbicity/ARBI-frontend/commit/9d07026a))
|
|
31
|
+
|
|
32
|
+
### 🎨 Styles
|
|
33
|
+
|
|
34
|
+
- **topbar:** Match the topbar background to the sidebar ([f03bab2d](https://github.com/arbicity/ARBI-frontend/commit/f03bab2d))
|
|
35
|
+
|
|
36
|
+
## v0.3.162
|
|
37
|
+
|
|
38
|
+
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.161...HEAD)
|
|
39
|
+
|
|
40
|
+
### 🚀 Enhancements
|
|
41
|
+
|
|
42
|
+
- **workspace:** Dashboard, files toolbar and folder UX polish ([#1230](https://github.com/arbicity/ARBI-frontend/pull/1230))
|
|
43
|
+
|
|
44
|
+
### 🩹 Fixes
|
|
45
|
+
|
|
46
|
+
- **topbar:** Ask bar shows on the workspace dashboard tab, tips only on the genuine list ([c0014735f](https://github.com/arbicity/ARBI-frontend/commit/c0014735f))
|
|
47
|
+
- **chat:** Agent narration renders as markdown, not raw asterisks ([94c99e33f](https://github.com/arbicity/ARBI-frontend/commit/94c99e33f))
|
|
48
|
+
|
|
3
49
|
## v0.3.161
|
|
4
50
|
|
|
5
51
|
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.160...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.163";
|
|
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.163") 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.163"} \u2192 ${latest}). Updating...`);
|
|
3754
3754
|
child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
|
|
3755
|
-
showChangelog("0.3.
|
|
3755
|
+
showChangelog("0.3.163", 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.163"} \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.163") 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.163"} \u2192 ${cached.latest}). Run "arbi update".`
|
|
3796
3796
|
);
|
|
3797
3797
|
markNagShown(cached.latest);
|
|
3798
3798
|
} catch {
|
|
@@ -10653,7 +10653,7 @@ console.info = (...args) => {
|
|
|
10653
10653
|
_origInfo(...args);
|
|
10654
10654
|
};
|
|
10655
10655
|
var program = new commander.Command();
|
|
10656
|
-
program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.
|
|
10656
|
+
program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.163").showHelpAfterError(true).showSuggestionAfterError(true);
|
|
10657
10657
|
registerConfigCommand(program);
|
|
10658
10658
|
registerLoginCommand(program);
|
|
10659
10659
|
registerRegisterCommand(program);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arbidocs/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.163",
|
|
4
4
|
"description": "CLI tool for interacting with ARBI — login, manage workspaces, upload documents, query the RAG assistant",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"preuninstall": "node scripts/preuninstall.js"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@arbidocs/sdk": "0.3.
|
|
25
|
-
"@arbidocs/client": "0.3.
|
|
26
|
-
"@arbidocs/tui": "0.3.
|
|
24
|
+
"@arbidocs/sdk": "0.3.163",
|
|
25
|
+
"@arbidocs/client": "0.3.163",
|
|
26
|
+
"@arbidocs/tui": "0.3.163",
|
|
27
27
|
"@inquirer/prompts": "^8.5.2",
|
|
28
28
|
"chalk": "^5.6.2",
|
|
29
29
|
"commander": "^15.0.0"
|