@dobby.ai/dobby 0.1.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 (174) hide show
  1. package/.env.example +9 -0
  2. package/AGENTS.md +267 -0
  3. package/README.md +382 -0
  4. package/ROADMAP.md +34 -0
  5. package/config/cron.example.json +9 -0
  6. package/config/gateway.example.json +128 -0
  7. package/config/models.custom.example.json +27 -0
  8. package/dist/src/agent/event-forwarder.js +341 -0
  9. package/dist/src/agent/tests/event-forwarder.test.js +113 -0
  10. package/dist/src/cli/commands/config.js +243 -0
  11. package/dist/src/cli/commands/configure.js +61 -0
  12. package/dist/src/cli/commands/cron.js +288 -0
  13. package/dist/src/cli/commands/doctor.js +189 -0
  14. package/dist/src/cli/commands/extension.js +151 -0
  15. package/dist/src/cli/commands/init.js +286 -0
  16. package/dist/src/cli/commands/start.js +177 -0
  17. package/dist/src/cli/commands/topology.js +254 -0
  18. package/dist/src/cli/index.js +8 -0
  19. package/dist/src/cli/program.js +386 -0
  20. package/dist/src/cli/shared/config-io.js +223 -0
  21. package/dist/src/cli/shared/config-mutators.js +345 -0
  22. package/dist/src/cli/shared/config-path.js +207 -0
  23. package/dist/src/cli/shared/config-schema.js +159 -0
  24. package/dist/src/cli/shared/config-types.js +1 -0
  25. package/dist/src/cli/shared/configure-sections.js +429 -0
  26. package/dist/src/cli/shared/discord-config.js +12 -0
  27. package/dist/src/cli/shared/init-catalog.js +115 -0
  28. package/dist/src/cli/shared/init-models-file.js +65 -0
  29. package/dist/src/cli/shared/presets.js +86 -0
  30. package/dist/src/cli/shared/runtime.js +29 -0
  31. package/dist/src/cli/shared/schema-prompts.js +325 -0
  32. package/dist/src/cli/tests/config-command.test.js +42 -0
  33. package/dist/src/cli/tests/config-io.test.js +64 -0
  34. package/dist/src/cli/tests/config-mutators.test.js +47 -0
  35. package/dist/src/cli/tests/config-path.test.js +21 -0
  36. package/dist/src/cli/tests/discord-config.test.js +23 -0
  37. package/dist/src/cli/tests/doctor.test.js +107 -0
  38. package/dist/src/cli/tests/init-catalog.test.js +87 -0
  39. package/dist/src/cli/tests/presets.test.js +41 -0
  40. package/dist/src/cli/tests/program-options.test.js +92 -0
  41. package/dist/src/cli/tests/routing-config.test.js +199 -0
  42. package/dist/src/cli/tests/routing-legacy.test.js +191 -0
  43. package/dist/src/core/control-command.js +12 -0
  44. package/dist/src/core/dedup-store.js +92 -0
  45. package/dist/src/core/gateway.js +432 -0
  46. package/dist/src/core/routing.js +306 -0
  47. package/dist/src/core/runtime-registry.js +119 -0
  48. package/dist/src/core/tests/control-command.test.js +17 -0
  49. package/dist/src/core/tests/gateway-update-strategy.test.js +167 -0
  50. package/dist/src/core/tests/runtime-registry.test.js +116 -0
  51. package/dist/src/core/tests/typing-controller.test.js +103 -0
  52. package/dist/src/core/types.js +1 -0
  53. package/dist/src/core/typing-controller.js +88 -0
  54. package/dist/src/cron/config.js +114 -0
  55. package/dist/src/cron/schedule.js +49 -0
  56. package/dist/src/cron/service.js +196 -0
  57. package/dist/src/cron/store.js +142 -0
  58. package/dist/src/cron/types.js +1 -0
  59. package/dist/src/extension/loader.js +97 -0
  60. package/dist/src/extension/manager.js +269 -0
  61. package/dist/src/extension/manifest.js +21 -0
  62. package/dist/src/extension/registry.js +137 -0
  63. package/dist/src/main.js +6 -0
  64. package/dist/src/sandbox/executor.js +1 -0
  65. package/dist/src/sandbox/host-executor.js +111 -0
  66. package/docs/BOXLITE_SANDBOX_FEASIBILITY.md +175 -0
  67. package/docs/CRON_SCHEDULER_DESIGN.md +374 -0
  68. package/docs/DOCKER_SANDBOX_vs_BOXLITE.md +77 -0
  69. package/docs/EXTENSION_SYSTEM_ARCHITECTURE.md +119 -0
  70. package/docs/MVP.md +135 -0
  71. package/docs/RUNBOOK.md +242 -0
  72. package/docs/TEAMWORK_HANDOFF_DESIGN.md +440 -0
  73. package/package.json +43 -0
  74. package/plugins/connector-discord/dobby.manifest.json +18 -0
  75. package/plugins/connector-discord/index.js +1 -0
  76. package/plugins/connector-discord/package-lock.json +360 -0
  77. package/plugins/connector-discord/package.json +38 -0
  78. package/plugins/connector-discord/src/connector.ts +350 -0
  79. package/plugins/connector-discord/src/contribution.ts +21 -0
  80. package/plugins/connector-discord/src/mapper.ts +102 -0
  81. package/plugins/connector-discord/tsconfig.json +19 -0
  82. package/plugins/connector-feishu/dobby.manifest.json +18 -0
  83. package/plugins/connector-feishu/index.js +1 -0
  84. package/plugins/connector-feishu/package-lock.json +618 -0
  85. package/plugins/connector-feishu/package.json +38 -0
  86. package/plugins/connector-feishu/src/connector.ts +343 -0
  87. package/plugins/connector-feishu/src/contribution.ts +26 -0
  88. package/plugins/connector-feishu/src/mapper.ts +401 -0
  89. package/plugins/connector-feishu/tsconfig.json +19 -0
  90. package/plugins/plugin-sdk/index.d.ts +261 -0
  91. package/plugins/plugin-sdk/index.js +1 -0
  92. package/plugins/plugin-sdk/package-lock.json +12 -0
  93. package/plugins/plugin-sdk/package.json +22 -0
  94. package/plugins/provider-claude/dobby.manifest.json +17 -0
  95. package/plugins/provider-claude/index.js +1 -0
  96. package/plugins/provider-claude/package-lock.json +3398 -0
  97. package/plugins/provider-claude/package.json +39 -0
  98. package/plugins/provider-claude/src/contribution.ts +1018 -0
  99. package/plugins/provider-claude/tsconfig.json +19 -0
  100. package/plugins/provider-claude-cli/dobby.manifest.json +17 -0
  101. package/plugins/provider-claude-cli/index.js +1 -0
  102. package/plugins/provider-claude-cli/package-lock.json +2898 -0
  103. package/plugins/provider-claude-cli/package.json +38 -0
  104. package/plugins/provider-claude-cli/src/contribution.ts +1673 -0
  105. package/plugins/provider-claude-cli/tsconfig.json +19 -0
  106. package/plugins/provider-pi/dobby.manifest.json +17 -0
  107. package/plugins/provider-pi/index.js +1 -0
  108. package/plugins/provider-pi/package-lock.json +3877 -0
  109. package/plugins/provider-pi/package.json +40 -0
  110. package/plugins/provider-pi/src/contribution.ts +476 -0
  111. package/plugins/provider-pi/tsconfig.json +19 -0
  112. package/plugins/sandbox-core/boxlite.js +1 -0
  113. package/plugins/sandbox-core/dobby.manifest.json +17 -0
  114. package/plugins/sandbox-core/docker.js +1 -0
  115. package/plugins/sandbox-core/package-lock.json +136 -0
  116. package/plugins/sandbox-core/package.json +39 -0
  117. package/plugins/sandbox-core/src/boxlite-context.ts +2 -0
  118. package/plugins/sandbox-core/src/boxlite-contribution.ts +53 -0
  119. package/plugins/sandbox-core/src/boxlite-executor.ts +911 -0
  120. package/plugins/sandbox-core/src/docker-contribution.ts +43 -0
  121. package/plugins/sandbox-core/src/docker-executor.ts +217 -0
  122. package/plugins/sandbox-core/tsconfig.json +19 -0
  123. package/scripts/local-extensions.mjs +168 -0
  124. package/src/agent/event-forwarder.ts +414 -0
  125. package/src/cli/commands/config.ts +328 -0
  126. package/src/cli/commands/configure.ts +92 -0
  127. package/src/cli/commands/cron.ts +410 -0
  128. package/src/cli/commands/doctor.ts +230 -0
  129. package/src/cli/commands/extension.ts +205 -0
  130. package/src/cli/commands/init.ts +396 -0
  131. package/src/cli/commands/start.ts +223 -0
  132. package/src/cli/commands/topology.ts +383 -0
  133. package/src/cli/index.ts +9 -0
  134. package/src/cli/program.ts +465 -0
  135. package/src/cli/shared/config-io.ts +277 -0
  136. package/src/cli/shared/config-mutators.ts +440 -0
  137. package/src/cli/shared/config-schema.ts +228 -0
  138. package/src/cli/shared/config-types.ts +121 -0
  139. package/src/cli/shared/configure-sections.ts +551 -0
  140. package/src/cli/shared/discord-config.ts +14 -0
  141. package/src/cli/shared/init-catalog.ts +189 -0
  142. package/src/cli/shared/init-models-file.ts +77 -0
  143. package/src/cli/shared/runtime.ts +33 -0
  144. package/src/cli/shared/schema-prompts.ts +414 -0
  145. package/src/cli/tests/config-command.test.ts +56 -0
  146. package/src/cli/tests/config-io.test.ts +92 -0
  147. package/src/cli/tests/config-mutators.test.ts +59 -0
  148. package/src/cli/tests/doctor.test.ts +120 -0
  149. package/src/cli/tests/init-catalog.test.ts +96 -0
  150. package/src/cli/tests/program-options.test.ts +113 -0
  151. package/src/cli/tests/routing-config.test.ts +209 -0
  152. package/src/core/control-command.ts +12 -0
  153. package/src/core/dedup-store.ts +103 -0
  154. package/src/core/gateway.ts +607 -0
  155. package/src/core/routing.ts +379 -0
  156. package/src/core/runtime-registry.ts +141 -0
  157. package/src/core/tests/control-command.test.ts +20 -0
  158. package/src/core/tests/runtime-registry.test.ts +140 -0
  159. package/src/core/tests/typing-controller.test.ts +129 -0
  160. package/src/core/types.ts +318 -0
  161. package/src/core/typing-controller.ts +119 -0
  162. package/src/cron/config.ts +154 -0
  163. package/src/cron/schedule.ts +61 -0
  164. package/src/cron/service.ts +249 -0
  165. package/src/cron/store.ts +155 -0
  166. package/src/cron/types.ts +60 -0
  167. package/src/extension/loader.ts +145 -0
  168. package/src/extension/manager.ts +355 -0
  169. package/src/extension/manifest.ts +26 -0
  170. package/src/extension/registry.ts +229 -0
  171. package/src/main.ts +8 -0
  172. package/src/sandbox/executor.ts +44 -0
  173. package/src/sandbox/host-executor.ts +118 -0
  174. package/tsconfig.json +18 -0
