cabloy 5.1.51 → 5.1.52

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 (80) hide show
  1. package/.claude/skills/cabloy-contract-loop/SKILL.md +1 -1
  2. package/.claude/skills/cabloy-frontend-scaffold/SKILL.md +1 -1
  3. package/.claude/skills/cabloy-workflow/SKILL.md +8 -4
  4. package/.claude/skills/cabloy-workflow/references/edition-detection.md +3 -2
  5. package/.github/workflows/docs-pages.yml +2 -0
  6. package/CHANGELOG.md +25 -0
  7. package/CLAUDE.md +4 -4
  8. package/README.md +36 -21
  9. package/cabloy-docs/.vitepress/config.mjs +33 -0
  10. package/cabloy-docs/ai/class-placement-rule.md +1 -0
  11. package/cabloy-docs/ai/cli-for-agents.md +1 -1
  12. package/cabloy-docs/ai/docs-skills-rules-mapping.md +1 -0
  13. package/cabloy-docs/ai/edition-consistency-checklist.md +150 -0
  14. package/cabloy-docs/ai/edition-detection.md +3 -3
  15. package/cabloy-docs/ai/global-bean-lookup.md +1 -0
  16. package/cabloy-docs/ai/introduction.md +3 -3
  17. package/cabloy-docs/ai/repo-guidance.md +2 -2
  18. package/cabloy-docs/ai/rules-and-config.md +1 -1
  19. package/cabloy-docs/ai/skills.md +2 -0
  20. package/cabloy-docs/ai/verification.md +1 -0
  21. package/cabloy-docs/ai/virtual-decorator-guidance.md +206 -0
  22. package/cabloy-docs/backend/introduction.md +2 -2
  23. package/cabloy-docs/backend/logger-guide.md +1 -1
  24. package/cabloy-docs/backend/quickstart.md +3 -3
  25. package/cabloy-docs/editions/cabloy-basic.md +4 -3
  26. package/cabloy-docs/editions/cabloy-start.md +33 -2
  27. package/cabloy-docs/editions/choosing-between-basic-and-start.md +84 -0
  28. package/cabloy-docs/editions/overview.md +83 -20
  29. package/cabloy-docs/frontend/foundation.md +3 -2
  30. package/cabloy-docs/frontend/introduction.md +5 -4
  31. package/cabloy-docs/frontend/quickstart.md +3 -2
  32. package/cabloy-docs/frontend/scripts.md +2 -2
  33. package/cabloy-docs/fullstack/cli.md +118 -0
  34. package/cabloy-docs/fullstack/comparison-with-other-frameworks.md +117 -0
  35. package/cabloy-docs/fullstack/edition-collaboration-differences.md +3 -2
  36. package/cabloy-docs/fullstack/introduction.md +45 -33
  37. package/cabloy-docs/fullstack/quickstart.md +7 -4
  38. package/cabloy-docs/fullstack/vona-zova-integration.md +2 -2
  39. package/cabloy-docs/fullstack/vscode-extensions.md +126 -0
  40. package/cabloy-docs/index.md +39 -40
  41. package/cabloy-docs/reference/glossary.md +2 -2
  42. package/cabloy-docs/reference/repo-scripts.md +1 -1
  43. package/package.json +1 -1
  44. package/vona/README.md +1 -1
  45. package/vona/pnpm-lock.yaml +383 -38
  46. package/vona/src/suite-vendor/a-cabloy/modules/a-ssr/package.json +1 -1
  47. package/vona/src/suite-vendor/a-cabloy/modules/a-ssr/src/.metadata/index.ts +49 -1
  48. package/vona/src/suite-vendor/a-cabloy/modules/a-ssr/src/controller/memoryDiag.ts +97 -0
  49. package/vona/src/suite-vendor/a-cabloy/package.json +1 -1
  50. package/zova/README.md +1 -1
  51. package/zova/package.original.json +4 -4
  52. package/zova/packages-cli/cli/package.json +2 -2
  53. package/zova/packages-cli/cli-set-front/package.json +2 -2
  54. package/zova/packages-utils/zova-jsx/package.json +2 -2
  55. package/zova/packages-utils/zova-vite/package.json +2 -2
  56. package/zova/packages-utils/zova-vite/templates/app/controller.tsx_ +3 -3
  57. package/zova/packages-zova/zova/package.json +3 -3
  58. package/zova/packages-zova/zova-core/package.json +2 -2
  59. package/zova/packages-zova/zova-core/src/bean/beanContainer.ts +3 -3
  60. package/zova/packages-zova/zova-core/src/bean/beanControllerPageBase.ts +1 -0
  61. package/zova/packages-zova/zova-core/src/core/component/module.ts +16 -16
  62. package/zova/packages-zova/zova-core/src/core/context/component.ts +35 -3
  63. package/zova/packages-zova/zova-core/src/core/context/util.ts +15 -11
  64. package/zova/pnpm-lock.yaml +1596 -1679
  65. package/zova/src/suite/a-demo/modules/demo-basic/src/.metadata/index.ts +11 -0
  66. package/zova/src/suite/a-demo/modules/demo-basic/src/.metadata/page/toolMinimal.ts +9 -0
  67. package/zova/src/suite/a-demo/modules/demo-basic/src/page/toolMinimal/controller.tsx +11 -0
  68. package/zova/src/suite/a-demo/modules/demo-basic/src/routes.ts +10 -0
  69. package/zova/src/suite-vendor/a-zova/modules/a-model/package.json +1 -1
  70. package/zova/src/suite-vendor/a-zova/modules/a-model/src/service/storage.ts +4 -5
  71. package/zova/src/suite-vendor/a-zova/modules/a-openapi/package.json +1 -1
  72. package/zova/src/suite-vendor/a-zova/modules/a-openapi/src/monkey.ts +1 -1
  73. package/zova/src/suite-vendor/a-zova/modules/a-ssr/package.json +1 -1
  74. package/zova/src/suite-vendor/a-zova/modules/a-ssr/src/lib/ssr.ts +36 -1
  75. package/zova/src/suite-vendor/a-zova/modules/a-ssr/src/lib/ssrMetaStore.ts +7 -2
  76. package/zova/src/suite-vendor/a-zova/modules/a-ssr/src/monkey.ts +3 -0
  77. package/zova/src/suite-vendor/a-zova/modules/a-ssrserver/package.json +1 -1
  78. package/zova/src/suite-vendor/a-zova/modules/a-ssrserver/src/service/ssrHandler.ts +70 -29
  79. package/zova/src/suite-vendor/a-zova/modules/a-zova/package.json +2 -2
  80. package/zova/src/suite-vendor/a-zova/package.json +6 -6
