claude-rpc 0.15.2 → 0.15.3
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/package.json +1 -1
- package/src/cli.js +5 -0
- package/src/version.js +1 -1
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -1169,6 +1169,11 @@ async function doLink(argv) {
|
|
|
1169
1169
|
userCfg.profile = { ...(userCfg.profile || {}), githubUser: r.json.githubUser, verified: true };
|
|
1170
1170
|
writeFileSync(CONFIG_PATH, JSON.stringify(userCfg, null, 2));
|
|
1171
1171
|
console.log(` ${c.green}✓${c.reset} linked as ${c.cyan}@${r.json.githubUser}${c.reset} — profile verified, squads unlocked in the browser`);
|
|
1172
|
+
if (r.json.merged) {
|
|
1173
|
+
// This machine joined an existing identity: its stats now roll up under the
|
|
1174
|
+
// canonical handle, one board row across all your machines.
|
|
1175
|
+
console.log(` ${c.green}✓${c.reset} this machine now merges into ${c.cyan}@${r.json.handle}${c.reset} ${c.dim}— stats from all your machines count as one${c.reset}`);
|
|
1176
|
+
}
|
|
1172
1177
|
console.log(` ${c.dim}head back to https://claude-rpc.vercel.app/squads — it picks the link up automatically${c.reset}`);
|
|
1173
1178
|
}
|
|
1174
1179
|
|