@arbidocs/cli 0.3.19 → 0.3.20

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 CHANGED
@@ -1,5 +1,48 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.3.20
4
+
5
+ [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.19...HEAD)
6
+
7
+ ### 🚀 Enhancements
8
+
9
+ - Hide developer-only info in AgentSteps and use 1-based numbering ([43194d02](https://github.com/arbicity/ARBI-frontend/commit/43194d02))
10
+ - Add Auto mode to ModelSelector with backend model routing ([1e7a923a](https://github.com/arbicity/ARBI-frontend/commit/1e7a923a))
11
+ - Improve goal step display and default model to Auto ([1a865a46](https://github.com/arbicity/ARBI-frontend/commit/1a865a46))
12
+ - Add item count indicators to sidebar navigation ([a7503d5d](https://github.com/arbicity/ARBI-frontend/commit/a7503d5d))
13
+ - Add agent and session management across SDK, CLI, and React ([6ab3ccbb](https://github.com/arbicity/ARBI-frontend/commit/6ab3ccbb))
14
+ - Per-tab session isolation via sessionStorage ([b2ae8e01](https://github.com/arbicity/ARBI-frontend/commit/b2ae8e01))
15
+ - Add agent session delegation UI with feature flag ([861ce642](https://github.com/arbicity/ARBI-frontend/commit/861ce642))
16
+ - Add delegated session claim on login and restrict sidebar for delegated users ([aea9b4b4](https://github.com/arbicity/ARBI-frontend/commit/aea9b4b4))
17
+ - Show active sessions in logout modal and hide logout-all for agents ([034c3ca0](https://github.com/arbicity/ARBI-frontend/commit/034c3ca0))
18
+ - **sdk:** Add E2E encrypted DM operations and wire into CLI ([3829754b](https://github.com/arbicity/ARBI-frontend/commit/3829754b))
19
+ - Persist parent_ext_id from login response for agent identity ([0eeb45c1](https://github.com/arbicity/ARBI-frontend/commit/0eeb45c1))
20
+ - Add agent orchestration with Claude and OpenClaw integrations ([8d0e76b4](https://github.com/arbicity/ARBI-frontend/commit/8d0e76b4))
21
+ - Agent DM improvements, deeplink authorize, and workspace race fix ([518da3be](https://github.com/arbicity/ARBI-frontend/commit/518da3be))
22
+
23
+ ### 🩹 Fixes
24
+
25
+ - Use page protocol to derive WebSocket URL in local dev ([5e6f95d4](https://github.com/arbicity/ARBI-frontend/commit/5e6f95d4))
26
+ - Simplify auto-selected model display in agent steps ([d0e3599b](https://github.com/arbicity/ARBI-frontend/commit/d0e3599b))
27
+ - Replace tool_progress placeholder when real step arrives ([ffb9c964](https://github.com/arbicity/ARBI-frontend/commit/ffb9c964))
28
+ - Match sidebar count size to label text for better alignment ([db63cdf2](https://github.com/arbicity/ARBI-frontend/commit/db63cdf2))
29
+ - Add dash separator between sidebar label and count ([d0f7a3d2](https://github.com/arbicity/ARBI-frontend/commit/d0f7a3d2))
30
+ - Pre-create word manifest directory with correct ownership ([f634f7e1](https://github.com/arbicity/ARBI-frontend/commit/f634f7e1))
31
+ - Reorder CI to build image before integration tests ([8110fdd5](https://github.com/arbicity/ARBI-frontend/commit/8110fdd5))
32
+ - **sdk:** Rename authorize session `label` option to `name` ([5f8852fd](https://github.com/arbicity/ARBI-frontend/commit/5f8852fd))
33
+ - Handle all three session statuses (user/delegated/agent) in UI ([c9cb1e22](https://github.com/arbicity/ARBI-frontend/commit/c9cb1e22))
34
+ - **ci:** Add DockerHub login to integration-tests job ([b15e26d3](https://github.com/arbicity/ARBI-frontend/commit/b15e26d3))
35
+
36
+ ### 💅 Refactors
37
+
38
+ - Remove cachedWorkspaceHeaders and workspace-key middleware ([36ced02d](https://github.com/arbicity/ARBI-frontend/commit/36ced02d))
39
+ - Extract agents into first-class page with sessions tab ([f8812279](https://github.com/arbicity/ARBI-frontend/commit/f8812279))
40
+
41
+ ### 🏡 Chore
42
+
43
+ - Update OpenAPI schema and fix breaking type changes ([871886f1](https://github.com/arbicity/ARBI-frontend/commit/871886f1))
44
+ - Update OpenAPI schema ([39ec285b](https://github.com/arbicity/ARBI-frontend/commit/39ec285b))
45
+
3
46
  ## v0.3.19
4
47
 
5
48
  [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.18...HEAD)
package/SKILL.md ADDED
@@ -0,0 +1,30 @@
1
+ # ARBI Skill
2
+
3
+ ARBI is an enterprise document intelligence platform with E2E encrypted communication. Use the `arbi` CLI to query documents, manage workspaces, and communicate securely on behalf of your user.
4
+
5
+ ## Getting Started
6
+
7
+ 1. Install: `npm install -g @arbidocs/cli`
8
+ 2. Configure server: `arbi config set-url https://<deployment>.arbibox.com`
9
+ 3. Get a claim code from your parent user (via ARBI web UI → Settings → Agents → Authorize, or `arbi authorize agent`)
10
+ 4. Connect: `arbi connect --code <claim-code>`
11
+ 5. Verify: `arbi status`
12
+
13
+ For multiple agents on the same machine, set `ARBI_ID=<name>` to isolate config in `~/.arbi/<name>/`.
14
+
15
+ ## When to Use
16
+
17
+ - **Document questions**: `arbi ask <question>` — performs RAG retrieval across workspace documents
18
+ - **Document management**: `arbi docs`, `arbi upload`, `arbi download`, `arbi find`
19
+ - **Local files**: `arbi local ls`, `arbi local find "**/*.pdf"`, `arbi local cat <file>`, `arbi local tree`
20
+ - **Secure messaging**: `arbi dm send <recipient> <message>` — E2E encrypted
21
+ - **Workspace operations**: `arbi workspaces`, `arbi workspace select`
22
+
23
+ Every command supports `--help`. Explore with `arbi --help` to discover all capabilities.
24
+
25
+ ## Tips
26
+
27
+ - If not logged in, run `arbi connect --code <code>` with a new claim code from your parent user.
28
+ - If a command fails with "fetch failed", check connectivity with `arbi health`.
29
+ - Use `arbi ask -n` to start a fresh conversation (forget prior context).
30
+ - Use `arbi ask -v` for verbose output showing retrieval steps.