openxiangda 1.0.16 → 1.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -28,6 +28,9 @@ openxiangda workflow list --profile dev
28
28
  openxiangda automation list --profile dev
29
29
  openxiangda permission role-list --profile dev
30
30
  openxiangda settings get customer --profile dev
31
+ openxiangda resource validate --profile dev
32
+ openxiangda resource plan --profile dev
33
+ openxiangda resource publish --profile dev
31
34
  openxiangda inspect app --profile dev --json
32
35
  openxiangda app snapshot APP_XXXX --profile dev --json
33
36
  ```
@@ -55,4 +58,8 @@ openxiangda workspace init ./my-app-workspace --profile dev --app-type APP_XXXX
55
58
 
56
59
  表单页、流程表单页和自定义代码页都应在 `sy-lowcode-app-workspace` 中实现,由 `openxiangda workspace publish --profile <name>` 统一构建、上传 OSS 并注册到平台。`openxiangda form create`、`form publish`、`page publish` 只作为底层修复/诊断命令,不作为 AI 生成页面的主入口。
57
60
 
61
+ 工程化资源放在工作区 `src/resources/` 下,由 `openxiangda resource validate|plan|publish|pull` 管理。`workspace publish` 会先构建并注册 workspace 表单/页面,再执行非破坏性资源 upsert,这样菜单、权限组、流程和表单设置可以解析最新的 profile-local ID。需要删除平台中 manifest 未声明的资源时,显式传 `--prune`。连接器页面运行时通过 `sdk.connector.invoke()` / `sdk.connector.call("connector.api")` 调用平台运行时接口,第三方密钥只保存在后端连接器配置中。
62
+
63
+ Resource and connector manifest guide: [docs/openxiangda-resources-and-connectors.md](docs/openxiangda-resources-and-connectors.md).
64
+
58
65
  Skill migration plan: [docs/skill-refactor-plan.md](docs/skill-refactor-plan.md).