openyida 2026.3.24 → 2026.3.28-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.
Files changed (390) hide show
  1. package/README.ar.md +41 -57
  2. package/README.de.md +41 -57
  3. package/README.es.md +41 -57
  4. package/README.fr.md +41 -57
  5. package/README.hi.md +41 -57
  6. package/README.ja.md +41 -57
  7. package/README.ko.md +41 -57
  8. package/README.md +40 -67
  9. package/README.pt-BR.md +41 -57
  10. package/README.vi.md +41 -57
  11. package/README.zh-CN.md +41 -57
  12. package/README.zh-HK.md +41 -57
  13. package/README.zh-TW.md +41 -57
  14. package/bin/yida.js +175 -25
  15. package/lib/app/create-app.js +176 -191
  16. package/lib/app/create-form.js +2239 -2047
  17. package/lib/app/create-page.js +85 -140
  18. package/lib/app/export-app.js +181 -171
  19. package/lib/app/get-schema.js +152 -50
  20. package/lib/app/import-app.js +324 -287
  21. package/lib/app/publish.js +677 -564
  22. package/lib/app/update-form-config.js +219 -221
  23. package/lib/auth/auth.js +207 -151
  24. package/lib/auth/login.js +251 -215
  25. package/lib/auth/org.js +320 -229
  26. package/lib/auth/qr-login.js +547 -424
  27. package/lib/cdn/cdn-config-cmd.js +197 -177
  28. package/lib/cdn/cdn-config.js +128 -104
  29. package/lib/cdn/cdn-refresh.js +224 -195
  30. package/lib/cdn/cdn-upload.js +262 -221
  31. package/lib/connector/action-generator.js +235 -207
  32. package/lib/connector/api.js +298 -186
  33. package/lib/connector/connector-add-action.js +179 -160
  34. package/lib/connector/connector-create-connection.js +129 -101
  35. package/lib/connector/connector-create.js +260 -246
  36. package/lib/connector/connector-delete-action.js +87 -67
  37. package/lib/connector/connector-delete.js +42 -33
  38. package/lib/connector/connector-detail.js +73 -62
  39. package/lib/connector/connector-gen-template.js +29 -27
  40. package/lib/connector/connector-list-actions.js +59 -48
  41. package/lib/connector/connector-list-connections.js +52 -39
  42. package/lib/connector/connector-list.js +79 -73
  43. package/lib/connector/connector-parse-api.js +179 -169
  44. package/lib/connector/connector-smart-create.js +169 -148
  45. package/lib/connector/connector-test.js +189 -157
  46. package/lib/connector/curl-parser.js +95 -76
  47. package/lib/connector/desc-generator.js +29 -24
  48. package/lib/connector/doc-parser.js +470 -419
  49. package/lib/connector/response-parser.js +112 -87
  50. package/lib/conversation/collector.js +363 -0
  51. package/lib/conversation/export-conversation.js +146 -0
  52. package/lib/conversation/formatter.js +316 -0
  53. package/lib/core/babel-transform/index.js +203 -230
  54. package/lib/core/babel-transform/jsx-utils.js +83 -107
  55. package/lib/core/check-update.js +45 -77
  56. package/lib/core/copy.js +288 -310
  57. package/lib/core/doctor.js +1317 -1127
  58. package/lib/core/env.js +140 -156
  59. package/lib/core/i18n.js +116 -98
  60. package/lib/core/locales/ar.js +425 -827
  61. package/lib/core/locales/de.js +425 -827
  62. package/lib/core/locales/en.js +879 -773
  63. package/lib/core/locales/es.js +425 -827
  64. package/lib/core/locales/fr.js +425 -827
  65. package/lib/core/locales/hi.js +425 -827
  66. package/lib/core/locales/ja.js +736 -804
  67. package/lib/core/locales/ko.js +428 -827
  68. package/lib/core/locales/pt.js +425 -827
  69. package/lib/core/locales/vi.js +425 -827
  70. package/lib/core/locales/zh-TW.js +770 -812
  71. package/lib/core/locales/zh.js +841 -706
  72. package/lib/core/query-data.js +311 -412
  73. package/lib/core/task-center.js +213 -0
  74. package/lib/core/utils.js +384 -282
  75. package/lib/dws/dws-wrapper.js +260 -0
  76. package/lib/flash-note/flash-to-prd.js +306 -0
  77. package/lib/integration/integration-api.js +190 -115
  78. package/lib/integration/integration-create.js +356 -312
  79. package/lib/integration/integration-node-ids.js +40 -34
  80. package/lib/integration/integration-process-builder.js +228 -204
  81. package/lib/integration/integration-view-builder.js +260 -239
  82. package/lib/page-config/get-page-config.js +90 -77
  83. package/lib/page-config/save-share-config.js +236 -203
  84. package/lib/page-config/verify-short-url.js +238 -198
  85. package/lib/permission/get-permission.js +184 -173
  86. package/lib/permission/save-permission.js +527 -444
  87. package/lib/process/configure-process.js +954 -881
  88. package/lib/process/create-process.js +264 -275
  89. package/lib/report/append.js +307 -222
  90. package/lib/report/chart-builder.js +1778 -1457
  91. package/lib/report/constants.js +34 -97
  92. package/lib/report/create-report.js +9 -10
  93. package/lib/report/http.js +25 -24
  94. package/lib/report/index.js +418 -192
  95. package/package.json +5 -25
  96. package/project/pages/src/demo-chip-insight.js +3 -3
  97. package/project/pages/src/demo-crm-batch-entry.js +805 -0
  98. package/project/pages/src/demo-crm-dashboard.js +677 -0
  99. package/project/pages/src/demo-future-vision-2026.js +4 -4
  100. package/project/pages/src/demo-salary-calculator.js +39 -10
  101. package/project/prd/demo-crm.md +463 -0
  102. package/scripts/demo-dws.sh +106 -0
  103. package/scripts/postinstall.js +44 -18
  104. package/scripts/validate-structure.js +4 -17
  105. package/yida-skills/SKILL.md +96 -129
  106. package/yida-skills/references/formula-functions.md +312 -0
  107. package/yida-skills/references/report-field-config-guide.md +294 -0
  108. package/yida-skills/skills/large-file-write/SKILL.md +88 -0
  109. package/yida-skills/skills/large-file-write/scripts/write.js +157 -0
  110. package/yida-skills/skills/yida-app/SKILL.md +196 -218
  111. package/yida-skills/skills/yida-chart/SKILL.md +2 -2
  112. package/yida-skills/skills/yida-chart/reference/echarts-bindding-guide.md +255 -0
  113. package/yida-skills/skills/yida-chart/reference/echarts-code-template.md +426 -0
  114. package/yida-skills/skills/yida-chart/reference/echarts-design-spec.md +178 -0
  115. package/yida-skills/skills/yida-chatbot/SKILL.md +237 -0
  116. package/yida-skills/skills/yida-connector/SKILL.md +46 -465
  117. package/yida-skills/skills/yida-connector/references/connector-action-format.md +178 -0
  118. package/yida-skills/skills/yida-create-app/SKILL.md +8 -124
  119. package/yida-skills/skills/yida-create-form-page/SKILL.md +62 -640
  120. package/yida-skills/skills/yida-create-form-page/references/form-field-properties.md +369 -0
  121. package/yida-skills/skills/yida-create-page/SKILL.md +7 -108
  122. package/yida-skills/skills/yida-create-process/SKILL.md +22 -181
  123. package/yida-skills/skills/yida-custom-page/SKILL.md +200 -616
  124. package/yida-skills/skills/yida-custom-page/examples/design-tokens.js +218 -0
  125. package/yida-skills/skills/yida-custom-page/{yida-assets-guide.md → references/assets-guide.md} +8 -6
  126. package/yida-skills/skills/yida-custom-page/references/coding-guide.md +397 -0
  127. package/yida-skills/skills/yida-custom-page/references/design-system.md +303 -0
  128. package/yida-skills/skills/yida-data-management/SKILL.md +60 -250
  129. package/yida-skills/skills/yida-data-management/references/data-format-guide.md +130 -0
  130. package/yida-skills/skills/yida-data-management/{reference → references}/verified-endpoints.md +3 -3
  131. package/yida-skills/skills/yida-density/examples/density-switch-page.js +177 -0
  132. package/yida-skills/skills/yida-export-conversation/SKILL.md +74 -0
  133. package/yida-skills/skills/yida-flash-note-to-prd/SKILL.md +538 -0
  134. package/yida-skills/skills/yida-flash-note-to-prd/build-flash-note-prompt.js +885 -0
  135. package/yida-skills/skills/yida-form-permission/SKILL.md +25 -172
  136. package/yida-skills/skills/yida-formula/SKILL.md +428 -0
  137. package/yida-skills/skills/yida-get-schema/SKILL.md +9 -71
  138. package/yida-skills/skills/yida-integration/SKILL.md +16 -0
  139. package/yida-skills/skills/yida-login/SKILL.md +19 -181
  140. package/yida-skills/skills/yida-logout/SKILL.md +5 -49
  141. package/yida-skills/skills/yida-page-config/SKILL.md +21 -237
  142. package/yida-skills/skills/yida-process-rule/references/process-ai-rules.md +170 -0
  143. package/yida-skills/skills/yida-publish-page/SKILL.md +21 -109
  144. package/yida-skills/skills/yida-report/SKILL.md +5 -16
  145. package/yida-skills/skills/yida-table-form/examples/table-form-batch-submit.js +431 -0
  146. package/lib/app/compile.d.ts +0 -17
  147. package/lib/app/compile.d.ts.map +0 -1
  148. package/lib/app/compile.js +0 -76
  149. package/lib/app/compile.js.map +0 -1
  150. package/lib/app/create-app.d.ts +0 -7
  151. package/lib/app/create-app.d.ts.map +0 -1
  152. package/lib/app/create-app.js.map +0 -1
  153. package/lib/app/create-form.d.ts +0 -59
  154. package/lib/app/create-form.d.ts.map +0 -1
  155. package/lib/app/create-form.js.map +0 -1
  156. package/lib/app/create-page.d.ts +0 -11
  157. package/lib/app/create-page.d.ts.map +0 -1
  158. package/lib/app/create-page.js.map +0 -1
  159. package/lib/app/datasource-utils.d.ts +0 -50
  160. package/lib/app/datasource-utils.d.ts.map +0 -1
  161. package/lib/app/datasource-utils.js +0 -313
  162. package/lib/app/datasource-utils.js.map +0 -1
  163. package/lib/app/export-app.d.ts +0 -9
  164. package/lib/app/export-app.d.ts.map +0 -1
  165. package/lib/app/export-app.js.map +0 -1
  166. package/lib/app/get-schema.d.ts +0 -7
  167. package/lib/app/get-schema.d.ts.map +0 -1
  168. package/lib/app/get-schema.js.map +0 -1
  169. package/lib/app/import-app.d.ts +0 -9
  170. package/lib/app/import-app.d.ts.map +0 -1
  171. package/lib/app/import-app.js.map +0 -1
  172. package/lib/app/publish.d.ts +0 -26
  173. package/lib/app/publish.d.ts.map +0 -1
  174. package/lib/app/publish.js.map +0 -1
  175. package/lib/app/update-form-config.d.ts +0 -2
  176. package/lib/app/update-form-config.d.ts.map +0 -1
  177. package/lib/app/update-form-config.js.map +0 -1
  178. package/lib/auth/auth.d.ts +0 -57
  179. package/lib/auth/auth.d.ts.map +0 -1
  180. package/lib/auth/auth.js.map +0 -1
  181. package/lib/auth/login.d.ts +0 -30
  182. package/lib/auth/login.d.ts.map +0 -1
  183. package/lib/auth/login.js.map +0 -1
  184. package/lib/auth/org.d.ts +0 -46
  185. package/lib/auth/org.d.ts.map +0 -1
  186. package/lib/auth/org.js.map +0 -1
  187. package/lib/auth/qr-login.d.ts +0 -22
  188. package/lib/auth/qr-login.d.ts.map +0 -1
  189. package/lib/auth/qr-login.js.map +0 -1
  190. package/lib/cdn/cdn-config-cmd.d.ts +0 -36
  191. package/lib/cdn/cdn-config-cmd.d.ts.map +0 -1
  192. package/lib/cdn/cdn-config-cmd.js.map +0 -1
  193. package/lib/cdn/cdn-config.d.ts +0 -81
  194. package/lib/cdn/cdn-config.d.ts.map +0 -1
  195. package/lib/cdn/cdn-config.js.map +0 -1
  196. package/lib/cdn/cdn-refresh.d.ts +0 -69
  197. package/lib/cdn/cdn-refresh.d.ts.map +0 -1
  198. package/lib/cdn/cdn-refresh.js.map +0 -1
  199. package/lib/cdn/cdn-upload.d.ts +0 -56
  200. package/lib/cdn/cdn-upload.d.ts.map +0 -1
  201. package/lib/cdn/cdn-upload.js.map +0 -1
  202. package/lib/connector/action-generator.d.ts +0 -39
  203. package/lib/connector/action-generator.d.ts.map +0 -1
  204. package/lib/connector/action-generator.js.map +0 -1
  205. package/lib/connector/api.d.ts +0 -124
  206. package/lib/connector/api.d.ts.map +0 -1
  207. package/lib/connector/api.js.map +0 -1
  208. package/lib/connector/connector-add-action.d.ts +0 -14
  209. package/lib/connector/connector-add-action.d.ts.map +0 -1
  210. package/lib/connector/connector-add-action.js.map +0 -1
  211. package/lib/connector/connector-create-connection.d.ts +0 -16
  212. package/lib/connector/connector-create-connection.d.ts.map +0 -1
  213. package/lib/connector/connector-create-connection.js.map +0 -1
  214. package/lib/connector/connector-create.d.ts +0 -24
  215. package/lib/connector/connector-create.d.ts.map +0 -1
  216. package/lib/connector/connector-create.js.map +0 -1
  217. package/lib/connector/connector-delete-action.d.ts +0 -11
  218. package/lib/connector/connector-delete-action.d.ts.map +0 -1
  219. package/lib/connector/connector-delete-action.js.map +0 -1
  220. package/lib/connector/connector-delete.d.ts +0 -8
  221. package/lib/connector/connector-delete.d.ts.map +0 -1
  222. package/lib/connector/connector-delete.js.map +0 -1
  223. package/lib/connector/connector-detail.d.ts +0 -8
  224. package/lib/connector/connector-detail.d.ts.map +0 -1
  225. package/lib/connector/connector-detail.js.map +0 -1
  226. package/lib/connector/connector-gen-template.d.ts +0 -8
  227. package/lib/connector/connector-gen-template.d.ts.map +0 -1
  228. package/lib/connector/connector-gen-template.js.map +0 -1
  229. package/lib/connector/connector-list-actions.d.ts +0 -8
  230. package/lib/connector/connector-list-actions.d.ts.map +0 -1
  231. package/lib/connector/connector-list-actions.js.map +0 -1
  232. package/lib/connector/connector-list-connections.d.ts +0 -8
  233. package/lib/connector/connector-list-connections.d.ts.map +0 -1
  234. package/lib/connector/connector-list-connections.js.map +0 -1
  235. package/lib/connector/connector-list.d.ts +0 -13
  236. package/lib/connector/connector-list.d.ts.map +0 -1
  237. package/lib/connector/connector-list.js.map +0 -1
  238. package/lib/connector/connector-parse-api.d.ts +0 -14
  239. package/lib/connector/connector-parse-api.d.ts.map +0 -1
  240. package/lib/connector/connector-parse-api.js.map +0 -1
  241. package/lib/connector/connector-smart-create.d.ts +0 -13
  242. package/lib/connector/connector-smart-create.d.ts.map +0 -1
  243. package/lib/connector/connector-smart-create.js.map +0 -1
  244. package/lib/connector/connector-test.d.ts +0 -8
  245. package/lib/connector/connector-test.d.ts.map +0 -1
  246. package/lib/connector/connector-test.js.map +0 -1
  247. package/lib/connector/curl-parser.d.ts +0 -35
  248. package/lib/connector/curl-parser.d.ts.map +0 -1
  249. package/lib/connector/curl-parser.js.map +0 -1
  250. package/lib/connector/desc-generator.d.ts +0 -23
  251. package/lib/connector/desc-generator.d.ts.map +0 -1
  252. package/lib/connector/desc-generator.js.map +0 -1
  253. package/lib/connector/doc-parser.d.ts +0 -101
  254. package/lib/connector/doc-parser.d.ts.map +0 -1
  255. package/lib/connector/doc-parser.js.map +0 -1
  256. package/lib/connector/response-parser.d.ts +0 -40
  257. package/lib/connector/response-parser.d.ts.map +0 -1
  258. package/lib/connector/response-parser.js.map +0 -1
  259. package/lib/core/check-update.d.ts +0 -20
  260. package/lib/core/check-update.d.ts.map +0 -1
  261. package/lib/core/check-update.js.map +0 -1
  262. package/lib/core/copy.d.ts +0 -32
  263. package/lib/core/copy.d.ts.map +0 -1
  264. package/lib/core/copy.js.map +0 -1
  265. package/lib/core/doctor.d.ts +0 -289
  266. package/lib/core/doctor.d.ts.map +0 -1
  267. package/lib/core/doctor.js.map +0 -1
  268. package/lib/core/env.d.ts +0 -20
  269. package/lib/core/env.d.ts.map +0 -1
  270. package/lib/core/env.js.map +0 -1
  271. package/lib/core/i18n.d.ts +0 -41
  272. package/lib/core/i18n.d.ts.map +0 -1
  273. package/lib/core/i18n.js.map +0 -1
  274. package/lib/core/locales/ar.d.ts +0 -625
  275. package/lib/core/locales/ar.d.ts.map +0 -1
  276. package/lib/core/locales/ar.js.map +0 -1
  277. package/lib/core/locales/de.d.ts +0 -625
  278. package/lib/core/locales/de.d.ts.map +0 -1
  279. package/lib/core/locales/de.js.map +0 -1
  280. package/lib/core/locales/en.d.ts +0 -626
  281. package/lib/core/locales/en.d.ts.map +0 -1
  282. package/lib/core/locales/en.js.map +0 -1
  283. package/lib/core/locales/es.d.ts +0 -625
  284. package/lib/core/locales/es.d.ts.map +0 -1
  285. package/lib/core/locales/es.js.map +0 -1
  286. package/lib/core/locales/fr.d.ts +0 -625
  287. package/lib/core/locales/fr.d.ts.map +0 -1
  288. package/lib/core/locales/fr.js.map +0 -1
  289. package/lib/core/locales/hi.d.ts +0 -625
  290. package/lib/core/locales/hi.d.ts.map +0 -1
  291. package/lib/core/locales/hi.js.map +0 -1
  292. package/lib/core/locales/ja.d.ts +0 -625
  293. package/lib/core/locales/ja.d.ts.map +0 -1
  294. package/lib/core/locales/ja.js.map +0 -1
  295. package/lib/core/locales/ko.d.ts +0 -625
  296. package/lib/core/locales/ko.d.ts.map +0 -1
  297. package/lib/core/locales/ko.js.map +0 -1
  298. package/lib/core/locales/pt.d.ts +0 -625
  299. package/lib/core/locales/pt.d.ts.map +0 -1
  300. package/lib/core/locales/pt.js.map +0 -1
  301. package/lib/core/locales/vi.d.ts +0 -625
  302. package/lib/core/locales/vi.d.ts.map +0 -1
  303. package/lib/core/locales/vi.js.map +0 -1
  304. package/lib/core/locales/zh-TW.d.ts +0 -625
  305. package/lib/core/locales/zh-TW.d.ts.map +0 -1
  306. package/lib/core/locales/zh-TW.js.map +0 -1
  307. package/lib/core/locales/zh.d.ts +0 -645
  308. package/lib/core/locales/zh.d.ts.map +0 -1
  309. package/lib/core/locales/zh.js.map +0 -1
  310. package/lib/core/query-data.d.ts +0 -13
  311. package/lib/core/query-data.d.ts.map +0 -1
  312. package/lib/core/query-data.js.map +0 -1
  313. package/lib/core/utils.d.ts +0 -66
  314. package/lib/core/utils.d.ts.map +0 -1
  315. package/lib/core/utils.js.map +0 -1
  316. package/lib/integration/integration-api.d.ts +0 -67
  317. package/lib/integration/integration-api.d.ts.map +0 -1
  318. package/lib/integration/integration-api.js.map +0 -1
  319. package/lib/integration/integration-create.d.ts +0 -3
  320. package/lib/integration/integration-create.d.ts.map +0 -1
  321. package/lib/integration/integration-create.js.map +0 -1
  322. package/lib/integration/integration-node-ids.d.ts +0 -31
  323. package/lib/integration/integration-node-ids.d.ts.map +0 -1
  324. package/lib/integration/integration-node-ids.js.map +0 -1
  325. package/lib/integration/integration-process-builder.d.ts +0 -61
  326. package/lib/integration/integration-process-builder.d.ts.map +0 -1
  327. package/lib/integration/integration-process-builder.js.map +0 -1
  328. package/lib/integration/integration-view-builder.d.ts +0 -45
  329. package/lib/integration/integration-view-builder.d.ts.map +0 -1
  330. package/lib/integration/integration-view-builder.js.map +0 -1
  331. package/lib/page-config/get-page-config.d.ts +0 -7
  332. package/lib/page-config/get-page-config.d.ts.map +0 -1
  333. package/lib/page-config/get-page-config.js.map +0 -1
  334. package/lib/page-config/save-share-config.d.ts +0 -7
  335. package/lib/page-config/save-share-config.d.ts.map +0 -1
  336. package/lib/page-config/save-share-config.js.map +0 -1
  337. package/lib/page-config/verify-short-url.d.ts +0 -20
  338. package/lib/page-config/verify-short-url.d.ts.map +0 -1
  339. package/lib/page-config/verify-short-url.js.map +0 -1
  340. package/lib/permission/get-permission.d.ts +0 -7
  341. package/lib/permission/get-permission.d.ts.map +0 -1
  342. package/lib/permission/get-permission.js.map +0 -1
  343. package/lib/permission/save-permission.d.ts +0 -7
  344. package/lib/permission/save-permission.d.ts.map +0 -1
  345. package/lib/permission/save-permission.js.map +0 -1
  346. package/lib/process/configure-process.d.ts +0 -16
  347. package/lib/process/configure-process.d.ts.map +0 -1
  348. package/lib/process/configure-process.js.map +0 -1
  349. package/lib/process/create-process.d.ts +0 -14
  350. package/lib/process/create-process.d.ts.map +0 -1
  351. package/lib/process/create-process.js.map +0 -1
  352. package/lib/report/append.d.ts +0 -3
  353. package/lib/report/append.d.ts.map +0 -1
  354. package/lib/report/append.js.map +0 -1
  355. package/lib/report/chart-builder.d.ts +0 -92
  356. package/lib/report/chart-builder.d.ts.map +0 -1
  357. package/lib/report/chart-builder.js.map +0 -1
  358. package/lib/report/constants.d.ts +0 -40
  359. package/lib/report/constants.d.ts.map +0 -1
  360. package/lib/report/constants.js.map +0 -1
  361. package/lib/report/create-report.d.ts +0 -15
  362. package/lib/report/create-report.d.ts.map +0 -1
  363. package/lib/report/create-report.js.map +0 -1
  364. package/lib/report/http.d.ts +0 -10
  365. package/lib/report/http.d.ts.map +0 -1
  366. package/lib/report/http.js.map +0 -1
  367. package/lib/report/index.d.ts +0 -3
  368. package/lib/report/index.d.ts.map +0 -1
  369. package/lib/report/index.js.map +0 -1
  370. package/lib/types/index.d.ts +0 -91
  371. package/lib/types/index.d.ts.map +0 -1
  372. package/lib/types/index.js +0 -8
  373. package/lib/types/index.js.map +0 -1
  374. package/scripts/sync-locales.js +0 -288
  375. package/scripts/update-contributors.js +0 -152
  376. package/scripts/validate-deps.js +0 -171
  377. package/scripts/validate-i18n.js +0 -246
  378. package/yida-skills/reference/connector-datasource.md +0 -387
  379. package/yida-skills/reference/vc-yida-report-components-doc.md +0 -615
  380. package/yida-skills/skills/yida-create-report/SKILL.md +0 -340
  381. package/yida-skills/skills/yida-custom-page/jsx-compile-checklist.md +0 -113
  382. package/yida-skills/skills/yida-data-management/reference/data-format-guide.md +0 -73
  383. package/yida-skills/skills/yida-report/build-yida-report-schema.js +0 -1284
  384. /package/yida-skills/{reference → references}/model-api.md +0 -0
  385. /package/yida-skills/{reference → references}/query-condition-guide.md +0 -0
  386. /package/yida-skills/{reference → references}/yida-api.md +0 -0
  387. /package/yida-skills/{reference → skills/yida-create-form-page/references}/association-form-field.md +0 -0
  388. /package/yida-skills/{reference → skills/yida-create-form-page/references}/employee-field.md +0 -0
  389. /package/yida-skills/{reference → skills/yida-create-form-page/references}/serial-number-field.md +0 -0
  390. /package/yida-skills/skills/yida-data-management/{reference → references}/api-matrix.md +0 -0
