@vibe-cafe/vibe-usage 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibe-cafe/vibe-usage",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Track your AI coding tool token usage and sync to vibecafe.ai",
5
5
  "type": "module",
6
6
  "bin": {
package/src/hooks.js CHANGED
@@ -2,7 +2,7 @@ import { readFileSync, writeFileSync, existsSync, mkdirSync } from 'node:fs';
2
2
  import { join, dirname } from 'node:path';
3
3
  import { homedir } from 'node:os';
4
4
 
5
- const SYNC_CMD = 'npx vibe-usage sync 2>/dev/null &';
5
+ const SYNC_CMD = 'npx @vibe-cafe/vibe-usage sync 2>/dev/null &';
6
6
 
7
7
  function hasVibeUsageHook(hooks) {
8
8
  if (!Array.isArray(hooks)) return false;
package/src/init.js CHANGED
@@ -86,7 +86,7 @@ export async function runInit() {
86
86
  console.log(`Hooks installed for: ${hooked.join(', ')}`);
87
87
  }
88
88
  for (const name of manualOnly) {
89
- console.log(`${name} detected — use \`npx vibe-usage sync\` to sync manually.`);
89
+ console.log(`${name} detected — use \`npx @vibe-cafe/vibe-usage sync\` to sync manually.`);
90
90
  }
91
91
  if (tools.length === 0) {
92
92
  console.log('No AI coding tools detected. Install one and re-run init.');
@@ -95,5 +95,5 @@ export async function runInit() {
95
95
  console.log('\nRunning initial sync...');
96
96
  await runSync();
97
97
 
98
- console.log('\nSetup complete! Usage data will sync automatically after each session.');
98
+ console.log(`\nSetup complete! View your dashboard at: ${apiUrl}/usage`);
99
99
  }