@ariobarin/glossa 0.1.0-beta.7 → 0.1.0-beta.9
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 +23 -4
- package/dist/app.js +15524 -0
- package/dist/main.js +23 -14346
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,20 +1,39 @@
|
|
|
1
1
|
# @ariobarin/glossa
|
|
2
2
|
|
|
3
|
-
This package contains the `glossa` executable. Node
|
|
3
|
+
This package contains the `glossa` executable. Node.js 22.9 or newer is required.
|
|
4
|
+
Install the open beta with either the hosted installer:
|
|
5
|
+
|
|
6
|
+
```powershell
|
|
7
|
+
irm https://glossa.sh/install | iex
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
Or install directly from npm:
|
|
4
11
|
|
|
5
12
|
```powershell
|
|
6
13
|
npm install --global @ariobarin/glossa@beta
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Then choose a recognizable name during this computer's first enrollment:
|
|
17
|
+
|
|
18
|
+
```powershell
|
|
7
19
|
Set-Location C:\path\to\a\repository
|
|
8
|
-
glossa
|
|
20
|
+
glossa --device-name "my-workstation" .
|
|
9
21
|
```
|
|
10
22
|
|
|
23
|
+
The hosted command runs the tracked installer at `site/install.ps1`. Use
|
|
24
|
+
`glossa update` or its `glossa upgrade` alias to update the global beta later.
|
|
25
|
+
|
|
11
26
|
Glossa opens Google sign-in automatically when needed using OAuth Device Authorization Flow. Public client and resource identifiers are built in, so testers do not configure OAuth values. Use the same Google account when authorizing Glossa in ChatGPT.
|
|
12
27
|
|
|
13
28
|
OAuth and device credentials use the operating-system credential store. If it is unavailable, Glossa warns before using a restricted credential file.
|
|
14
29
|
|
|
15
|
-
|
|
30
|
+
`--device-name` is used only during initial enrollment. Later starts reuse the enrolled name; use `glossa devices rename <id> <name>` to change it. Without the option, the first managed session enrolls the computer under its hostname. Running `glossa` inside a Git worktree exposes only that worktree root. `glossa start .` is the explicit form. Each process registers an independent workspace, so the same computer may expose several workspaces at once. The process prints the canonical root, connection state, shell authority warning, and write or command activity. Press Ctrl+C to disconnect.
|
|
31
|
+
|
|
32
|
+
The experimental `glossa ui .` command opens a compact live session HUD and immediately exposes the selected workspace. Press `d` for recent activity, `?` for help, and `q` to disconnect. The screen keeps the worker-account authority warning visible.
|
|
33
|
+
|
|
34
|
+
Glossa signs in automatically whenever an authenticated command needs an account. `glossa login` is an optional preflight. `glossa status` validates the session and relay, then reports enrolled devices and active workers. `glossa doctor` performs a read-only readiness check, including the local device credential, and supports `--json`. Use `glossa devices list`, `glossa devices rename <id> <name>`, and `glossa devices revoke <id>` to manage enrolled computers.
|
|
16
35
|
|
|
17
|
-
|
|
36
|
+
Generate shell completion with `glossa completions <powershell|bash|zsh|fish>` and source the output from your shell profile. For example, use `glossa completions powershell | Out-String | Invoke-Expression` in PowerShell, `source <(glossa completions bash)` in Bash, `source <(glossa completions zsh)` after `compinit` in Zsh, or `glossa completions fish | source` in Fish.
|
|
18
37
|
|
|
19
38
|
The managed endpoint defaults to `https://mcp.glossa.sh`. Development deployments may override `GLOSSA_RELAY_ORIGIN` and `GLOSSA_WORKER_ORIGIN`. Plain HTTP is accepted only for loopback relay origins and loopback or private IPv4 worker origins.
|
|
20
39
|
|