agentk8 2.3.1 → 2.3.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.
Files changed (2) hide show
  1. package/dist/cli.js +3 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -2,9 +2,11 @@
2
2
  import { jsx as _jsx } from "react/jsx-runtime";
3
3
  import { render } from 'ink';
4
4
  import meow from 'meow';
5
+ import { createRequire } from 'module';
5
6
  import { App } from './components/App.js';
6
7
  import { checkClaudeInstalled } from './lib/claude.js';
7
- const VERSION = '2.3.0';
8
+ const require = createRequire(import.meta.url);
9
+ const { version: VERSION } = require('../package.json');
8
10
  const cli = meow(`
9
11
  Usage
10
12
  $ agentk8 [options]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentk8",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "Multi-LLM Council Terminal Suite - Three-stage consensus with GPT, Gemini, and Claude",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",