groove-dev 0.24.2 → 0.24.4

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.
@@ -20,11 +20,14 @@ import { connect } from '../src/commands/connect.js';
20
20
  import { disconnect } from '../src/commands/disconnect.js';
21
21
  import { audit } from '../src/commands/audit.js';
22
22
  import { federationPair, federationUnpair, federationList, federationStatus } from '../src/commands/federation.js';
23
+ import { createRequire } from 'node:module';
24
+ const require = createRequire(import.meta.url);
25
+ const { version } = require('../../../package.json');
23
26
 
24
27
  program
25
28
  .name('groove')
26
29
  .description('Agent orchestration layer for AI coding tools')
27
- .version('0.22.20');
30
+ .version(version);
28
31
 
29
32
  program
30
33
  .command('start')