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 +4 -2
- package/bin/clawd-models.js +2 -2
- package/package.json +1 -1
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
|
-

|
|
7
|
+

|
|
8
8
|
|
|
9
9
|
## Prerequisite
|
|
10
|
-
Install and Setup `openclaw` firstly
|
|
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
|
|
package/bin/clawd-models.js
CHANGED
|
@@ -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.
|
|
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.
|
|
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');
|