package/README.ar.md CHANGED
@@ -77,61 +77,41 @@ npm install -g openyida
77
77
  ## أوامر CLI
78
78
 
79
79
  ```bash
80
- # البيئة والمصادقة
81
- openyida env # اكتشاف بيئة أداة الذكاء الاصطناعي الحالية وحالة تسجيل الدخول
82
- openyida login # تسجيل الدخول إلى Yida (الذاكرة المؤقتة أولاً، وإلا رمز QR)
83
- openyida logout # تسجيل الخروج / تبديل الحساب
84
- openyida copy # تهيئة دليل project لأداة الذكاء الاصطناعي الحالية
85
- openyida auth status # عرض حالة تسجيل الدخول الحالية
86
- openyida auth login # تنفيذ تسجيل الدخول
87
- openyida auth refresh # تحديث حالة تسجيل الدخول
88
- openyida auth logout # تسجيل الخروج
89
- openyida org list # سرد المؤسسات المتاحة
90
- openyida org switch # تبديل المؤسسة (--corp-id <corpId>)
91
- openyida doctor # تشخيص البيئة والإصلاح التلقائي (--fix, --report, إلخ)
92
-
93
- # التطبيق والنموذج
94
- openyida create-app # إنشاء تطبيق
95
- openyida create-page # إنشاء صفحة عرض مخصصة
96
- openyida create-form # إنشاء أو تحديث صفحة نموذج
97
- openyida get-schema # جلب مخطط النموذج
98
- openyida publish # تجميع ونشر صفحة مخصصة
99
- openyida update-form-config # تحديث إعدادات النموذج
100
- openyida export # تصدير التطبيق
101
- openyida import # استيراد حزمة الترحيل
102
-
103
- # تكوين الصفحة والمشاركة
104
- openyida verify-short-url # التحقق من إمكانية الوصول إلى رابط مختصر
105
- openyida save-share-config # حفظ إعدادات الوصول العام / المشاركة
106
- openyida get-page-config # الاستعلام عن إعدادات مشاركة الصفحة
107
-
108
- # إدارة البيانات
109
- openyida data # إدارة البيانات الموحدة
110
- openyida query-data # الاستعلام عن بيانات نموذج البيانات
111
-
112
- # الأذونات والعملية
113
- openyida get-permission # الاستعلام عن تكوين أذونات النموذج
114
- openyida save-permission # حفظ تكوين أذونات النموذج
115
- openyida configure-process # تكوين ونشر العملية
116
- openyida create-process # إنشاء نموذج العملية
117
-
118
- # الموصل (HTTP)
119
- openyida connector list # سرد الموصلات HTTP
120
- openyida connector create # إنشاء موصل
121
- openyida connector detail # عرض تفاصيل الموصل
122
- openyida connector delete # حذف الموصل
123
- openyida connector add-action # إضافة إجراء إلى الموصل
124
- openyida connector test # اختبار إجراء الموصل
125
- openyida connector smart-create # إنشاء ذكي من أمر curl
126
-
127
- # التقرير
128
- openyida create-report # إنشاء تقرير Yida مع الرسوم البيانية
129
- openyida append-chart # إضافة رسوم بيانية إلى التقرير
130
-
131
- # CDN
132
- openyida cdn-config # إعداد رفع الصور إلى CDN
133
- openyida cdn-upload # رفع الصور إلى CDN
134
- openyida cdn-refresh # تحديث ذاكرة CDN المؤقتة
80
+ openyida append-chart # إضافة رسم بياني إلى تقرير موجود
81
+ openyida auth # إدارة حالة تسجيل الدخول (status/login/refresh/logout)
82
+ openyida cdn-config # إعداد رفع الصور إلى CDN (Aliyun OSS + CDN)
83
+ openyida cdn-refresh # تحديث ذاكرة CDN المؤقتة
84
+ openyida cdn-upload # رفع الصور إلى CDN
85
+ openyida configure-process # تكوين ونشر قواعد العملية
86
+ openyida connector # إدارة موصل HTTP
87
+ openyida copy # تهيئة دليل project لأداة الذكاء الاصطناعي الحالية
88
+ openyida create-app # إنشاء تطبيق Yida
89
+ openyida create-form # إنشاء / تحديث صفحة نموذج
90
+ openyida create-page # إنشاء صفحة عرض مخصصة
91
+ openyida create-process # إنشاء نموذج عملية (متكامل)
92
+ openyida create-report # إنشاء تقرير Yida
93
+ openyida data # إدارة البيانات الموحدة (نموذج/عملية/مهمة/نموذج فرعي)
94
+ openyida doctor # تشخيص البيئة والإصلاح التلقائي
95
+ openyida dws <command> [args] # DingTalk CLI(جهات الاتصال/التقويم/المهام/الموافقة، إلخ)
96
+ openyida env # اكتشاف بيئة أداة الذكاء الاصطناعي الحالية وحالة تسجيل الدخول
97
+ openyida export # تصدير حزمة ترحيل التطبيق
98
+ openyida export-conversation [format] # تصدير سجل محادثة AI
99
+ openyida flash-to-prd <appType> [options] # تحويل الملاحظة السريعة إلى PRD(يدعم التعرف على الاجتماعات)
100
+ openyida get-page-config # الاستعلام عن إعدادات الوصول العام / المشاركة لصفحة
101
+ openyida get-permission # الاستعلام عن إعدادات أذونات النموذج
102
+ openyida get-schema # جلب مخطط النموذج
103
+ openyida import # استيراد حزمة الترحيل لإعادة بناء التطبيق
104
+ openyida integration create <appType> [options] # إنشاء التكامل وتدفق الأتمتة
105
+ openyida login # تسجيل الدخول إلى Yida(الذاكرة المؤقتة أولاً، وإلا رمز QR)
106
+ openyida logout # تسجيل الخروج / تبديل الحساب
107
+ openyida org # إدارة المنظمة (list/switch)
108
+ openyida publish # تجميع ونشر صفحة مخصصة
109
+ openyida query-data # الاستعلام عن بيانات نموذج النماذج
110
+ openyida save-permission # حفظ إعدادات أذونات النموذج
111
+ openyida save-share-config # حفظ إعدادات الوصول العام / المشاركة
112
+ openyida task-center [filter] # مركز المهام العالمي(المهام/المنشأة/المعالجة/نسخة/إرسال)
113
+ openyida update-form-config # تحديث إعدادات النموذج
114
+ openyida verify-short-url # التحقق من إمكانية الوصول إلى رابط مختصر
135
115
  ```
