@wooters/crabcallr 0.5.5 → 0.5.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
@@ -1,5 +1,9 @@
1
1
  # CrabCallr Plugin for OpenClaw
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@wooters/crabcallr)](https://www.npmjs.com/package/@wooters/crabcallr)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+ [![Node.js >= 18](https://img.shields.io/badge/node-%3E%3D18-brightgreen)](https://nodejs.org)
6
+
3
7
  Talk to your OpenClaw assistant via phone or browser with CrabCallr.
4
8
 
5
9
  ## Overview
@@ -22,7 +26,7 @@ openclaw plugins install @wooters/crabcallr
22
26
 
23
27
  ## Setup
24
28
 
25
- 1. **Get an API key** - Sign up at [app.crabcallr.com](https://app.crabcallr.com) and generate an API key
29
+ 1. **Get an API key** - Sign up at [crabcallr.com/app](https://crabcallr.com/app) and generate an API key
26
30
 
27
31
  2. **Configure the plugin** - Add to your `~/.openclaw/openclaw.json`:
28
32
 
@@ -47,7 +51,7 @@ openclaw plugins install @wooters/crabcallr
47
51
 
48
52
  3. **Restart OpenClaw Gateway** - The plugin will automatically connect to the CrabCallr service
49
53
 
50
- 4. **Start calling** - Visit [app.crabcallr.com](https://app.crabcallr.com) and click "Call" to talk to your assistant
54
+ 4. **Start calling** - Visit [crabcallr.com/app](https://crabcallr.com/app) and click "Call" to talk to your assistant
51
55
 
52
56
  ## Configuration Options
53
57
 
package/dist/channel.js CHANGED
@@ -152,7 +152,7 @@ const CrabCallrAccountSchema = Type.Object({
152
152
  name: Type.Optional(Type.String()),
153
153
  enabled: Type.Optional(Type.Boolean()),
154
154
  apiKey: Type.Optional(Type.String({
155
- description: "Your CrabCallr API key from app.crabcallr.com",
155
+ description: "Your CrabCallr API key from crabcallr.com/app",
156
156
  })),
157
157
  serviceUrl: Type.Optional(Type.String({
158
158
  description: "CrabCallr service WebSocket URL",
package/dist/config.js CHANGED
@@ -39,7 +39,7 @@ export const DEFAULT_CONFIG = {
39
39
  export function validateConfig(config) {
40
40
  const apiKey = config.apiKey?.trim();
41
41
  if (!apiKey) {
42
- throw new Error('CrabCallr API key is required. Get one at https://app.crabcallr.com');
42
+ throw new Error('CrabCallr API key is required. Get one at https://crabcallr.com/app');
43
43
  }
44
44
  if (!apiKey.startsWith('cc_')) {
45
45
  throw new Error('Invalid CrabCallr API key format. Keys should start with "cc_"');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wooters/crabcallr",
3
- "version": "0.5.5",
3
+ "version": "0.5.6",
4
4
  "description": "OpenClaw plugin for CrabCallr voice interface - talk to OpenClaw via phone or browser",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -70,6 +70,9 @@
70
70
  "defaultChoice": "npm"
71
71
  }
72
72
  },
73
+ "overrides": {
74
+ "minimatch": "^10.2.1"
75
+ },
73
76
  "engines": {
74
77
  "node": ">=18.0.0"
75
78
  }