@luv20100918/openclaw-channel-talk 1.0.0 → 1.0.2

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 (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +8 -3
package/README.md CHANGED
@@ -27,7 +27,7 @@ npm install
27
27
  Or install via npm:
28
28
 
29
29
  ```bash
30
- npm install @openclaw/channel-talk
30
+ npm install @luv20100918/openclaw-channel-talk
31
31
  ```
32
32
 
33
33
  ## Configuration
@@ -78,7 +78,9 @@ openclaw config set channels.channel-talk.accounts.default.botName "Your Bot Nam
78
78
  - URL: `http://YOUR_SERVER:18789/webhooks/channel-talk/default`
79
79
  - Method: POST
80
80
 
81
- #### Function Endpoint (for commands)
81
+ > ⚠️ **Note:** The Channel Talk Webhook method may not work reliably in many cases. It appears to be primarily designed for customer support scenarios. **For team internal chat bot usage, we recommend using the Function (Command) method below.**
82
+
83
+ #### Function Endpoint (for commands) - Recommended
82
84
  1. Go to Channel Talk → App Store → Custom Function
83
85
  2. Create a new function
84
86
  3. Function URL: `http://YOUR_SERVER:18789/functions/channel-talk/default`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luv20100918/openclaw-channel-talk",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Channel Talk (채널톡) integration for OpenClaw - Connect your AI assistant to Channel Talk team chats and customer conversations",
5
5
  "keywords": [
6
6
  "openclaw",
@@ -40,14 +40,19 @@
40
40
  "openclaw": ">=2026.2.0"
41
41
  },
42
42
  "openclaw": {
43
- "extensions": ["./index.ts"],
43
+ "extensions": [
44
+ "./index.ts"
45
+ ],
44
46
  "channel": {
45
47
  "id": "channel-talk",
46
48
  "label": "Channel Talk",
47
49
  "selectionLabel": "Channel Talk (채널톡)",
48
50
  "docsPath": "/channels/channel-talk",
49
51
  "blurb": "Channel Talk customer messaging integration.",
50
- "aliases": ["ct", "channeltalk"]
52
+ "aliases": [
53
+ "ct",
54
+ "channeltalk"
55
+ ]
51
56
  }
52
57
  },
53
58
  "engines": {