@glyphteck/veyl 0.68.0 → 0.69.0
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/dist/account.js +3561 -2254
- package/dist/accountprofiles.js +26 -3
- package/dist/auth.js +2 -2
- package/dist/cli.js +9487 -2954
- package/dist/index.js +9484 -2951
- package/dist/kdf-worker-thread.js +174 -143
- package/docs/agents.md +2 -2
- package/docs/api.md +16 -8
- package/docs/cli.md +4 -4
- package/docs/validation.md +1 -1
- package/examples/bot-fleet/readme.md +1 -1
- package/examples/codex-agent/readme.md +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# SDK bot fleet example
|
|
2
2
|
|
|
3
|
-
This is a reference implementation of a long-lived multi-account agent fleet built entirely on `@glyphteck/veyl`. It uses no Firebase Admin connection, privileged chat path, server action queue, or cloud secret store. The
|
|
3
|
+
This is a reference implementation of a long-lived multi-account agent fleet built entirely on `@glyphteck/veyl`. It uses no Firebase Admin connection, privileged chat path, server action queue, or cloud secret store. The Veyl-managed runtime under `bots` consumes this policy with its own local lineup and operator controls.
|
|
4
4
|
|
|
5
5
|
The secret-free version-2 manifest stores account indices, usernames, networks, roles, and enabled state. One owner-only root at `$VEYL_HOME/fleets/<name>.seed` derives isolated account keys, vault keys, and Veyl master seeds for monotonic account indices. Per-account private material is never stored in the manifest.
|
|
6
6
|
|
|
@@ -77,7 +77,7 @@ Use a process supervisor appropriate to the host. The process handles `SIGINT` a
|
|
|
77
77
|
|
|
78
78
|
The configured owner is allowed by username only during first resolution. The connector then pins the owner's stable Veyl uid and chat public key and publishes `direct: closed`, `groups: closed`, plus one opaque direct grant for that owner. Closed accounts disappear from other clients' new-chat and group-invite choices, while the private pair capability still lets the owner start the direct chat. The fixed-size public grant set does not reveal which account is allowed.
|
|
79
79
|
|
|
80
|
-
Veyl's existing
|
|
80
|
+
Veyl's existing blocked-user state remains authoritative and is checked first. Blocking the owner therefore rejects the chat even though the owner has a grant. The local identity check admits only the pinned owner's signed/decrypted two-member direct traffic. The published closed policy is ongoing rather than creation-only: Veyl hides disallowed existing chats and rejects ungranted open, materialize, send, and receive paths without deleting a direct or leaving a group. This account can converse only with the granted owner.
|
|
81
81
|
|
|
82
82
|
For each accepted owner message, the process enters the ordinary encrypted live room and stays present for the process lifetime. It publishes a stable composition id while Codex streams, renews the writing lease, stops typing at completion, and sends the durable final with the same composition id so the temporary writing row becomes the final response in place.
|
|
83
83
|
|
package/package.json
CHANGED