clawd-models 1.0.4 → 1.0.6

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.
package/README.md CHANGED
@@ -4,10 +4,10 @@ CLI tool to manage OpenClaw model configurations.
4
4
 
5
5
  ## Quick Start Flow
6
6
 
7
- ![Setup Flow](docs/setup-flow.svg)
7
+ ![Setup Flow](https://raw.githubusercontent.com/qidu/clawd-models/refs/heads/main/docs/setup-flow.svg)
8
8
 
9
9
  ## Prerequisite
10
- Install and Setup `openclaw` firstly, refer to https://github.com/openclaw/openclaw
10
+ Install and Setup `openclaw` firstly
11
11
  ```
12
12
  # setup openclaw
13
13
  openclaw setup
@@ -16,12 +16,14 @@ openclaw setup
16
16
 
17
17
  openclaw configure
18
18
  ```
19
+ Refer to https://github.com/openclaw/openclaw
19
20
 
20
21
  ## Installation
21
22
 
22
23
  ```bash
23
24
  npm i -g clawd-models
24
25
  ```
26
+ Refer to https://github.com/qidu/clawd-models
25
27
 
26
28
  ## Usage
27
29
 
@@ -9,7 +9,7 @@ const OPENCLAW_CONFIG_PATH = path.join(os.homedir(), '.openclaw', 'openclaw.json
9
9
  const CLAWD_MODELS_DIR = path.join(os.homedir(), '.clawd-models');
10
10
  const CLAWD_MODELS_BOT_FILE = path.join(CLAWD_MODELS_DIR, 'bot.json');
11
11
 
12
- const CURRENT_VERSION = '2026.2.1';
12
+ const CURRENT_VERSION = '2026.2.10';
13
13
 
14
14
  // Supported bot configurations
15
15
  const BOT_CONFIGS = [
@@ -198,7 +198,7 @@ function getBotFromArgs() {
198
198
  program
199
199
  .name('clawd-models')
200
200
  .description('CLI tool to manage OpenClaw model configurations')
201
- .version('1.0.4')
201
+ .version('1.0.6')
202
202
  .showHelpAfterError()
203
203
  .option('--bot <bot-id>', 'Target bot: openclaw, clawdbot, moltbot (also sets as default)')
204
204
  .option('--clear-bot', 'Clear the default bot setting');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawd-models",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "CLI tool to manage OpenClaw model configurations",
5
5
  "main": "bin/clawd-models.js",
6
6
  "bin": {