136
116
 
137
117
  ---
@@ -201,7 +181,7 @@ npx clawhub@latest install nicky1108/yida-app
201
181
 
202
182
  شكراً لجميع من ساهموا في OpenYida! اقرأ [دليل المساهمة](./CONTRIBUTING.md) للمشاركة.
203
183
 
204
- <p align="left" id="contributors">
184
+ <p align="left">
205
185
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
206
186
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
207
187
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -211,7 +191,11 @@ npx clawhub@latest install nicky1108/yida-app
211
191
  <a href="https://github.com/kangjiano"><img src="https://avatars.githubusercontent.com/u/54129385?v=4&s=48" width="48" height="48" alt="kangjiano" title="kangjiano"/></a>
212
192
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
213
193
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
214
- <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
194
+ <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
195
+ <a href="https://github.com/guchenglin111"><img src="https://avatars.githubusercontent.com/u/10860875?v=4&s=48" width="48" height="48" alt="guchenglin111" title="guchenglin111"/></a>
196
+ <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="LIUG" title="LIUG"/></a>
197
+ <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a>
198
+ <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
215
199
  </p>
216
200
 
217
201
  ---
package/README.de.md CHANGED
@@ -77,61 +77,41 @@ Erstelle eine persönliche Gehaltsrechner-App
77
77
  ## CLI-Befehle
