@ariobarin/glossa 0.1.0-beta.9 → 0.1.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/README.md +25 -23
- package/dist/app.js +10068 -5528
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1,40 +1,42 @@
|
|
|
1
1
|
# @ariobarin/glossa
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
Install the open beta with either the hosted installer:
|
|
3
|
+
The `glossa` CLI connects one project on your computer to the Glossa MCP relay through an authenticated outbound worker. The npm package supports Windows, macOS, and Linux and requires Node.js 22.9 or newer.
|
|
5
4
|
|
|
6
|
-
```
|
|
7
|
-
|
|
5
|
+
```shell
|
|
6
|
+
npm install --global @ariobarin/glossa
|
|
8
7
|
```
|
|
9
8
|
|
|
10
|
-
|
|
9
|
+
Start it in the project you want ChatGPT to use:
|
|
11
10
|
|
|
12
|
-
```
|
|
13
|
-
|
|
11
|
+
```shell
|
|
12
|
+
glossa
|
|
14
13
|
```
|
|
15
14
|
|
|
16
|
-
|
|
15
|
+
## Access profiles
|
|
17
16
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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.
|
|
17
|
+
| Profile | Read files | Edit files inside the project | Run commands |
|
|
18
|
+
| --- | --- | --- | --- |
|
|
19
|
+
| `read-only` | Yes | No | No |
|
|
20
|
+
| `workspace` (default) | Yes | Yes | No |
|
|
21
|
+
| `system` | Yes | Yes | Yes |
|
|
25
22
|
|
|
26
|
-
|
|
23
|
+
Use `glossa --access read-only` for inspection. Use `glossa --access system` only when the task needs local tests, builds, Git, or another project command.
|
|
27
24
|
|
|
28
|
-
|
|
25
|
+
> **`system` is not sandboxed.** Commands inherit the full environment, credentials, filesystem permissions, and network access of the operating-system account that started Glossa. They are not confined to the selected root.
|
|
29
26
|
|
|
30
|
-
|
|
27
|
+
Expose only a narrow project you trust. Keep credentials and regulated or sensitive data out of the workspace. Review the [security overview](https://glossa.sh/security) before enabling commands.
|
|
31
28
|
|
|
32
|
-
|
|
29
|
+
Pass a directory to expose another project, and add `--label <name>` when several online workspaces need a non-sensitive identifier. The terminal shows the selected project, access profile, connection state, and recent activity. Press `q` or Ctrl+C to disconnect.
|
|
33
30
|
|
|
34
|
-
Glossa
|
|
31
|
+
Glossa opens sign-in when needed. Use the same Glossa account in ChatGPT and the CLI.
|
|
35
32
|
|
|
36
|
-
|
|
33
|
+
Useful controls:
|
|
37
34
|
|
|
38
|
-
|
|
35
|
+
```shell
|
|
36
|
+
glossa status
|
|
37
|
+
glossa devices revoke <id>
|
|
38
|
+
glossa logout
|
|
39
|
+
glossa update --check
|
|
40
|
+
```
|
|
39
41
|
|
|
40
|
-
|
|
42
|
+
See the [quickstart](https://glossa.sh/docs/quickstart), [operations guide](https://github.com/ariobarin/glossa/blob/main/docs/operations.md), and [security overview](https://glossa.sh/security).
|