@redonvn/redai-openapi-user 0.1.1

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 ADDED
@@ -0,0 +1,38 @@
1
+ # @redonvn/redai-openapi-user
2
+
3
+ OpenClaw plugin generated from `openapi/redai/user.json`.
4
+
5
+ ## Build
6
+
7
+ ```bash
8
+ npm run build --workspace @redonvn/redai-openapi-user
9
+ ```
10
+
11
+ ## Install in OpenClaw
12
+
13
+ ```bash
14
+ openclaw plugins install @redonvn/redai-openapi-user
15
+ openclaw plugins enable redai-openapi-user
16
+ ```
17
+
18
+ ## Runtime config
19
+
20
+ Add runtime config in `~/.openclaw/openclaw.json`:
21
+
22
+ ```json5
23
+ {
24
+ "plugins": {
25
+ "entries": {
26
+ "redai-openapi-user": {
27
+ "enabled": true,
28
+ "config": {
29
+ "baseUrl": "https://v2.redai.vn/api",
30
+ "bearerToken": "YOUR_TOKEN",
31
+ "workspaceId": "YOUR_WORKSPACE_ID",
32
+ "baseId": "YOUR_BASE_ID"
33
+ }
34
+ }
35
+ }
36
+ }
37
+ }
38
+ ```