@toothfairyai/cli 1.0.13 → 1.0.15
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 -4
- package/bin/toothfairy.js +2722 -383
- package/package.json +3 -3
- package/src/api.js +1402 -111
- package/src/config.js +186 -117
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# ToothFairyAI CLI (Node.js)
|
|
2
2
|
|
|
3
|
-
A Node.js command-line interface for interacting with
|
|
3
|
+
A Node.js command-line interface for interacting with ToothFairyAI agents.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -57,7 +57,7 @@ Configure ToothFairy CLI credentials and settings.
|
|
|
57
57
|
- `--api-key <key>`: API key (required)
|
|
58
58
|
- `--workspace-id <id>`: Workspace ID (required)
|
|
59
59
|
- `--base-url <url>`: ToothFairy API base URL (optional, defaults to production)
|
|
60
|
-
- `--ai-url <url>`:
|
|
60
|
+
- `--ai-url <url>`: ToothFairyAI URL (optional, defaults to production)
|
|
61
61
|
- `--config-path <path>`: Custom path to save config file
|
|
62
62
|
|
|
63
63
|
**Example:**
|
|
@@ -66,7 +66,7 @@ toothfairy configure --api-key "your-key" --workspace-id "your-workspace"
|
|
|
66
66
|
```
|
|
67
67
|
|
|
68
68
|
#### `send <message>`
|
|
69
|
-
Send a message to a
|
|
69
|
+
Send a message to a ToothFairyAI agent.
|
|
70
70
|
|
|
71
71
|
**Arguments:**
|
|
72
72
|
- `message`: The message text to send
|