78
78
 
79
79
  ```bash
80
- # Umgebung und Authentifizierung
81
- openyida env # Aktuelle KI-Tool-Umgebung und Login-Status erkennen
82
- openyida login # Bei Yida anmelden (Cache bevorzugt, sonst QR-Code)
83
- openyida logout # Abmelden / Konto wechseln
84
- openyida copy # Project-Verzeichnis für aktuelles KI-Tool initialisieren
85
- openyida auth status # Aktuellen Login-Status anzeigen
86
- openyida auth login # Anmeldung durchführen
87
- openyida auth refresh # Login-Status aktualisieren
88
- openyida auth logout # Abmelden
89
- openyida org list # Zugängliche Organisationen auflisten
90
- openyida org switch # Organisation wechseln (--corp-id <corpId>)
91
- openyida doctor # Umgebungsdiagnose & automatische Reparatur (--fix, --report usw.)
92
-
93
- # App und Formular
94
- openyida create-app # App erstellen
95
- openyida create-page # Benutzerdefinierte Anzeigeseite erstellen
96
- openyida create-form # Formularseite erstellen oder aktualisieren
97
- openyida get-schema # Formular-Schema abrufen
98
- openyida publish # Benutzerdefinierte Seite kompilieren und veröffentlichen
99
- openyida update-form-config # Formularkonfiguration aktualisieren
100
- openyida export # App exportieren
101
- openyida import # Migrationspaket importieren
102
-
103
- # Seitenkonfiguration und Freigabe
104
- openyida verify-short-url # Prüfen ob eine Kurz-URL erreichbar ist
105
- openyida save-share-config # Öffentlichen Zugang / Freigabe-Konfiguration speichern
106
- openyida get-page-config # Seitenfreigabe-Konfiguration abfragen
107
-
108
- # Datenverwaltung
109
- openyida data # Einheitliche Datenverwaltung
110
- openyida query-data # Formularinstanzdaten abfragen
111
-
112
- # Berechtigungen und Prozess
113
- openyida get-permission # Formularberechtigungskonfiguration abfragen
114
- openyida save-permission # Formularberechtigungskonfiguration speichern
115
- openyida configure-process # Prozess konfigurieren und veröffentlichen
116
- openyida create-process # Prozessformular erstellen
117
-
118
- # Konnektor (HTTP)
119
- openyida connector list # HTTP-Konnektoren auflisten
120
- openyida connector create # Konnektor erstellen
121
- openyida connector detail # Konnektordetails anzeigen
122
- openyida connector delete # Konnektor löschen
123
- openyida connector add-action # Konnektoraktion hinzufügen
124
- openyida connector test # Konnektoraktion testen
125
- openyida connector smart-create # Intelligent aus curl-Befehl erstellen
126
-
127
- # Bericht
128
- openyida create-report # Yida-Bericht mit Diagrammen erstellen
129
- openyida append-chart # Diagramme an Bericht anhängen
130
-
131
- # CDN
132
- openyida cdn-config # CDN-Bild-Upload konfigurieren
133
- openyida cdn-upload # Bilder zum CDN hochladen
134
- openyida cdn-refresh # CDN-Cache aktualisieren
80
+ openyida append-chart # Diagramm zu bestehendem Bericht hinzufügen
81
+ openyida auth # Login-Status verwalten (status/login/refresh/logout)
82
+ openyida cdn-config # CDN-Bild-Upload konfigurieren (Aliyun OSS + CDN)
83
+ openyida cdn-refresh # CDN-Cache aktualisieren
84
+ openyida cdn-upload # Bilder zum CDN hochladen
85
+ openyida configure-process # Prozessregeln konfigurieren und veröffentlichen
86
+ openyida connector # HTTP-Connector-Verwaltung
87
+ openyida copy # Project-Verzeichnis für aktuelles KI-Tool initialisieren
88
+ openyida create-app # Yida-App erstellen
89
+ openyida create-form # Formularseite erstellen / aktualisieren
90
+ openyida create-page # Benutzerdefinierte Anzeigeseite erstellen
91
+ openyida create-process # Prozessformular erstellen (integriert)
92
+ openyida create-report # Yida-Bericht erstellen
93
+ openyida data # Einheitliche Datenverwaltung (Formular/Prozess/Aufgabe/Unterformular)
94
+ openyida doctor # Umgebungsdiagnose und automatische Reparatur
95
+ openyida dws <command> [args] # DingTalk CLI(Kontakte/Kalender/ToDo/Genehmigung usw.)
96
+ openyida env # Aktuelle KI-Tool-Umgebung und Login-Status erkennen
97
+ openyida export # App-Migrationspaket exportieren
98
+ openyida export-conversation [format] # AI-Konversationsverlauf exportieren
99
+ openyida flash-to-prd <appType> [options] # Flash-Notiz zu PRD(unterstützt Meeting-Erkennung)
100
+ openyida get-page-config # Öffentlichen Zugang / Freigabe-Konfiguration einer Seite abfragen
101
+ openyida get-permission # Formular-Berechtigungskonfiguration abfragen
102
+ openyida get-schema # Formular-Schema abrufen
103
+ openyida import # Migrationspaket importieren und App neu erstellen
104
+ openyida integration create <appType> [options] # Integration & Automatisierungsflow erstellen
105
+ openyida login # Bei Yida anmelden(Cache bevorzugt, sonst QR-Code)
106
+ openyida logout # Abmelden / Konto wechseln
107
+ openyida org # Organisationsverwaltung (list/switch)
108
+ openyida publish # Benutzerdefinierte Seite kompilieren und veröffentlichen
109
+ openyida query-data # Formularinstanzdaten abfragen
110
+ openyida save-permission # Formular-Berechtigungskonfiguration speichern
111
+ openyida save-share-config # Öffentlichen Zugang / Freigabe-Konfiguration speichern
112
+ openyida task-center [filter] # Globales Aufgabencenter(ToDo/Erstellt/Verarbeitet/CC/Übermittelt)
113
+ openyida update-form-config # Formularkonfiguration aktualisieren
114
+ openyida verify-short-url # Prüfen ob eine Kurz-URL erreichbar ist
135
115
  ```
