@josephyan/qingflow-app-builder-mcp 0.2.0-beta.2 → 0.2.0-beta.20

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 (30) hide show
  1. package/README.md +11 -2
  2. package/npm/lib/runtime.mjs +37 -0
  3. package/npm/scripts/postinstall.mjs +5 -1
  4. package/package.json +3 -2
  5. package/pyproject.toml +1 -1
  6. package/skills/qingflow-app-builder/SKILL.md +225 -0
  7. package/skills/qingflow-app-builder/agents/openai.yaml +4 -0
  8. package/skills/qingflow-app-builder/references/create-app.md +148 -0
  9. package/skills/qingflow-app-builder/references/environments.md +63 -0
  10. package/skills/qingflow-app-builder/references/flow-actors-and-permissions.md +124 -0
  11. package/skills/qingflow-app-builder/references/gotchas.md +64 -0
  12. package/skills/qingflow-app-builder/references/solution-playbooks.md +58 -0
  13. package/skills/qingflow-app-builder/references/tool-selection.md +96 -0
  14. package/skills/qingflow-app-builder/references/update-flow.md +233 -0
  15. package/skills/qingflow-app-builder/references/update-layout.md +91 -0
  16. package/skills/qingflow-app-builder/references/update-schema.md +90 -0
  17. package/skills/qingflow-app-builder/references/update-views.md +184 -0
  18. package/src/qingflow_mcp/__init__.py +1 -1
  19. package/src/qingflow_mcp/builder_facade/models.py +294 -1
  20. package/src/qingflow_mcp/builder_facade/service.py +2727 -235
  21. package/src/qingflow_mcp/server.py +2 -0
  22. package/src/qingflow_mcp/server_app_builder.py +80 -4
  23. package/src/qingflow_mcp/server_app_user.py +3 -2
  24. package/src/qingflow_mcp/solution/compiler/form_compiler.py +1 -1
  25. package/src/qingflow_mcp/solution/compiler/workflow_compiler.py +21 -2
  26. package/src/qingflow_mcp/solution/executor.py +34 -7
  27. package/src/qingflow_mcp/tools/ai_builder_tools.py +1038 -30
  28. package/src/qingflow_mcp/tools/app_tools.py +1 -2
  29. package/src/qingflow_mcp/tools/record_tools.py +1249 -767
  30. package/src/qingflow_mcp/tools/workflow_tools.py +78 -4
@@ -237,7 +237,7 @@ class AppTools(ToolBase):
237
237
 
238
238
  def runner(session_profile, context):
239
239
  attempted_contexts = [context]
240
- if context.qf_version is not None and (context.qf_version_source or "unset") != "explicit":
240
+ if context.qf_version is not None:
241
241
  attempted_contexts.append(
242
242
  BackendRequestContext(
243
243
  base_url=context.base_url,
@@ -270,7 +270,6 @@ class AppTools(ToolBase):
270
270
  is_retryable_404 = (
271
271
  error.http_status == 404
272
272
  and call_context.qf_version is not None
273
- and (context.qf_version_source or "unset") != "explicit"
274
273
  )
275
274
  if not is_retryable_404:
276
275
  raise