shraga 0.1.108 → 0.1.110
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/README.md +2 -1
- package/dist/client/assets/{index-Bz719okT.js → index-BaZu5Ojo.js} +95 -92
- package/dist/client/assets/index-DIMte_k6.css +10 -0
- package/dist/client/index.html +2 -2
- package/package.json +1 -1
- package/src/client/components/ConversationHeader.tsx +38 -3
- package/src/client/components/ConversationPane.tsx +8 -2
- package/src/client/lib/ws.ts +1 -1
- package/src/server/boot.ts +7 -4
- package/src/server/claude-account.ts +9 -0
- package/src/server/claude-login.ts +4 -4
- package/src/server/claude-usage.ts +55 -2
- package/src/server/claude.ts +2 -1
- package/src/server/engine/claude-code.ts +21 -7
- package/src/server/sessions.ts +17 -5
- package/dist/client/assets/index-CibL2gLy.css +0 -10
package/README.md
CHANGED
|
@@ -201,7 +201,8 @@ with:
|
|
|
201
201
|
also manages the shared login there, no SSH), or by hand:
|
|
202
202
|
`CLAUDE_CONFIG_DIR=<DATA_DIR>/workspace/users/<contactId>/.claude claude auth login`.
|
|
203
203
|
A folder without a login fails the run with the CLI's 401 — it never falls back to the default account.
|
|
204
|
-
|
|
204
|
+
The **Claude usage** gauge is per viewer: a routed viewer sees their own account's limits (read from
|
|
205
|
+
that folder only, never the keychain), everyone else the default login's. Same trust model as the default login: the agent's Bash can
|
|
205
206
|
read a routed login just as it can read the default one.
|
|
206
207
|
|
|
207
208
|
## Configuration
|