premanmcp 0.16.1 → 0.16.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/bin/integrations.js +6 -2
- package/package.json +1 -1
package/bin/integrations.js
CHANGED
|
@@ -273,8 +273,12 @@ export async function githubCommand(args) {
|
|
|
273
273
|
|
|
274
274
|
const url = started.install_url || started.url;
|
|
275
275
|
if (!url) throw new Error("Backend returned no GitHub install URL.");
|
|
276
|
-
|
|
277
|
-
|
|
276
|
+
// Installing the App is our plumbing and choosing repositories is the
|
|
277
|
+
// decision, so the decision leads. Naming the save matters more than either:
|
|
278
|
+
// GitHub's picker reads as a confirmation screen, so people recognise their
|
|
279
|
+
// repository on it and close the tab without ever granting anything.
|
|
280
|
+
present(url, "choose the repositories PreMan may read");
|
|
281
|
+
process.stdout.write("Save the selection on GitHub — that is what connects them.\n");
|
|
278
282
|
|
|
279
283
|
// The refresh answer is the diagnosis. A 409 means GitHub never called back;
|
|
280
284
|
// a success carrying no repositories means the App is installed and sharing
|