@glyphteck/veyl 0.1.0 → 0.1.1
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 +8 -0
- package/dist/cli.js +133402 -0
- package/dist/index.js +133168 -0
- package/package.json +10 -11
- package/src/cli.js +0 -280
- package/src/client.js +0 -499
- package/src/cloud.js +0 -52
- package/src/index.js +0 -11
- package/src/kdf.js +0 -12
- package/src/listen.js +0 -120
- package/src/machine.js +0 -38
- package/src/mcp.js +0 -96
- package/src/passkey.js +0 -182
- package/src/storage.js +0 -113
package/README.md
CHANGED
|
@@ -6,6 +6,12 @@ It is a client, not a privileged backend. Headless accounts own their local mach
|
|
|
6
6
|
|
|
7
7
|
The package also supports real passkey accounts from a terminal. Passkey create/login opens the configured Veyl web origin for the WebAuthn ceremony, receives a Firebase token on a localhost callback, then pairs a local machine credential to that signed-in account for future CLI sessions. True machine-created headless accounts remain separate from passkey-created accounts.
|
|
8
8
|
|
|
9
|
+
Run the public package with Bun:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
bunx @glyphteck/veyl help
|
|
13
|
+
```
|
|
14
|
+
|
|
9
15
|
## Interface Boundary
|
|
10
16
|
|
|
11
17
|
`headless` is the client boundary. CLI, MCP, scripts, and future channel adapters are interfaces on top of the same client, not separate clients with their own account, vault, chat, or money logic.
|
|
@@ -15,6 +21,8 @@ The package also supports real passkey accounts from a terminal. Passkey create/
|
|
|
15
21
|
- `src/mcp.js`: MCP wrapper.
|
|
16
22
|
- `src/passkey.js`: browser-assisted passkey bridge for terminal flows.
|
|
17
23
|
|
|
24
|
+
The npm package publishes bundled `dist` entrypoints so callers do not need Veyl's monorepo workspace packages installed locally.
|
|
25
|
+
|
|
18
26
|
## API Shape
|
|
19
27
|
|
|
20
28
|
The public surface should stay simple enough to infer from the command names:
|