@@ -14,11 +14,11 @@ The frontend framework in the Cabloy ecosystem.
14
14
 
15
15
  ## Cabloy Basic
16
16
 
17
- The public reference repository for the shared Cabloy architecture.
17
+ The public framework/reference edition for the shared Cabloy architecture.
18
18
 
19
19
  ## Cabloy Start
20
20
 
21
- A private sibling repository with different UI and module choices, provided as a value-add edition.
21
+ The private commercial edition, provided as a licensed sibling repository with different UI, module, and project-baseline choices.
22
22
 
23
23
  ## Edition detection
24
24
 
@@ -21,7 +21,7 @@ The root `package.json` is the first reference point for shared monorepo workflo
21
21
 
22
22
  ## Edition-sensitive note
23
23
 
24
- Cabloy Start keeps the same high-level pattern while using different frontend flavors such as `cabloyStartAdmin` and `cabloyStartWeb`.
24
+ Cabloy Start keeps the same high-level pattern while using different frontend flavors such as `cabloyStartAdmin` and `cabloyStartWeb`, plus its own Start-specific suites, SSR site baselines, and project assets in the licensed private repository.
25
25
 
26
26
  ### Documentation and automation guidance
27
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cabloy",
3
- "version": "5.1.51",
3
+ "version": "5.1.52",
4
4
  "gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
5
5
  "description": "A Node.js fullstack framework",
6
6
  "keywords": [
package/vona/README.md CHANGED
@@ -1,4 +1,4 @@
1
- English | [简体中文](./README.zh-CN.md)
1
+ English | [Simplified Chinese](./README.zh-CN.md)
2
2
 
3
3
  # Vona
4
4