@@ -0,0 +1,618 @@
1
+ {
2
+ "name": "@dobby.ai/connector-feishu",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "@dobby.ai/connector-feishu",
9
+ "version": "0.1.0",
10
+ "dependencies": {
11
+ "@larksuiteoapi/node-sdk": "^1.59.0",
12
+ "zod": "^4.3.6"
13
+ },
14
+ "devDependencies": {
15
+ "@dobby.ai/plugin-sdk": "file:../plugin-sdk",
16
+ "@types/node": "^22.10.5",
17
+ "typescript": "^5.9.2"
18
+ },
19
+ "peerDependencies": {
20
+ "@dobby.ai/plugin-sdk": "^0.1.0"
21
+ },
22
+ "peerDependenciesMeta": {
23
+ "@dobby.ai/plugin-sdk": {
24
+ "optional": true
25
+ }
26
+ }
27
+ },
28
+ "../plugin-sdk": {
29
+ "name": "@dobby.ai/plugin-sdk",
30
+ "version": "0.1.2",
31
+ "dev": true
32
+ },
33
+ "node_modules/@dobby.ai/plugin-sdk": {
34
+ "resolved": "../plugin-sdk",
35
+ "link": true
36
+ },
37
+ "node_modules/@larksuiteoapi/node-sdk": {
38
+ "version": "1.59.0",
39
+ "resolved": "https://registry.npmjs.org/@larksuiteoapi/node-sdk/-/node-sdk-1.59.0.tgz",
40
+ "integrity": "sha512-sBpkruTvZDOxnVtoTbepWKRX0j1Y1ZElQYu0x7+v088sI9pcpbVp6ZzCGn62dhrKPatzNyCJyzYCPXPYQWccrA==",
41
+ "license": "MIT",
42
+ "dependencies": {
43
+ "axios": "~1.13.3",
44
+ "lodash.identity": "^3.0.0",
45
+ "lodash.merge": "^4.6.2",
46
+ "lodash.pickby": "^4.6.0",
47
+ "protobufjs": "^7.2.6",
48
+ "qs": "^6.14.2",
49
+ "ws": "^8.19.0"
50
+ }
51
+ },
52
+ "node_modules/@protobufjs/aspromise": {
53
+ "version": "1.1.2",
54
+ "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
55
+ "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
56
+ "license": "BSD-3-Clause"
57
+ },
58
+ "node_modules/@protobufjs/base64": {
59
+ "version": "1.1.2",
60
+ "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
61
+ "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
62
+ "license": "BSD-3-Clause"
63
+ },
64
+ "node_modules/@protobufjs/codegen": {
65
+ "version": "2.0.4",
66
+ "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz",
67
+ "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==",
68
+ "license": "BSD-3-Clause"
69
+ },
70
+ "node_modules/@protobufjs/eventemitter": {
71
+ "version": "1.1.0",
72
+ "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
73
+ "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==",
74
+ "license": "BSD-3-Clause"
75
+ },
76
+ "node_modules/@protobufjs/fetch": {
77
+ "version": "1.1.0",
78
+ "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz",
79
+ "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==",
80
+ "license": "BSD-3-Clause",
81
+ "dependencies": {
82
+ "@protobufjs/aspromise": "^1.1.1",
83
+ "@protobufjs/inquire": "^1.1.0"
84
+ }
85
+ },
86
+ "node_modules/@protobufjs/float": {
87
+ "version": "1.0.2",
88
+ "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
89
+ "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
90
+ "license": "BSD-3-Clause"
91
+ },
92
+ "node_modules/@protobufjs/inquire": {
93
+ "version": "1.1.0",
94
+ "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz",
95
+ "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==",
96
+ "license": "BSD-3-Clause"
97
+ },
98
+ "node_modules/@protobufjs/path": {
99
+ "version": "1.1.2",
100
+ "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
101
+ "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
102
+ "license": "BSD-3-Clause"
103
+ },
104
+ "node_modules/@protobufjs/pool": {
105
+ "version": "1.1.0",
106
+ "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
107
+ "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
108
+ "license": "BSD-3-Clause"
109
+ },
110
+ "node_modules/@protobufjs/utf8": {
111
+ "version": "1.1.0",
112
+ "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz",
113
+ "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==",
114
+ "license": "BSD-3-Clause"
115
+ },
116
+ "node_modules/@types/node": {
117
+ "version": "22.19.15",
118
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.15.tgz",
119
+ "integrity": "sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg==",
120
+ "license": "MIT",
121
+ "dependencies": {
122
+ "undici-types": "~6.21.0"
123
+ }
124
+ },
125
+ "node_modules/asynckit": {
126
+ "version": "0.4.0",
127
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
128
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
129
+ "license": "MIT"
130
+ },
131
+ "node_modules/axios": {
132
+ "version": "1.13.6",
133
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.13.6.tgz",
134
+ "integrity": "sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==",
135
+ "license": "MIT",
136
+ "dependencies": {
137
+ "follow-redirects": "^1.15.11",
138
+ "form-data": "^4.0.5",
139
+ "proxy-from-env": "^1.1.0"
140
+ }
141
+ },
142
+ "node_modules/call-bind-apply-helpers": {
143
+ "version": "1.0.2",
144
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
145
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
146
+ "license": "MIT",
147
+ "dependencies": {
148
+ "es-errors": "^1.3.0",
149
+ "function-bind": "^1.1.2"
150
+ },
151
+ "engines": {
152
+ "node": ">= 0.4"
153
+ }
154
+ },
155
+ "node_modules/call-bound": {
156
+ "version": "1.0.4",
157
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
158
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
159
+ "license": "MIT",
160
+ "dependencies": {
161
+ "call-bind-apply-helpers": "^1.0.2",
162
+ "get-intrinsic": "^1.3.0"
163
+ },
164
+ "engines": {
165
+ "node": ">= 0.4"
166
+ },
167
+ "funding": {
168
+ "url": "https://github.com/sponsors/ljharb"
169
+ }
170
+ },
171
+ "node_modules/combined-stream": {
172
+ "version": "1.0.8",
173
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
174
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
175
+ "license": "MIT",
176
+ "dependencies": {
177
+ "delayed-stream": "~1.0.0"
178
+ },
179
+ "engines": {
180
+ "node": ">= 0.8"
181
+ }
182
+ },
183
+ "node_modules/delayed-stream": {
184
+ "version": "1.0.0",
185
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
186
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
187
+ "license": "MIT",
188
+ "engines": {
189
+ "node": ">=0.4.0"
190
+ }
191
+ },
192
+ "node_modules/dunder-proto": {
193
+ "version": "1.0.1",
194
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
195
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
196
+ "license": "MIT",
197
+ "dependencies": {
198
+ "call-bind-apply-helpers": "^1.0.1",
199
+ "es-errors": "^1.3.0",
200
+ "gopd": "^1.2.0"
201
+ },
202
+ "engines": {
203
+ "node": ">= 0.4"
204
+ }
205
+ },
206
+ "node_modules/es-define-property": {
207
+ "version": "1.0.1",
208
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
209
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
210
+ "license": "MIT",
211
+ "engines": {
212
+ "node": ">= 0.4"
213
+ }
214
+ },
215
+ "node_modules/es-errors": {
216
+ "version": "1.3.0",
217
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
218
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
219
+ "license": "MIT",
220
+ "engines": {
221
+ "node": ">= 0.4"
222
+ }
223
+ },
224
+ "node_modules/es-object-atoms": {
225
+ "version": "1.1.1",
226
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
227
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
228
+ "license": "MIT",
229
+ "dependencies": {
230
+ "es-errors": "^1.3.0"
231
+ },
232
+ "engines": {
233
+ "node": ">= 0.4"
234
+ }
235
+ },
236
+ "node_modules/es-set-tostringtag": {
237
+ "version": "2.1.0",
238
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
239
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
240
+ "license": "MIT",
241
+ "dependencies": {
242
+ "es-errors": "^1.3.0",
243
+ "get-intrinsic": "^1.2.6",
244
+ "has-tostringtag": "^1.0.2",
245
+ "hasown": "^2.0.2"
246
+ },
247
+ "engines": {
248
+ "node": ">= 0.4"
249
+ }
250
+ },
251
+ "node_modules/follow-redirects": {
252
+ "version": "1.15.11",
253
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
254
+ "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
255
+ "funding": [
256
+ {
257
+ "type": "individual",
258
+ "url": "https://github.com/sponsors/RubenVerborgh"
259
+ }
260
+ ],
261
+ "license": "MIT",
262
+ "engines": {
263
+ "node": ">=4.0"
264
+ },
265
+ "peerDependenciesMeta": {
266
+ "debug": {
267
+ "optional": true
268
+ }
269
+ }
270
+ },
271
+ "node_modules/form-data": {
272
+ "version": "4.0.5",
273
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
274
+ "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
275
+ "license": "MIT",
276
+ "dependencies": {
277
+ "asynckit": "^0.4.0",
278
+ "combined-stream": "^1.0.8",
279
+ "es-set-tostringtag": "^2.1.0",
280
+ "hasown": "^2.0.2",
281
+ "mime-types": "^2.1.12"
282
+ },
283
+ "engines": {
284
+ "node": ">= 6"
285
+ }
286
+ },
287
+ "node_modules/function-bind": {
288
+ "version": "1.1.2",
289
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
290
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
291
+ "license": "MIT",
292
+ "funding": {
293
+ "url": "https://github.com/sponsors/ljharb"
294
+ }
295
+ },
296
+ "node_modules/get-intrinsic": {
297
+ "version": "1.3.0",
298
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
299
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
300
+ "license": "MIT",
301
+ "dependencies": {
302
+ "call-bind-apply-helpers": "^1.0.2",
303
+ "es-define-property": "^1.0.1",
304
+ "es-errors": "^1.3.0",
305
+ "es-object-atoms": "^1.1.1",
306
+ "function-bind": "^1.1.2",
307
+ "get-proto": "^1.0.1",
308
+ "gopd": "^1.2.0",
309
+ "has-symbols": "^1.1.0",
310
+ "hasown": "^2.0.2",
311
+ "math-intrinsics": "^1.1.0"
312
+ },
313
+ "engines": {
314
+ "node": ">= 0.4"
315
+ },
316
+ "funding": {
317
+ "url": "https://github.com/sponsors/ljharb"
318
+ }
319
+ },
320
+ "node_modules/get-proto": {
321
+ "version": "1.0.1",
322
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
323
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
324
+ "license": "MIT",
325
+ "dependencies": {
326
+ "dunder-proto": "^1.0.1",
327
+ "es-object-atoms": "^1.0.0"
328
+ },
329
+ "engines": {
330
+ "node": ">= 0.4"
331
+ }
332
+ },
333
+ "node_modules/gopd": {
334
+ "version": "1.2.0",
335
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
336
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
337
+ "license": "MIT",
338
+ "engines": {
339
+ "node": ">= 0.4"
340
+ },
341
+ "funding": {
342
+ "url": "https://github.com/sponsors/ljharb"
343
+ }
344
+ },
345
+ "node_modules/has-symbols": {
346
+ "version": "1.1.0",
347
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
348
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
349
+ "license": "MIT",
350
+ "engines": {
351
+ "node": ">= 0.4"
352
+ },
353
+ "funding": {
354
+ "url": "https://github.com/sponsors/ljharb"
355
+ }
356
+ },
357
+ "node_modules/has-tostringtag": {
358
+ "version": "1.0.2",
359
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
360
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
361
+ "license": "MIT",
362
+ "dependencies": {
363
+ "has-symbols": "^1.0.3"
364
+ },
365
+ "engines": {
366
+ "node": ">= 0.4"
367
+ },
368
+ "funding": {
369
+ "url": "https://github.com/sponsors/ljharb"
370
+ }
371
+ },
372
+ "node_modules/hasown": {
373
+ "version": "2.0.2",
374
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
375
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
376
+ "license": "MIT",
377
+ "dependencies": {
378
+ "function-bind": "^1.1.2"
379
+ },
380
+ "engines": {
381
+ "node": ">= 0.4"
382
+ }
383
+ },
384
+ "node_modules/lodash.identity": {
385
+ "version": "3.0.0",
386
+ "resolved": "https://registry.npmjs.org/lodash.identity/-/lodash.identity-3.0.0.tgz",
387
+ "integrity": "sha512-AupTIzdLQxJS5wIYUQlgGyk2XRTfGXA+MCghDHqZk0pzUNYvd3EESS6dkChNauNYVIutcb0dfHw1ri9Q1yPV8Q==",
388
+ "license": "MIT"
389
+ },
390
+ "node_modules/lodash.merge": {
391
+ "version": "4.6.2",
392
+ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
393
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
394
+ "license": "MIT"
395
+ },
396
+ "node_modules/lodash.pickby": {
397
+ "version": "4.6.0",
398
+ "resolved": "https://registry.npmjs.org/lodash.pickby/-/lodash.pickby-4.6.0.tgz",
399
+ "integrity": "sha512-AZV+GsS/6ckvPOVQPXSiFFacKvKB4kOQu6ynt9wz0F3LO4R9Ij4K1ddYsIytDpSgLz88JHd9P+oaLeej5/Sl7Q==",
400
+ "license": "MIT"
401
+ },
402
+ "node_modules/long": {
403
+ "version": "5.3.2",
404
+ "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
405
+ "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
406
+ "license": "Apache-2.0"
407
+ },
408
+ "node_modules/math-intrinsics": {
409
+ "version": "1.1.0",
410
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
411
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
412
+ "license": "MIT",
413
+ "engines": {
414
+ "node": ">= 0.4"
415
+ }
416
+ },
417
+ "node_modules/mime-db": {
418
+ "version": "1.52.0",
419
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
420
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
421
+ "license": "MIT",
422
+ "engines": {
423
+ "node": ">= 0.6"
424
+ }
425
+ },
426
+ "node_modules/mime-types": {
427
+ "version": "2.1.35",
428
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
429
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
430
+ "license": "MIT",
431
+ "dependencies": {
432
+ "mime-db": "1.52.0"
433
+ },
434
+ "engines": {
435
+ "node": ">= 0.6"
436
+ }
437
+ },
438
+ "node_modules/object-inspect": {
439
+ "version": "1.13.4",
440
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
441
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
442
+ "license": "MIT",
443
+ "engines": {
444
+ "node": ">= 0.4"
445
+ },
446
+ "funding": {
447
+ "url": "https://github.com/sponsors/ljharb"
448
+ }
449
+ },
450
+ "node_modules/protobufjs": {
451
+ "version": "7.5.4",
452
+ "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.4.tgz",
453
+ "integrity": "sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg==",
454
+ "hasInstallScript": true,
455
+ "license": "BSD-3-Clause",
456
+ "dependencies": {
457
+ "@protobufjs/aspromise": "^1.1.2",
458
+ "@protobufjs/base64": "^1.1.2",
459
+ "@protobufjs/codegen": "^2.0.4",
460
+ "@protobufjs/eventemitter": "^1.1.0",
461
+ "@protobufjs/fetch": "^1.1.0",
462
+ "@protobufjs/float": "^1.0.2",
463
+ "@protobufjs/inquire": "^1.1.0",
464
+ "@protobufjs/path": "^1.1.2",
465
+ "@protobufjs/pool": "^1.1.0",
466
+ "@protobufjs/utf8": "^1.1.0",
467
+ "@types/node": ">=13.7.0",
468
+ "long": "^5.0.0"
469
+ },
470
+ "engines": {
471
+ "node": ">=12.0.0"
472
+ }
473
+ },
474
+ "node_modules/proxy-from-env": {
475
+ "version": "1.1.0",
476
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
477
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
478
+ "license": "MIT"
479
+ },
480
+ "node_modules/qs": {
481
+ "version": "6.15.0",
482
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.0.tgz",
483
+ "integrity": "sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==",
484
+ "license": "BSD-3-Clause",
485
+ "dependencies": {
486
+ "side-channel": "^1.1.0"
487
+ },
488
+ "engines": {
489
+ "node": ">=0.6"
490
+ },
491
+ "funding": {
492
+ "url": "https://github.com/sponsors/ljharb"
493
+ }
494
+ },
495
+ "node_modules/side-channel": {
496
+ "version": "1.1.0",
497
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
498
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
499
+ "license": "MIT",
500
+ "dependencies": {
501
+ "es-errors": "^1.3.0",
502
+ "object-inspect": "^1.13.3",
503
+ "side-channel-list": "^1.0.0",
504
+ "side-channel-map": "^1.0.1",
505
+ "side-channel-weakmap": "^1.0.2"
506
+ },
507
+ "engines": {
508
+ "node": ">= 0.4"
509
+ },
510
+ "funding": {
511
+ "url": "https://github.com/sponsors/ljharb"
512
+ }
513
+ },
514
+ "node_modules/side-channel-list": {
515
+ "version": "1.0.0",
516
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
517
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
518
+ "license": "MIT",
519
+ "dependencies": {
520
+ "es-errors": "^1.3.0",
521
+ "object-inspect": "^1.13.3"
522
+ },
523
+ "engines": {
524
+ "node": ">= 0.4"
525
+ },
526
+ "funding": {
527
+ "url": "https://github.com/sponsors/ljharb"
528
+ }
529
+ },
530
+ "node_modules/side-channel-map": {
531
+ "version": "1.0.1",
532
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
533
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
534
+ "license": "MIT",
535
+ "dependencies": {
536
+ "call-bound": "^1.0.2",
537
+ "es-errors": "^1.3.0",
538
+ "get-intrinsic": "^1.2.5",
539
+ "object-inspect": "^1.13.3"
540
+ },
541
+ "engines": {
542
+ "node": ">= 0.4"
543
+ },
544
+ "funding": {
545
+ "url": "https://github.com/sponsors/ljharb"
546
+ }
547
+ },
548
+ "node_modules/side-channel-weakmap": {
549
+ "version": "1.0.2",
550
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
551
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
552
+ "license": "MIT",
553
+ "dependencies": {
554
+ "call-bound": "^1.0.2",
555
+ "es-errors": "^1.3.0",
556
+ "get-intrinsic": "^1.2.5",
557
+ "object-inspect": "^1.13.3",
558
+ "side-channel-map": "^1.0.1"
559
+ },
560
+ "engines": {
561
+ "node": ">= 0.4"
562
+ },
563
+ "funding": {
564
+ "url": "https://github.com/sponsors/ljharb"
565
+ }
566
+ },
567
+ "node_modules/typescript": {
568
+ "version": "5.9.3",
569
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
570
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
571
+ "dev": true,
572
+ "license": "Apache-2.0",
573
+ "bin": {
574
+ "tsc": "bin/tsc",
575
+ "tsserver": "bin/tsserver"
576
+ },
577
+ "engines": {
578
+ "node": ">=14.17"
579
+ }
580
+ },
581
+ "node_modules/undici-types": {
582
+ "version": "6.21.0",
583
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
584
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
585
+ "license": "MIT"
586
+ },
587
+ "node_modules/ws": {
588
+ "version": "8.19.0",
589
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.19.0.tgz",
590
+ "integrity": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==",
591
+ "license": "MIT",
592
+ "engines": {
593
+ "node": ">=10.0.0"
594
+ },
595
+ "peerDependencies": {
596
+ "bufferutil": "^4.0.1",
597
+ "utf-8-validate": ">=5.0.2"
598
+ },
599
+ "peerDependenciesMeta": {
600
+ "bufferutil": {
601
+ "optional": true
602
+ },
603
+ "utf-8-validate": {
604
+ "optional": true
605
+ }
606
+ }
607
+ },
608
+ "node_modules/zod": {
609
+ "version": "4.3.6",
610
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz",
611
+ "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==",
612
+ "license": "MIT",
613
+ "funding": {
614
+ "url": "https://github.com/sponsors/colinhacks"
615
+ }
616
+ }
617
+ }
618
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@dobby.ai/connector-feishu",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "type": "module",
6
+ "description": "Built-in Feishu connector extension package",
7
+ "main": "./index.js",
8
+ "scripts": {
9
+ "build": "tsc -p tsconfig.json",
10
+ "check": "tsc -p tsconfig.json --noEmit",
11
+ "prepack": "npm run build"
12
+ },
13
+ "dependencies": {
14
+ "@larksuiteoapi/node-sdk": "^1.59.0",
15
+ "zod": "^4.3.6"
16
+ },
17
+ "peerDependencies": {
18
+ "@dobby.ai/plugin-sdk": "^0.1.0"
19
+ },
20
+ "peerDependenciesMeta": {
21
+ "@dobby.ai/plugin-sdk": {
22
+ "optional": true
23
+ }
24
+ },
25
+ "devDependencies": {
26
+ "@dobby.ai/plugin-sdk": "file:../plugin-sdk",
27
+ "@types/node": "^22.10.5",
28
+ "typescript": "^5.9.2"
29
+ },
30
+ "files": [
31
+ "index.js",
32
+ "dist/",
33
+ "dobby.manifest.json"
34
+ ],
35
+ "publishConfig": {
36
+ "access": "public"
37
+ }
38
+ }