We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0311ef commit 425f317Copy full SHA for 425f317
packages/cli/src/cli.ts
@@ -9,13 +9,15 @@ import { installCommand } from './commands/install';
9
import { registerMemoryCommand } from './commands/memory';
10
import { registerSkillCommand } from './commands/skill';
11
import { registerAgentCommand } from './commands/agent';
12
+// eslint-disable-next-line @typescript-eslint/no-var-requires
13
+const { version } = require('../package.json') as { version: string };
14
15
const program = new Command();
16
17
program
18
.name('ai-devkit')
19
.description('AI-assisted software development toolkit')
- .version('0.1.0');
20
+ .version(version);
21
22
23
.command('init')
0 commit comments