groove-dev 0.24.2 → 0.24.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.
|
@@ -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(
|
|
30
|
+
.version(version);
|
|
28
31
|
|
|
29
32
|
program
|
|
30
33
|
.command('start')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "groove-dev",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.3",
|
|
4
4
|
"description": "Open-source agent orchestration layer — the AI company OS. MCP integrations (Slack, Gmail, Stripe, 15+), agent scheduling (cron), business roles (CMO, CFO, EA). GUI dashboard, multi-agent coordination, zero cold-start, infinite sessions. Works with Claude Code, Codex, Gemini CLI, Ollama.",
|
|
5
5
|
"license": "FSL-1.1-Apache-2.0",
|
|
6
6
|
"author": "Groove Dev <hello@groovedev.ai> (https://groovedev.ai)",
|
|
@@ -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(
|
|
30
|
+
.version(version);
|
|
28
31
|
|
|
29
32
|
program
|
|
30
33
|
.command('start')
|