@arbidocs/cli 0.3.16 → 0.3.17
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 +31 -0
- package/dist/index.js +665 -387
- package/dist/index.js.map +1 -1
- package/package.json +8 -5
- package/scripts/postinstall.js +56 -0
- package/scripts/preuninstall.js +35 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.3.17
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.16...HEAD)
|
|
6
|
+
|
|
7
|
+
### 🚀 Enhancements
|
|
8
|
+
|
|
9
|
+
- Add logout modal with all-sessions support ([964a41a2](https://github.com/arbicity/ARBI-frontend/commit/964a41a2))
|
|
10
|
+
- **tui:** Add stream summary and clear agent steps on first token ([c41e605a](https://github.com/arbicity/ARBI-frontend/commit/c41e605a))
|
|
11
|
+
- **react:** Add ArbiChat embeddable widget component ([5fe2343b](https://github.com/arbicity/ARBI-frontend/commit/5fe2343b))
|
|
12
|
+
- **cli,tui:** Add citation/footnote browsing support ([380032d0](https://github.com/arbicity/ARBI-frontend/commit/380032d0))
|
|
13
|
+
- **react:** Add citation display, agent status, and workspace switching to ArbiChat ([170a87af](https://github.com/arbicity/ARBI-frontend/commit/170a87af))
|
|
14
|
+
|
|
15
|
+
### 🩹 Fixes
|
|
16
|
+
|
|
17
|
+
- **cli:** Use user-level auth for workspace copy to avoid JWT scope issue ([94be1727](https://github.com/arbicity/ARBI-frontend/commit/94be1727))
|
|
18
|
+
- **cli:** Use user-level auth for workspace copy to avoid JWT scope issue ([754745a4](https://github.com/arbicity/ARBI-frontend/commit/754745a4))
|
|
19
|
+
- **sdk:** Exchange workspace key for scoped JWT in selectWorkspace ([a72c7de3](https://github.com/arbicity/ARBI-frontend/commit/a72c7de3))
|
|
20
|
+
- **cli:** Fix integration test failures for workspace commands and ask ([a0b9e804](https://github.com/arbicity/ARBI-frontend/commit/a0b9e804))
|
|
21
|
+
- **cli:** Re-enable workspace copy test after backend fix ([0c136680](https://github.com/arbicity/ARBI-frontend/commit/0c136680))
|
|
22
|
+
|
|
23
|
+
### 💅 Refactors
|
|
24
|
+
|
|
25
|
+
- **tui:** Replace switch-statement dispatch with declarative command registry ([7a6dfb96](https://github.com/arbicity/ARBI-frontend/commit/7a6dfb96))
|
|
26
|
+
|
|
27
|
+
### 🏡 Chore
|
|
28
|
+
|
|
29
|
+
- Update OpenAPI schema ([7353e73f](https://github.com/arbicity/ARBI-frontend/commit/7353e73f))
|
|
30
|
+
- Merge main into feat/logout-modal ([4c98670e](https://github.com/arbicity/ARBI-frontend/commit/4c98670e))
|
|
31
|
+
- Update URLs, READMEs, and CLI auth flow improvements ([aad62525](https://github.com/arbicity/ARBI-frontend/commit/aad62525))
|
|
32
|
+
- **cli:** Rename [agent] prefix to [ARBI] and right-align summary ([7b6f2b0e](https://github.com/arbicity/ARBI-frontend/commit/7b6f2b0e))
|
|
33
|
+
|
|
3
34
|
## v0.3.16
|
|
4
35
|
|
|
5
36
|
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.15...HEAD)
|