@floomhq/signaldash 0.30.0 → 0.31.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 +1 -1
- package/bin/sd.mjs +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -100,7 +100,7 @@ flows. The one-command setup installs the skill from the same pinned npm package
|
|
|
100
100
|
the human chose to execute:
|
|
101
101
|
|
|
102
102
|
```bash
|
|
103
|
-
npx -y @floomhq/signaldash@0.
|
|
103
|
+
npx -y @floomhq/signaldash@0.31.0 <invite-code>
|
|
104
104
|
```
|
|
105
105
|
|
|
106
106
|
Run that command in a terminal, not in an agent chat. Do not ask an agent to
|
package/bin/sd.mjs
CHANGED
|
@@ -242,7 +242,8 @@ export async function cmdConnect(provider, dependencies = {}) {
|
|
|
242
242
|
process.exitCode = 1;
|
|
243
243
|
return;
|
|
244
244
|
}
|
|
245
|
-
log(
|
|
245
|
+
log(`\n Open this in your browser to connect ${provider}, then click Connect:`);
|
|
246
|
+
log(` ${handoff.json.url}\n`);
|
|
246
247
|
const { open: defaultOpen } = await ui();
|
|
247
248
|
const openUrl = dependencies.open || defaultOpen;
|
|
248
249
|
try { await openUrl(handoff.json.url); } catch {}
|