@metatell/bot-cli 0.0.8 → 0.0.9

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 (3) hide show
  1. package/README.md +10 -10
  2. package/dist/cli.js +1 -1
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -23,16 +23,16 @@ npm install --save-dev @metatell/bot-cli
23
23
 
24
24
  ```bash
25
25
  # インタラクティブモード(デフォルト)
26
- metatell-cli https://metatell.app/ROOM_ID
26
+ metatell-bot https://metatell.app/ROOM_ID
27
27
 
28
28
  # 認証トークン付き
29
- metatell-cli https://metatell.app/ROOM_ID -t "your-auth-token"
29
+ metatell-bot https://metatell.app/ROOM_ID -t "your-auth-token"
30
30
 
31
31
  # カスタムボット名
32
- metatell-cli https://metatell.app/ROOM_ID -n "MyBot"
32
+ metatell-bot https://metatell.app/ROOM_ID -n "MyBot"
33
33
 
34
34
  # デバッグログ有効
35
- metatell-cli https://metatell.app/ROOM_ID -d
35
+ metatell-bot https://metatell.app/ROOM_ID -d
36
36
  ```
37
37
 
38
38
  ## コマンド
@@ -40,9 +40,9 @@ metatell-cli https://metatell.app/ROOM_ID -d
40
40
  ### インタラクティブモード
41
41
 
42
42
  ```bash
43
- metatell-cli https://metatell.app/ROOM_ID [options]
43
+ metatell-bot https://metatell.app/ROOM_ID [options]
44
44
  # または
45
- metatell-cli interactive https://metatell.app/ROOM_ID [options]
45
+ metatell-bot interactive https://metatell.app/ROOM_ID [options]
46
46
  ```
47
47
 
48
48
  **利用可能なコマンド:**
@@ -63,13 +63,13 @@ metatell-cli interactive https://metatell.app/ROOM_ID [options]
63
63
  ### 接続テストコマンド
64
64
 
65
65
  ```bash
66
- metatell-cli connect https://metatell.app/ROOM_ID [options]
66
+ metatell-bot connect https://metatell.app/ROOM_ID [options]
67
67
  ```
68
68
 
69
69
  ### ルーム検査コマンド
70
70
 
71
71
  ```bash
72
- metatell-cli inspect https://metatell.app/ROOM_ID [options]
72
+ metatell-bot inspect https://metatell.app/ROOM_ID [options]
73
73
  ```
74
74
 
75
75
  ## オプション
@@ -108,8 +108,8 @@ npm run build
108
108
  npm link
109
109
 
110
110
  # 6. 動作確認
111
- metatell-cli --version
112
- metatell-cli --help
111
+ metatell-bot --version
112
+ metatell-bot --help
113
113
  ```
114
114
 
115
115
  ### 開発時の便利なコマンド
package/dist/cli.js CHANGED
@@ -16,7 +16,7 @@ const packageJson = JSON.parse(readFileSync(join(__dirname, '..', 'package.json'
16
16
  const version = packageJson.version;
17
17
  const program = new Command();
18
18
  program
19
- .name('metatell-cli')
19
+ .name('metatell-bot')
20
20
  .description('CLI tool for Metatell bot development and testing')
21
21
  .version(version);
22
22
  // Connect command - Simple connection test
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@metatell/bot-cli",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "CLI tool for Metatell bot development and testing",
5
5
  "type": "module",
6
6
  "bin": {
7
- "metatell-cli": "./dist/cli.js"
7
+ "metatell-bot": "./dist/cli.js"
8
8
  },
9
9
  "exports": {
10
10
  ".": {
@@ -20,7 +20,7 @@
20
20
  "commander": "12.0.0",
21
21
  "ink": "5.0.1",
22
22
  "react": "18.3.1",
23
- "@metatell/bot-sdk": "0.0.8"
23
+ "@metatell/bot-sdk": "0.0.9"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/node": "22.17.2",