@ariobarin/glossa 0.1.0-beta.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/LICENSE +15 -0
- package/README.md +20 -0
- package/dist/main.js +14138 -0
- package/dist/main.js.map +7 -0
- package/package.json +43 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Thomas Ario
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND.
|
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# @ariobarin/glossa
|
|
2
|
+
|
|
3
|
+
This package contains the `glossa` executable. Install the private beta from npm:
|
|
4
|
+
|
|
5
|
+
```powershell
|
|
6
|
+
npm install --global @ariobarin/glossa@beta
|
|
7
|
+
glossa login
|
|
8
|
+
glossa status
|
|
9
|
+
glossa whoami
|
|
10
|
+
Set-Location C:\path\to\a\repository
|
|
11
|
+
glossa
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Login uses Auth0 Device Authorization Flow. Public tenant, client, and API identifiers are built in, so testers do not configure OAuth values.
|
|
15
|
+
|
|
16
|
+
OAuth and device credentials use the operating-system credential store. If it is unavailable, Glossa warns before using a restricted credential file.
|
|
17
|
+
|
|
18
|
+
The first managed session enrolls the computer under its hostname. Running `glossa` inside a Git worktree exposes only that worktree root. The process prints the canonical root, shell authority warning, and write or command activity. Press Ctrl+C to disconnect.
|
|
19
|
+
|
|
20
|
+
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.
|