ultrahope 0.1.9 → 0.1.11
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 +5 -4
- package/dist/git-ultrahope.js +796 -530
- package/dist/index.js +819 -546
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,14 +12,15 @@ npm install -g ultrahope
|
|
|
12
12
|
|
|
13
13
|
### Login
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
You can try Ultrahope without logging in first. The CLI automatically creates an anonymous session and allows up to 5 requests per day with the Anonymous plan limits.
|
|
16
|
+
|
|
17
|
+
When you want to keep going, authenticate with your Ultrahope account using device flow:
|
|
16
18
|
|
|
17
19
|
```bash
|
|
18
20
|
ultrahope login
|
|
19
21
|
```
|
|
20
22
|
|
|
21
|
-
This will display a URL and code. Open the URL in your browser, sign in, and enter the code to authorize the CLI.
|
|
22
|
-
On first successful login, `${XDG_CONFIG_HOME:-~/.config}/ultrahope/config.toml` is created automatically if missing.
|
|
23
|
+
This will display a URL and code. Open the URL in your browser, sign in, and enter the code to authorize the CLI. On successful login, the CLI replaces the anonymous session with your authenticated one while keeping the local installation identity.
|
|
23
24
|
|
|
24
25
|
### Translate
|
|
25
26
|
|
|
@@ -106,7 +107,7 @@ models = ["mistral/ministral-3b", "xai/grok-code-fast-1"]
|
|
|
106
107
|
|
|
107
108
|
### Credentials
|
|
108
109
|
|
|
109
|
-
Credentials are stored in `~/.config/ultrahope/credentials.json`.
|
|
110
|
+
Credentials and the local installation ID are stored in `~/.config/ultrahope/credentials.json`.
|
|
110
111
|
|
|
111
112
|
## Development
|
|
112
113
|
|