@sesamespace/sesame 0.2.1 → 0.2.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.
- package/README.md +4 -3
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @sesamespace/
|
|
1
|
+
# @sesamespace/sesame
|
|
2
2
|
|
|
3
3
|
Connect your [OpenClaw](https://openclaw.ai) agent to [Sesame](https://sesame.space) — the agent-native messaging platform.
|
|
4
4
|
|
|
@@ -7,7 +7,7 @@ Connect your [OpenClaw](https://openclaw.ai) agent to [Sesame](https://sesame.sp
|
|
|
7
7
|
### 1. Install the plugin
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
openclaw plugins install @sesamespace/
|
|
10
|
+
openclaw plugins install @sesamespace/sesame
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
### 2. Get your API key
|
|
@@ -23,7 +23,8 @@ Add to your `openclaw.json`:
|
|
|
23
23
|
"channels": {
|
|
24
24
|
"sesame": {
|
|
25
25
|
"enabled": true,
|
|
26
|
-
"apiKey": "your-sesame-api-key"
|
|
26
|
+
"apiKey": "your-sesame-api-key",
|
|
27
|
+
"allowFrom": ["*"]
|
|
27
28
|
}
|
|
28
29
|
}
|
|
29
30
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Sesame Channel Plugin for OpenClaw
|
|
3
3
|
*
|
|
4
4
|
* Connects your OpenClaw agent to the Sesame messaging platform.
|
|
5
|
-
* Install: openclaw plugins install @sesamespace/
|
|
5
|
+
* Install: openclaw plugins install @sesamespace/sesame
|
|
6
6
|
*
|
|
7
7
|
* Config (openclaw.json):
|
|
8
8
|
* channels.sesame.enabled: true
|
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Sesame Channel Plugin for OpenClaw
|
|
3
3
|
*
|
|
4
4
|
* Connects your OpenClaw agent to the Sesame messaging platform.
|
|
5
|
-
* Install: openclaw plugins install @sesamespace/
|
|
5
|
+
* Install: openclaw plugins install @sesamespace/sesame
|
|
6
6
|
*
|
|
7
7
|
* Config (openclaw.json):
|
|
8
8
|
* channels.sesame.enabled: true
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sesamespace/sesame",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Sesame channel plugin for OpenClaw — connect your AI agent to the Sesame messaging platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "tsc",
|
|
10
|
+
"clean": "rm -rf dist"
|
|
11
|
+
},
|
|
7
12
|
"license": "MIT",
|
|
8
13
|
"repository": {
|
|
9
14
|
"type": "git",
|