136
116
 
137
117
  ---
@@ -201,7 +181,7 @@ Scannen Sie den QR-Code, um der OpenYida-Benutzergruppe auf DingTalk beizutreten
201
181
 
202
182
  Danke an alle, die zu OpenYida beigetragen haben! Lesen Sie den [Beitragsleitfaden](./CONTRIBUTING.md).
203
183
 
204
- <p align="left" id="contributors">
184
+ <p align="left">
205
185
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
206
186
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
207
187
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -211,7 +191,11 @@ Danke an alle, die zu OpenYida beigetragen haben! Lesen Sie den [Beitragsleitfad
211
191
  <a href="https://github.com/kangjiano"><img src="https://avatars.githubusercontent.com/u/54129385?v=4&s=48" width="48" height="48" alt="kangjiano" title="kangjiano"/></a>
212
192
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
213
193
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
214
- <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
194
+ <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
195
+ <a href="https://github.com/guchenglin111"><img src="https://avatars.githubusercontent.com/u/10860875?v=4&s=48" width="48" height="48" alt="guchenglin111" title="guchenglin111"/></a>
196
+ <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="LIUG" title="LIUG"/></a>
197
+ <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a>
198
+ <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
215
199
  </p>
216
200
 
217
201
  ---
package/README.es.md CHANGED
@@ -77,61 +77,41 @@ Crea una aplicación de calculadora de salario personal
77
77
  ## Comandos CLI
78
78
 
79
79
  ```bash
80
- # Entorno y autenticación
81
- openyida env # Detectar el entorno de herramienta IA actual y estado de login
82
- openyida login # Iniciar sesión en Yida (caché primero, si no QR code)
83
- openyida logout # Cerrar sesión / cambiar cuenta
84
- openyida copy # Inicializar directorio project para la herramienta IA actual
85
- openyida auth status # Mostrar estado de login actual
86
- openyida auth login # Ejecutar login
87
- openyida auth refresh # Actualizar estado de login
88
- openyida auth logout # Cerrar sesión
89
- openyida org list # Listar organizaciones accesibles
90
- openyida org switch # Cambiar organización (--corp-id <corpId>)
91
- openyida doctor # Diagnóstico de entorno y reparación automática (--fix, --report etc.)
92
-
93
- # App y formulario
94
- openyida create-app # Crear una aplicación
95
- openyida create-page # Crear una página de visualización personalizada
96
- openyida create-form # Crear o actualizar una página de formulario
97
- openyida get-schema # Obtener el esquema del formulario
98
- openyida publish # Compilar y publicar una página personalizada
99
- openyida update-form-config # Actualizar configuración del formulario
100
- openyida export # Exportar aplicación
101
- openyida import # Importar paquete de migración
102
-
103
- # Configuración y compartición de página
104
- openyida verify-short-url # Verificar si una URL corta es accesible
105
- openyida save-share-config # Guardar configuración de acceso público / compartición
106
- openyida get-page-config # Consultar configuración de compartición de página
107
-
108
- # Gestión de datos
109
- openyida data # Gestión unificada de datos
110
- openyida query-data # Consultar datos de instancia de formulario
111
-
112
- # Permisos y proceso
113
- openyida get-permission # Consultar config de permisos de formulario
114
- openyida save-permission # Guardar config de permisos de formulario
115
- openyida configure-process # Configurar y publicar proceso
116
- openyida create-process # Crear formulario de proceso
117
-
118
- # Conector (HTTP)
119
- openyida connector list # Listar conectores HTTP
120
- openyida connector create # Crear conector
121
- openyida connector detail # Ver detalles del conector
122
- openyida connector delete # Eliminar conector
123
- openyida connector add-action # Añadir acción al conector
124
- openyida connector test # Probar acción de conector
125
- openyida connector smart-create # Crear inteligentemente desde comando curl
126
-
127
- # Informe
128
- openyida create-report # Crear informe Yida con gráficos
129
- openyida append-chart # Añadir gráficos al informe
130
-
131
- # CDN
132
- openyida cdn-config # Configurar subida de imágenes CDN
133
- openyida cdn-upload # Subir imágenes al CDN
134
- openyida cdn-refresh # Actualizar caché del CDN
80
+ openyida append-chart # Agregar gráfico a un informe existente
81
+ openyida auth # Gestión del estado de login (status/login/refresh/logout)
82
+ openyida cdn-config # Configurar carga de imágenes CDN (Aliyun OSS + CDN)
83
+ openyida cdn-refresh # Actualizar caché del CDN
84
+ openyida cdn-upload # Subir imágenes al CDN
85
+ openyida configure-process # Configurar y publicar reglas de proceso
86
+ openyida connector # Gestión de conectores HTTP
87
+ openyida copy # Inicializar directorio project para la herramienta IA actual
88
+ openyida create-app # Crear una aplicación Yida
89
+ openyida create-form # Crear / actualizar una página de formulario
90
+ openyida create-page # Crear una página de visualización personalizada
91
+ openyida create-process # Crear un formulario de proceso (integrado)
92
+ openyida create-report # Crear un informe Yida
93
+ openyida data # Gestión de datos unificada (formulario/proceso/tarea/subformulario)
94
+ openyida doctor # Diagnóstico de entorno y reparación automática
95
+ openyida dws <command> [args] # DingTalk CLI(Contactos/Calendario/Tareas/Aprobación, etc.)
96
+ openyida env # Detectar el entorno de herramienta IA actual y estado de login
97
+ openyida export # Exportar paquete de migración de aplicación
98
+ openyida export-conversation [format] # Exportar historial de conversación AI
99
+ openyida flash-to-prd <appType> [options] # Nota flash a PRD(admite reconocimiento de reuniones)
100
+ openyida get-page-config # Consultar configuración de acceso público / compartir de una página
101
+ openyida get-permission # Consultar configuración de permisos del formulario
102
+ openyida get-schema # Obtener el esquema del formulario
103
+ openyida import # Importar paquete de migración para reconstruir aplicación
104
+ openyida integration create <appType> [options] # Crear integración y flujo de automatización
105
+ openyida login # Iniciar sesión en Yida(caché primero, si no QR code)
106
+ openyida logout # Cerrar sesión / cambiar cuenta
107
+ openyida org # Gestión de organización (list/switch)
108
+ openyida publish # Compilar y publicar una página personalizada
109
+ openyida query-data # Consultar datos de instancia de formulario
110
+ openyida save-permission # Guardar configuración de permisos del formulario
111
+ openyida save-share-config # Guardar configuración de acceso público / compartir
112
+ openyida task-center [filter] # Centro de tareas global(Tareas/Creadas/Procesadas/CC/Enviadas)
113
+ openyida update-form-config # Actualizar configuración del formulario
114
+ openyida verify-short-url # Verificar si una URL corta es accesible
135
115
  ```
136
116
 
137
117
  ---
@@ -201,7 +181,7 @@ Escanea el código QR para unirte al grupo de usuarios de OpenYida en DingTalk.
201
181
 
202
182
  ¡Gracias a todos los que han contribuido a OpenYida! Lee la [Guía de contribución](./CONTRIBUTING.md) para participar.
203
183
 
204
- <p align="left" id="contributors">
184
+ <p align="left">
205
185
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
206
186
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
207
187
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -211,7 +191,11 @@ Escanea el código QR para unirte al grupo de usuarios de OpenYida en DingTalk.
211
191
  <a href="https://github.com/kangjiano"><img src="https://avatars.githubusercontent.com/u/54129385?v=4&s=48" width="48" height="48" alt="kangjiano" title="kangjiano"/></a>
212
192
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
213
193
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
214
- <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
194
+ <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
195
+ <a href="https://github.com/guchenglin111"><img src="https://avatars.githubusercontent.com/u/10860875?v=4&s=48" width="48" height="48" alt="guchenglin111" title="guchenglin111"/></a>
196
+ <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="LIUG" title="LIUG"/></a>
197
+ <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a>
198
+ <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
215
199
  </p>
216
200
 
217
201
  ---
package/README.fr.md CHANGED
@@ -77,61 +77,41 @@ Crée une application de calcul de salaire personnel
77
77
  ## Commandes CLI
78
78
 
79
79
  ```bash
80
- # Environnement et authentification
81
- openyida env # Détecter l'environnement IA actuel et le statut de connexion
82
- openyida login # Se connecter à Yida (cache en priorité, sinon QR code)
83
- openyida logout # Se déconnecter / changer de compte
84
- openyida copy # Initialiser le répertoire project pour l'outil IA actuel
85
- openyida auth status # Afficher le statut de connexion actuel
86
- openyida auth login # Exécuter la connexion
87
- openyida auth refresh # Actualiser le statut de connexion
88
- openyida auth logout # Se déconnecter
89
- openyida org list # Lister les organisations accessibles
90
- openyida org switch # Changer d'organisation (--corp-id <corpId>)
91
- openyida doctor # Diagnostic d'environnement et réparation auto (--fix, --report etc.)
92
-
93
- # Application et formulaire
94
- openyida create-app # Créer une application
95
- openyida create-page # Créer une page d'affichage personnalisée
96
- openyida create-form # Créer ou mettre à jour une page de formulaire
97
- openyida get-schema # Récupérer le schéma de formulaire
98
- openyida publish # Compiler et publier une page personnalisée
99
- openyida update-form-config # Mettre à jour la configuration du formulaire
100
- openyida export # Exporter l'application
101
- openyida import # Importer le package de migration
102
-
103
- # Configuration et partage de page
104
- openyida verify-short-url # Vérifier si une URL courte est accessible
105
- openyida save-share-config # Sauvegarder la config d'accès public / partage
106
- openyida get-page-config # Consulter la config de partage de page
107
-
108
- # Gestion des données
109
- openyida data # Gestion unifiée des données
110
- openyida query-data # Consulter les données d'instance de formulaire
111
-
112
- # Permissions et processus
113
- openyida get-permission # Consulter la config de permissions du formulaire
114
- openyida save-permission # Sauvegarder la config de permissions du formulaire
115
- openyida configure-process # Configurer et publier un processus
116
- openyida create-process # Créer un formulaire de processus
117
-
118
- # Connecteur (HTTP)
119
- openyida connector list # Lister les connecteurs HTTP
120
- openyida connector create # Créer un connecteur
121
- openyida connector detail # Afficher les détails du connecteur
122
- openyida connector delete # Supprimer un connecteur
123
- openyida connector add-action # Ajouter une action au connecteur
124
- openyida connector test # Tester une action de connecteur
125
- openyida connector smart-create # Créer intelligemment depuis une commande curl
126
-
127
- # Rapport
128
- openyida create-report # Créer un rapport Yida avec graphiques
129
- openyida append-chart # Ajouter des graphiques au rapport
130
-
131
- # CDN
132
- openyida cdn-config # Configurer l'upload d'images CDN
133
- openyida cdn-upload # Uploader des images vers le CDN
134
- openyida cdn-refresh # Rafraîchir le cache CDN
80
+ openyida append-chart # Ajouter un graphique à un rapport existant
81
+ openyida auth # Gestion du statut de connexion (status/login/refresh/logout)
82
+ openyida cdn-config # Configurer l'upload d'images CDN (Aliyun OSS + CDN)
83
+ openyida cdn-refresh # Rafraîchir le cache CDN
84
+ openyida cdn-upload # Uploader des images vers le CDN
85
+ openyida configure-process # Configurer et publier les règles de processus
86
+ openyida connector # Gestion des connecteurs HTTP
87
+ openyida copy # Initialiser le répertoire project pour l'outil IA actuel
88
+ openyida create-app # Créer une application Yida
89
+ openyida create-form # Créer / mettre à jour une page de formulaire
90
+ openyida create-page # Créer une page d'affichage personnalisée
91
+ openyida create-process # Créer un formulaire de processus (intégré)
92
+ openyida create-report # Créer un rapport Yida
93
+ openyida data # Gestion unifiée des données (formulaire/processus/tâche/sous-formulaire)
94
+ openyida doctor # Diagnostic d'environnement et réparation automatique
95
+ openyida dws <command> [args] # DingTalk CLI(Contacts/Calendrier/ToDo/Approbation, etc.)
96
+ openyida env # Détecter l'environnement IA actuel et le statut de connexion
97
+ openyida export # Exporter le package de migration d'application
98
+ openyida export-conversation [format] # Exporter l'historique de conversation AI
99
+ openyida flash-to-prd <appType> [options] # Note flash vers PRD(supporte la reconnaissance de réunions)
100
+ openyida get-page-config # Consulter la config d'accès public / partage d'une page
101
+ openyida get-permission # Consulter la configuration des permissions du formulaire
102
+ openyida get-schema # Récupérer le schéma de formulaire
103
+ openyida import # Importer le package de migration pour reconstruire l'application
104
+ openyida integration create <appType> [options] # Créer intégration et flux d'automatisation
105
+ openyida login # Se connecter à Yida(cache en priorité, sinon QR code)
106
+ openyida logout # Se déconnecter / changer de compte
107
+ openyida org # Gestion des organisations (list/switch)
108
+ openyida publish # Compiler et publier une page personnalisée
109
+ openyida query-data # Consulter les données d'instance de formulaire
110
+ openyida save-permission # Sauvegarder la configuration des permissions du formulaire
111
+ openyida save-share-config # Sauvegarder la config d'accès public / partage
112
+ openyida task-center [filter] # Centre de tâches global(ToDo/Créées/Traitées/CC/Soumises)
113
+ openyida update-form-config # Mettre à jour la configuration du formulaire
114
+ openyida verify-short-url # Vérifier si une URL courte est accessible
135
115
  ```
136
116
 
137
117
  ---
@@ -201,7 +181,7 @@ Scannez le QR code pour rejoindre le groupe d'utilisateurs OpenYida sur DingTalk
201
181
 
202
182
  Merci à tous ceux qui ont contribué à OpenYida ! Lisez le [Guide de contribution](./CONTRIBUTING.md) pour participer.
203
183
 
204
- <p align="left" id="contributors">
184
+ <p align="left">
205
185
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
206
186
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
207
187
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -211,7 +191,11 @@ Merci à tous ceux qui ont contribué à OpenYida ! Lisez le [Guide de contribut
211
191
  <a href="https://github.com/kangjiano"><img src="https://avatars.githubusercontent.com/u/54129385?v=4&s=48" width="48" height="48" alt="kangjiano" title="kangjiano"/></a>
212
192
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
213
193
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
214
- <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
194
+ <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
195
+ <a href="https://github.com/guchenglin111"><img src="https://avatars.githubusercontent.com/u/10860875?v=4&s=48" width="48" height="48" alt="guchenglin111" title="guchenglin111"/></a>
196
+ <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="LIUG" title="LIUG"/></a>
197
+ <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a>
198
+ <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
215
199
  </p>
216
200
 
217
201
  ---