agentk8 2.1.2 → 2.1.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.
Files changed (2) hide show
  1. package/dist/cli.js +4 -4
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -4,10 +4,10 @@ import { render } from 'ink';
4
4
  import meow from 'meow';
5
5
  import { App } from './components/App.js';
6
6
  import { checkClaudeInstalled } from './lib/claude.js';
7
- const VERSION = '2.1.2';
7
+ const VERSION = '2.1.3';
8
8
  const cli = meow(`
9
9
  Usage
10
- $ agentk [options]
10
+ $ agentk8 [options]
11
11
 
12
12
  Options
13
13
  --mode, -m Set mode: dev (default) or ml
@@ -15,8 +15,8 @@ const cli = meow(`
15
15
  --help, -h Show this help
16
16
 
17
17
  Examples
18
- $ agentk Start dev mode
19
- $ agentk --mode ml Start ML mode
18
+ $ agentk8 Start dev mode
19
+ $ agentk8 --mode ml Start ML mode
20
20
 
21
21
  Commands (inside app)
22
22
  /help Show available commands
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "agentk8",
3
- "version": "2.1.2",
3
+ "version": "2.1.3",
4
4
  "description": "Multi-Agent Claude Code Terminal Suite",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
- "agentk": "dist/cli.js"
8
+ "agentk8": "dist/cli.js"
9
9
  },
10
10
  "files": [
11
11
  "dist",