@arbidocs/cli 0.3.42 β†’ 0.3.44

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,17 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.3.44
4
+
5
+ [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.42...HEAD)
6
+
7
+ ### πŸš€ Enhancements
8
+
9
+ - **documents:** Pulse tab badge + dedupe progressive-loading subscription ([#632](https://github.com/arbicity/ARBI-frontend/pull/632))
10
+
11
+ ### 🩹 Fixes
12
+
13
+ - **cli:** Clean Ctrl+C in quickstart; expand SKILL.md for agents ([#621](https://github.com/arbicity/ARBI-frontend/pull/621))
14
+
3
15
  ## v0.3.42
4
16
 
5
17
  [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.40...HEAD)
package/SKILL.md CHANGED
@@ -11,9 +11,10 @@ ARBI is an enterprise document intelligence platform with E2E encrypted communic
11
11
  - Scripted (humans with API access): `arbi register -e <email> -p <password> --verification-code <code>`
12
12
  - Scripted (AI agents / bots, requires `SUPPORT_API_KEY`): `arbi agent-create --email agent-<name>@<domain> --workspace-name "<name>"`
13
13
  - The email MUST start with `agent-`. This path creates the account, logs in, and selects the new workspace in one call.
14
+ - Scripted (non-interactive register for humans with API access): `arbi register --non-interactive --json --email <email> --password "<password>"` β€” emits a single JSON line; `--json` is also supported on `login`, `logout`, and `status`.
14
15
  4. Verify: `arbi status` (add `--json` for machine-readable output)
15
16
 
16
- For multiple agents on the same machine, set `ARBI_ID=<name>` (or `ARBI_CONFIG_DIR=<path>`) to isolate config in `~/.arbi/<name>/`.
17
+ For multiple identities on the same machine, set `ARBI_ID=<name>` (or `ARBI_CONFIG_DIR=<path>`) to isolate config in `~/.arbi/<name>/`. Each identity has its own `config.json` and `credentials.json`, so commands like `ARBI_ID=alice arbi dm list` and `ARBI_ID=bob arbi dm send …` operate independently.
17
18
 
18
19
  ## When to Use
19
20
 
@@ -94,3 +95,14 @@ All document list/search/meta commands support machine-readable output. Prefer `
94
95
  - **Doctags** (tag↔doc link): `arbi doctags create <tag-id> <doc-id...>` / `arbi doctags delete <tag-id> <doc-id...>`.
95
96
  - **Retrieve only**: `arbi find <query> --json` returns raw retrieval results without running the LLM.
96
97
  - **Exit codes**: 0 on success (including clean skips), 1 on error. Errors print to stderr.
98
+
99
+ ## Multi-user / Messaging (for agents)
100
+
101
+ All list commands that summarize people or state support `--json`:
102
+ `arbi contacts list --json`, `arbi dm list --json`, `arbi dm send <to> <msg> --json`, `arbi agent list --json`, `arbi session list --json`, `arbi task list --json`.
103
+
104
+ - **Contacts are one-way**: `arbi contacts add <email>` only populates *your* contact list; the other party is NOT notified and does not see you in their contacts. Before replying to a DM from a new sender you must add them with `arbi contacts add`.
105
+ - **DM E2E proof**: `arbi dm send … --json` and `arbi dm list --json` emit an `encrypted_in_transit: true` flag per message. The SDK seals every DM with the recipient's curve25519 public key before the network call β€” this flag makes that invariant visible without reading SDK code.
106
+ - **Listen side-effects**: `arbi listen --agent claude` writes `~/.claude/commands/arbi/SKILL.md` and sets a `defaultAgent` in the CLI config. Run it only on a machine you control.
107
+ - **Persistent agents**: `arbi agent create --name <n> -w <ws-id>` creates a child identity the parent can delegate to (printed email+password). Share workspace IDs via `-w` rather than the interactive picker when running non-interactively.
108
+ - **Agent-create errors**: `agent-create` rejects non-`agent-*` emails with a clear message. If you see "No verification record found" the account probably already exists β€” use `arbi login` instead.