@upturtle/wizard 0.1.1 → 0.1.2
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 +1 -1
- package/package.json +2 -2
- package/src/index.mjs +2 -2
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ Once it's done, ask your AI: _"deploy this project to UpTurtle."_
|
|
|
19
19
|
|
|
20
20
|
| Flag | Description |
|
|
21
21
|
|---|---|
|
|
22
|
-
| `--host=<url>` | Override the UpTurtle host. Defaults to `https://upturtle.com`. |
|
|
22
|
+
| `--host=<url>` | Override the UpTurtle host. Defaults to `https://what.upturtle.com`. |
|
|
23
23
|
| `--agent=<id,...>` | Skip auto-detection and target specific agent(s). |
|
|
24
24
|
| `--help`, `-h` | Show usage. |
|
|
25
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@upturtle/wizard",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Connects your coding agent to UpTurtle's MCP server. Detects the agent, mints a scoped PAT via browser handshake, and writes the right MCP config.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"publishConfig": {
|
|
23
23
|
"access": "public"
|
|
24
24
|
},
|
|
25
|
-
"homepage": "https://upturtle.com/dashboard/connect"
|
|
25
|
+
"homepage": "https://what.upturtle.com/dashboard/connect"
|
|
26
26
|
}
|
package/src/index.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import { runDeviceFlow } from "./auth.mjs";
|
|
|
2
2
|
import { AGENTS, detectInstalledAgents } from "./agents.mjs";
|
|
3
3
|
import { WRITERS } from "./writers.mjs";
|
|
4
4
|
|
|
5
|
-
const DEFAULT_HOST = "https://upturtle.com";
|
|
5
|
+
const DEFAULT_HOST = "https://what.upturtle.com";
|
|
6
6
|
|
|
7
7
|
export async function run(argv) {
|
|
8
8
|
const flags = parseFlags(argv);
|
|
@@ -115,7 +115,7 @@ function printHelp() {
|
|
|
115
115
|
npx @upturtle/wizard [options]
|
|
116
116
|
|
|
117
117
|
Options:
|
|
118
|
-
--host=<url> Override the UpTurtle host. Defaults to https://upturtle.com.
|
|
118
|
+
--host=<url> Override the UpTurtle host. Defaults to https://what.upturtle.com.
|
|
119
119
|
Also: UPTURTLE_HOST=<url>.
|
|
120
120
|
--agent=<id,...> Skip auto-detection and install into specific agent(s).
|
|
121
121
|
Known ids: ${AGENTS.map((a) => a.id).join(", ")}
|