feishu-openclaw 0.3.0

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 (61) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +107 -0
  3. package/clawdbot.plugin.json +12 -0
  4. package/dist/index.d.ts +15 -0
  5. package/dist/index.d.ts.map +1 -0
  6. package/dist/index.js +22 -0
  7. package/dist/index.js.map +1 -0
  8. package/dist/src/accounts.d.ts +17 -0
  9. package/dist/src/accounts.d.ts.map +1 -0
  10. package/dist/src/accounts.js +81 -0
  11. package/dist/src/accounts.js.map +1 -0
  12. package/dist/src/channel.d.ts +8 -0
  13. package/dist/src/channel.d.ts.map +1 -0
  14. package/dist/src/channel.js +373 -0
  15. package/dist/src/channel.js.map +1 -0
  16. package/dist/src/config-json-schema.d.ts +100 -0
  17. package/dist/src/config-json-schema.d.ts.map +1 -0
  18. package/dist/src/config-json-schema.js +42 -0
  19. package/dist/src/config-json-schema.js.map +1 -0
  20. package/dist/src/dedup.d.ts +8 -0
  21. package/dist/src/dedup.d.ts.map +1 -0
  22. package/dist/src/dedup.js +25 -0
  23. package/dist/src/dedup.js.map +1 -0
  24. package/dist/src/group-filter.d.ts +15 -0
  25. package/dist/src/group-filter.d.ts.map +1 -0
  26. package/dist/src/group-filter.js +44 -0
  27. package/dist/src/group-filter.js.map +1 -0
  28. package/dist/src/media.d.ts +21 -0
  29. package/dist/src/media.d.ts.map +1 -0
  30. package/dist/src/media.js +133 -0
  31. package/dist/src/media.js.map +1 -0
  32. package/dist/src/onboarding.d.ts +51 -0
  33. package/dist/src/onboarding.d.ts.map +1 -0
  34. package/dist/src/onboarding.js +213 -0
  35. package/dist/src/onboarding.js.map +1 -0
  36. package/dist/src/probe.d.ts +10 -0
  37. package/dist/src/probe.d.ts.map +1 -0
  38. package/dist/src/probe.js +48 -0
  39. package/dist/src/probe.js.map +1 -0
  40. package/dist/src/receive.d.ts +25 -0
  41. package/dist/src/receive.d.ts.map +1 -0
  42. package/dist/src/receive.js +217 -0
  43. package/dist/src/receive.js.map +1 -0
  44. package/dist/src/runtime.d.ts +7 -0
  45. package/dist/src/runtime.d.ts.map +1 -0
  46. package/dist/src/runtime.js +14 -0
  47. package/dist/src/runtime.js.map +1 -0
  48. package/dist/src/send.d.ts +23 -0
  49. package/dist/src/send.d.ts.map +1 -0
  50. package/dist/src/send.js +158 -0
  51. package/dist/src/send.js.map +1 -0
  52. package/dist/src/status-issues.d.ts +7 -0
  53. package/dist/src/status-issues.d.ts.map +1 -0
  54. package/dist/src/status-issues.js +48 -0
  55. package/dist/src/status-issues.js.map +1 -0
  56. package/dist/src/types.d.ts +62 -0
  57. package/dist/src/types.d.ts.map +1 -0
  58. package/dist/src/types.js +5 -0
  59. package/dist/src/types.js.map +1 -0
  60. package/openclaw.plugin.json +12 -0
  61. package/package.json +120 -0
package/package.json ADDED
@@ -0,0 +1,120 @@
1
+ {
2
+ "name": "feishu-openclaw",
3
+ "version": "0.3.0",
4
+ "type": "module",
5
+ "description": "飞书机器人插件 - 让 AI 助手接入飞书,无需服务器 | Feishu/Lark channel plugin for Clawdbot / OpenClaw",
6
+ "author": "Alex Yang <anyangsen@hotmail.com>",
7
+ "license": "MIT",
8
+ "homepage": "https://github.com/AlexAnys/openclaw-feishu",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/AlexAnys/openclaw-feishu.git"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/AlexAnys/openclaw-feishu/issues"
15
+ },
16
+ "keywords": [
17
+ "clawdbot",
18
+ "openclaw",
19
+ "feishu",
20
+ "lark",
21
+ "飞书",
22
+ "飞书机器人",
23
+ "chatbot",
24
+ "ai-agent",
25
+ "ai助手",
26
+ "messaging",
27
+ "channel-plugin",
28
+ "websocket",
29
+ "企业微信替代"
30
+ ],
31
+ "main": "dist/index.js",
32
+ "types": "dist/index.d.ts",
33
+ "exports": {
34
+ ".": {
35
+ "import": "./dist/index.js",
36
+ "types": "./dist/index.d.ts"
37
+ }
38
+ },
39
+ "files": [
40
+ "dist",
41
+ "clawdbot.plugin.json",
42
+ "openclaw.plugin.json",
43
+ "README.md",
44
+ "LICENSE"
45
+ ],
46
+ "clawdbot": {
47
+ "extensions": [
48
+ "./dist/index.js"
49
+ ],
50
+ "channel": {
51
+ "id": "feishu",
52
+ "label": "Feishu",
53
+ "selectionLabel": "Feishu (飞书)",
54
+ "docsPath": "/channels/feishu",
55
+ "docsLabel": "feishu",
56
+ "blurb": "Feishu (Lark) messaging platform with Bot WebSocket API.",
57
+ "aliases": [
58
+ "lark",
59
+ "fs"
60
+ ],
61
+ "order": 85,
62
+ "quickstartAllowFrom": true
63
+ },
64
+ "install": {
65
+ "npmSpec": "feishu-openclaw",
66
+ "defaultChoice": "npm"
67
+ }
68
+ },
69
+ "openclaw": {
70
+ "extensions": [
71
+ "./dist/index.js"
72
+ ],
73
+ "channel": {
74
+ "id": "feishu",
75
+ "label": "Feishu",
76
+ "selectionLabel": "Feishu (飞书)",
77
+ "docsPath": "/channels/feishu",
78
+ "docsLabel": "feishu",
79
+ "blurb": "Feishu (Lark) messaging platform with Bot WebSocket API.",
80
+ "aliases": [
81
+ "lark",
82
+ "fs"
83
+ ],
84
+ "order": 85,
85
+ "quickstartAllowFrom": true
86
+ },
87
+ "install": {
88
+ "npmSpec": "feishu-openclaw",
89
+ "defaultChoice": "npm"
90
+ }
91
+ },
92
+ "scripts": {
93
+ "build": "tsc",
94
+ "clean": "rm -rf dist",
95
+ "prepublishOnly": "npm run clean && npm run build",
96
+ "typecheck": "tsc --noEmit"
97
+ },
98
+ "peerDependencies": {
99
+ "clawdbot": ">=2026.1.20",
100
+ "openclaw": ">=2026.1.29"
101
+ },
102
+ "peerDependenciesMeta": {
103
+ "clawdbot": {
104
+ "optional": true
105
+ },
106
+ "openclaw": {
107
+ "optional": true
108
+ }
109
+ },
110
+ "dependencies": {
111
+ "@larksuiteoapi/node-sdk": "^1.56.1"
112
+ },
113
+ "devDependencies": {
114
+ "@types/node": "^22.0.0",
115
+ "typescript": "^5.8.0"
116
+ },
117
+ "engines": {
118
+ "node": ">=20.0.0"
119
+ }
120
+ }