ccclub 0.2.83 → 0.2.85

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.
Files changed (2) hide show
  1. package/dist/index.js +9 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -723,6 +723,9 @@ function printQuickStart(groupCode) {
723
723
  console.log(chalk4.dim(" Check what data gets uploaded:"));
724
724
  console.log(chalk4.white(" ccclub show-data"));
725
725
  console.log("");
726
+ console.log(chalk4.dim(" All commands:"));
727
+ console.log(chalk4.white(" ccclub -h"));
728
+ console.log("");
726
729
  }
727
730
 
728
731
  // src/commands/join.ts
@@ -806,6 +809,9 @@ async function joinCommand(inviteCode) {
806
809
  console.log(chalk5.dim(" Open the dashboard in browser:"));
807
810
  console.log(chalk5.white(` https://ccclub.dev/g/${data.groupCode}`));
808
811
  console.log("");
812
+ console.log(chalk5.dim(" All commands:"));
813
+ console.log(chalk5.white(" ccclub -h"));
814
+ console.log("");
809
815
  }
810
816
 
811
817
  // src/commands/rank.ts
@@ -1175,6 +1181,8 @@ async function profileCommand(options) {
1175
1181
  console.log(` Plan: ${profile.plan ? PLAN_LABELS[profile.plan] || profile.plan : chalk7.dim("(not set)")}`);
1176
1182
  console.log(` URL: ${profile.url || chalk7.dim("(not set)")}`);
1177
1183
  console.log();
1184
+ console.log(chalk7.dim(" Update: ccclub profile --name <name> --avatar <url> --plan <plan>"));
1185
+ console.log();
1178
1186
  } catch (err) {
1179
1187
  spinner2.fail(`Error: ${formatFetchError(err)}`);
1180
1188
  }
@@ -1403,7 +1411,7 @@ async function hookCommand() {
1403
1411
  }
1404
1412
 
1405
1413
  // src/index.ts
1406
- var VERSION = "0.2.83";
1414
+ var VERSION = "0.2.85";
1407
1415
  startUpdateCheck(VERSION);
1408
1416
  var program = new Command();
1409
1417
  program.name("ccclub").description("Claude Code leaderboard among friends").version(VERSION, "-v, -V, --version");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccclub",
3
- "version": "0.2.83",
3
+ "version": "0.2.85",
4
4
  "type": "module",
5
5
  "description": "Claude Code leaderboard among friends",
6
6
  "bin": {