cabloy 5.1.51 → 5.1.53

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 (113) hide show
  1. package/.claude/skills/cabloy-contract-loop/SKILL.md +1 -1
  2. package/.claude/skills/cabloy-frontend-scaffold/SKILL.md +11 -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 +42 -0
  7. package/CLAUDE.md +7 -4
  8. package/README.md +36 -21
  9. package/cabloy-docs/.vitepress/config.mjs +171 -44
  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 +47 -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 +34 -3
  27. package/cabloy-docs/editions/choosing-between-basic-and-start.md +84 -0
  28. package/cabloy-docs/editions/overview.md +114 -20
  29. package/cabloy-docs/frontend/css-in-js-guide.md +1 -1
  30. package/cabloy-docs/frontend/environment-config-guide.md +28 -0
  31. package/cabloy-docs/frontend/foundation.md +3 -2
  32. package/cabloy-docs/frontend/introduction.md +73 -4
  33. package/cabloy-docs/frontend/navigation-guards-guide.md +1 -1
  34. package/cabloy-docs/frontend/quickstart.md +4 -2
  35. package/cabloy-docs/frontend/scripts.md +2 -2
  36. package/cabloy-docs/frontend/ssr-env.md +23 -0
  37. package/cabloy-docs/frontend/theme-guide.md +140 -7
  38. package/cabloy-docs/fullstack/cli.md +118 -0
  39. package/cabloy-docs/fullstack/comparison-with-other-frameworks.md +117 -0
  40. package/cabloy-docs/fullstack/edition-collaboration-differences.md +3 -2
  41. package/cabloy-docs/fullstack/introduction.md +84 -34
  42. package/cabloy-docs/fullstack/quickstart.md +7 -4
  43. package/cabloy-docs/fullstack/vona-zova-integration.md +2 -2
  44. package/cabloy-docs/fullstack/vscode-extensions.md +126 -0
  45. package/cabloy-docs/index.md +39 -40
  46. package/cabloy-docs/reference/frontend-directory-structure.md +125 -0
  47. package/cabloy-docs/reference/glossary.md +2 -2
  48. package/cabloy-docs/reference/introduction.md +47 -0
  49. package/cabloy-docs/reference/package-map.md +2 -0
  50. package/cabloy-docs/reference/repo-scripts.md +5 -3
  51. package/package.json +1 -1
  52. package/vona/README.md +1 -1
  53. package/vona/pnpm-lock.yaml +383 -38
  54. package/vona/src/suite-vendor/a-cabloy/modules/a-ssr/package.json +1 -1
  55. package/vona/src/suite-vendor/a-cabloy/modules/a-ssr/src/.metadata/index.ts +49 -1
  56. package/vona/src/suite-vendor/a-cabloy/modules/a-ssr/src/controller/memoryDiag.ts +97 -0
  57. package/vona/src/suite-vendor/a-cabloy/package.json +1 -1
  58. package/zova/README.md +1 -1
  59. package/zova/package.original.json +4 -4
  60. package/zova/packages-cli/cli/package.json +2 -2
  61. package/zova/packages-cli/cli-set-front/package.json +2 -2
  62. package/zova/packages-cli/cli-set-front/src/lib/bean/cli.tools.metadata.ts +1 -1
  63. package/zova/packages-cli/cli-set-front/src/lib/bean/toolsMetadata/generateConfig.ts +2 -12
  64. package/zova/packages-utils/zova-jsx/package.json +2 -2
  65. package/zova/packages-utils/zova-vite/package.json +2 -2
  66. package/zova/packages-utils/zova-vite/templates/app/controller.tsx_ +3 -3
  67. package/zova/packages-zova/zova/package.json +3 -3
  68. package/zova/packages-zova/zova-core/package.json +2 -2
  69. package/zova/packages-zova/zova-core/src/bean/beanContainer.ts +3 -3
  70. package/zova/packages-zova/zova-core/src/bean/beanControllerPageBase.ts +1 -0
  71. package/zova/packages-zova/zova-core/src/core/component/module.ts +16 -16
  72. package/zova/packages-zova/zova-core/src/core/context/component.ts +35 -3
  73. package/zova/packages-zova/zova-core/src/core/context/util.ts +15 -11
  74. package/zova/packages-zova/zova-core/src/core/sys/config.ts +1 -1
  75. package/zova/pnpm-lock.yaml +1607 -1690
  76. package/zova/src/front/config/config/config.ts +1 -1
  77. package/zova/src/suite/a-demo/modules/demo-basic/src/.metadata/index.ts +11 -0
  78. package/zova/src/suite/a-demo/modules/demo-basic/src/.metadata/locales.ts +0 -15
  79. package/zova/src/suite/a-demo/modules/demo-basic/src/.metadata/page/toolMinimal.ts +9 -0
  80. package/zova/src/suite/a-demo/modules/demo-basic/src/page/toolMinimal/controller.tsx +11 -0
  81. package/zova/src/suite/a-demo/modules/demo-basic/src/routes.ts +10 -0
  82. package/zova/src/suite/a-devui/modules/devui-adapter/src/bean/meta.themeHandler.ts +1 -0
  83. package/zova/src/suite/a-home/modules/home-base/src/.metadata/locales.ts +0 -15
  84. package/zova/src/suite/a-home/modules/home-base/src/service/routerGuards.ts +1 -1
  85. package/zova/src/suite/a-home/modules/home-base/src/service/ssrLayout.ts +1 -0
  86. package/zova/src/suite/a-home/modules/home-layoutadmin/src/.metadata/locales.ts +0 -15
  87. package/zova/src/suite/a-home/modules/home-layoutweb/src/.metadata/locales.ts +0 -15
  88. package/zova/src/suite/a-home/modules/home-layoutweb/src/component/layoutWeb/controller.tsx +2 -2
  89. package/zova/src/suite/a-home/modules/home-login/src/.metadata/locales.ts +0 -15
  90. package/zova/src/suite/a-home/modules/home-passport/src/model/passport.ts +2 -2
  91. package/zova/src/suite/cabloy-basic/modules/basic-captcha/src/.metadata/locales.ts +0 -15
  92. package/zova/src/suite/cabloy-basic/modules/basic-form/src/.metadata/locales.ts +0 -15
  93. package/zova/src/suite/cabloy-basic/modules/basic-page/src/.metadata/locales.ts +0 -15
  94. package/zova/src/suite/cabloy-basic/modules/basic-pageentry/src/.metadata/locales.ts +0 -15
  95. package/zova/src/suite/cabloy-basic/modules/basic-table/src/.metadata/locales.ts +0 -15
  96. package/zova/src/suite-vendor/a-zova/modules/a-interceptor/package.json +1 -1
  97. package/zova/src/suite-vendor/a-zova/modules/a-interceptor/src/bean/interceptor.jwt.ts +1 -1
  98. package/zova/src/suite-vendor/a-zova/modules/a-model/package.json +1 -1
  99. package/zova/src/suite-vendor/a-zova/modules/a-model/src/service/storage.ts +4 -5
  100. package/zova/src/suite-vendor/a-zova/modules/a-openapi/package.json +1 -1
  101. package/zova/src/suite-vendor/a-zova/modules/a-openapi/src/monkey.ts +1 -1
  102. package/zova/src/suite-vendor/a-zova/modules/a-ssr/package.json +1 -1
  103. package/zova/src/suite-vendor/a-zova/modules/a-ssr/src/lib/ssr.ts +36 -1
  104. package/zova/src/suite-vendor/a-zova/modules/a-ssr/src/lib/ssrMetaStore.ts +8 -2
  105. package/zova/src/suite-vendor/a-zova/modules/a-ssr/src/monkey.ts +3 -0
  106. package/zova/src/suite-vendor/a-zova/modules/a-ssrserver/package.json +1 -1
  107. package/zova/src/suite-vendor/a-zova/modules/a-ssrserver/src/service/ssrHandler.ts +70 -29
  108. package/zova/src/suite-vendor/a-zova/modules/a-style/package.json +1 -1
  109. package/zova/src/suite-vendor/a-zova/modules/a-style/src/bean/bean.theme.ts +6 -3
  110. package/zova/src/suite-vendor/a-zova/modules/a-zod/package.json +1 -1
  111. package/zova/src/suite-vendor/a-zova/modules/a-zod/src/.metadata/locales.ts +0 -15
  112. package/zova/src/suite-vendor/a-zova/modules/a-zova/package.json +2 -2
  113. package/zova/src/suite-vendor/a-zova/package.json +9 -9
@@ -3,8 +3,8 @@ layout: home
3
3
 
4
4
  hero:
5
5
  name: 'Cabloy'
6
- text: 'Unified fullstack framework documentation'
7
- tagline: Build SSR, SPA, Web, and Admin applications with monorepo-native guidance for Cabloy, Vona, Zova, and AI-assisted development.
6
+ text: 'Node.js fullstack framework for AI vibe coding'
7
+ tagline: Build backend and frontend with one fullstack framework. Vona, Zova, suites, and CLI-first workflows make AI vibe coding faster and more accurate.
8
8
  actions:
9
9
  - theme: brand
10
10
  text: Get Started
@@ -17,57 +17,56 @@ hero:
17
17
  link: /ai/introduction
18
18
 
19
19
  features:
20
- - title: Fullstack by design
21
- details: Understand how Cabloy combines the Vona backend and the Zova frontend in one source tree so humans and AI agents can work from the same ground truth.
22
- - title: Edition-aware workflows
23
- details: Distinguish what is common across Cabloy Basic and Cabloy Start, and what changes because of UI library, module composition, or private value-add features.
24
- - title: CLI-first automation
25
- details: Reuse Vona and Zova CLI capabilities for scaffolding, refactoring, metadata, and verification instead of re-deriving framework conventions from scratch.
26
- - title: AI-ready knowledge system
27
- details: Connect public docs, internal architecture notes, Claude rules, and skills so AI-assisted development stays accurate, efficient, and maintainable.
20
+ - title: One framework system
21
+ details: Build backend and frontend in one fullstack architecture.
22
+ - title: Vona + Zova
23
+ details: Use aligned backend and frontend frameworks for code sharing, workflow reuse, and cross-stack consistency.
24
+ - title: Suite-based modular system
25
+ details: Organize capabilities as suites and modules so services, features, metadata, and tooling evolve in composable units.
26
+ - title: Multiple delivery modes
27
+ details: Deliver SSR, SPA, Web, and Admin applications with shared conventions across the stack.
28
+ - title: CLI-first workflows for AI vibe coding
29
+ details: Turn scaffolding, metadata, refactors, and verification into explicit commands for faster, more accurate AI vibe coding.
30
+ - title: Monorepo-native development
31
+ details: Keep framework source, docs, and tooling aligned in one monorepo workflow.
28
32
  ---
29
33
 
30
34
  # Cabloy Documentation
31
35
 
32
- This site is the new documentation home for the Cabloy monorepo.
36
+ Cabloy is a Node.js fullstack framework for AI vibe coding. Use one fullstack framework instead of stitching together separate backend and frontend stacks. With Vona, Zova, suite-based modules, and CLI-first workflows, Cabloy turns common scaffolding, metadata, refactors, and verification into explicit commands for faster, more accurate AI vibe coding.
33
37
 
34
- It is designed around four practical goals:
38
+ Start here to learn the shared Cabloy architecture, see how Vona and Zova fit together, understand how Cabloy Basic and Cabloy Start share one fullstack core but diverge by edition, and follow CLI-first workflows grounded in the current source tree.
35
39
 
36
- 1. explain the shared architecture across Cabloy, Vona, and Zova
37
- 2. document the real monorepo workflows used in current source code
38
- 3. distinguish Cabloy Basic and Cabloy Start clearly
39
- 4. provide durable guidance for AI-assisted development
40
+ ## What you can do here
40
41
 
41
- ## What is covered here
42
-
43
- - **Fullstack**: monorepo setup, shared workflows, and cross-stack architecture
44
- - **Backend (Vona)**: backend concepts, infrastructure, and CLI-backed workflows
45
- - **Frontend (Zova)**: frontend concepts, SSR, UI-stack considerations, and CLI-backed workflows
46
- - **Editions**: how Cabloy Basic and Cabloy Start relate and where they differ
47
- - **AI Development**: how docs, skills, rules, commands, and internal engineering notes work together
48
- - **Reference**: scripts, CLI command families, package layout, and terminology
49
-
50
- ## Documentation scope labels
51
-
52
- Use these labels throughout the site:
53
-
54
- <Badge type="tip" text="Common" /> applies to both Cabloy Basic and Cabloy Start.
55
-
56
- <Badge type="info" text="Basic" /> applies only to Cabloy Basic.
57
-
58
- <Badge type="warning" text="Start" /> applies only to Cabloy Start.
42
+ - **Get started quickly** with the fullstack quickstart and core Cabloy concepts
43
+ - **Learn the shared fullstack architecture** across Cabloy, Vona, and Zova
44
+ - **Explore backend and frontend workflows** without losing the cross-stack picture
45
+ - **See how Cabloy Basic and Cabloy Start differ by edition** when UI assumptions, flavors, modules, SSR sites, or AI workflow guidance matter
46
+ - **Follow source-grounded AI vibe coding guidance** for prompting, workflow selection, and verification
59
47
 
60
48
  ## First reading path
61
49
 
62
- ### For project users
50
+ ### For getting started
63
51
 
64
52
  1. [Fullstack Quickstart](/fullstack/quickstart)
65
53
  2. [Editions Overview](/editions/overview)
66
- 3. [Fullstack Introduction](/fullstack/introduction)
54
+ 3. [Choosing Between Cabloy Basic and Cabloy Start](/editions/choosing-between-basic-and-start)
55
+ 4. [Fullstack Introduction](/fullstack/introduction)
67
56
 
68
- ### For framework contributors and AI workflows
57
+ ### For contributors and AI vibe coding workflows
69
58
 
70
59
  1. [Fullstack Introduction](/fullstack/introduction)
71
- 2. [AI Development Introduction](/ai/introduction)
72
- 3. [Repo Scripts Reference](/reference/repo-scripts)
73
- 4. [Editions Overview](/editions/overview)
60
+ 2. [Fullstack CLI](/fullstack/cli)
61
+ 3. [VS Code Extensions](/fullstack/vscode-extensions)
62
+ 4. [AI Development Introduction](/ai/introduction)
63
+ 5. [Reference Introduction](/reference/introduction)
64
+ 6. [Editions Overview](/editions/overview)
65
+
66
+ ## Documentation scope labels
67
+
68
+ Use these labels throughout the site:
69
+
70
+ - <Badge type="tip" text="Common" /> applies to both Cabloy Basic and Cabloy Start.
71
+ - <Badge type="info" text="Basic" /> applies only to Cabloy Basic.
72
+ - <Badge type="warning" text="Start" /> applies only to Cabloy Start.
@@ -0,0 +1,125 @@
1
+ # Frontend Directory Structure
2
+
3
+ This page gives a compact reference view of the frontend tree under `zova/`.
4
+
5
+ ## Why this page exists
6
+
7
+ The package map explains the architectural meaning of package, module, and suite boundaries.
8
+
9
+ This page complements that by showing the practical frontend tree layout used in the Cabloy repository.
10
+
11
+ ## Simplified frontend tree
12
+
13
+ Representative frontend structure:
14
+
15
+ ```text
16
+ zova/
17
+ ├── packages-cli/
18
+ ├── packages-utils/
19
+ ├── packages-zova/
20
+ ├── env/
21
+ ├── public/
22
+ ├── src-ssr/
23
+ └── src/
24
+ ├── boot/
25
+ ├── css/
26
+ ├── front/
27
+ │ ├── config/
28
+ │ └── typing/
29
+ ├── module/
30
+ ├── module-vendor/
31
+ ├── suite/
32
+ └── suite-vendor/
33
+ ```
34
+
35
+ ## Meaning of the main directories
36
+
37
+ | Path | Meaning |
38
+ | ------------------------- | ---------------------------------------------- |
39
+ | `zova/packages-cli/` | Zova CLI entrypoints and command sets |
40
+ | `zova/packages-utils/` | shared frontend-side utilities |
41
+ | `zova/packages-zova/` | framework packages |
42
+ | `zova/env/` | frontend env files and runtime/build inputs |
43
+ | `zova/public/` | public static assets |
44
+ | `zova/src-ssr/` | SSR entrypoints and SSR-related project source |
45
+ | `zova/src/boot/` | app bootstrapping and startup registration |
46
+ | `zova/src/css/` | project-level CSS and theme entry assets |
47
+ | `zova/src/front/config/` | project-level frontend config overrides |
48
+ | `zova/src/front/typing/` | project-level frontend type definitions |
49
+ | `zova/src/module/` | first-party standalone frontend modules |
50
+ | `zova/src/module-vendor/` | vendor-provided standalone frontend modules |
51
+ | `zova/src/suite/` | first-party frontend suites and their modules |
52
+ | `zova/src/suite-vendor/` | vendor-provided frontend suites and modules |
53
+
54
+ ## Project-level frontend areas
55
+
56
+ Within the frontend application layer, contributors should also know these practical areas:
57
+
58
+ | Path | Meaning |
59
+ | ------------------------ | -------------------------------------------------- |
60
+ | `zova/env/` | frontend env files and runtime/build inputs |
61
+ | `zova/public/` | project-level public static assets |
62
+ | `zova/src-ssr/` | project-level SSR entry and SSR middleware wiring |
63
+ | `zova/src/boot/` | project-level boot registration and startup hooks |
64
+ | `zova/src/css/` | project-level CSS, theme, and style entry assets |
65
+ | `zova/src/front/config/` | project-level frontend config and override surface |
66
+ | `zova/src/front/typing/` | project-level frontend typing definitions |
67
+
68
+ ## Edition note
69
+
70
+ The high-level Zova tree above is intentionally stable across Cabloy Basic and Cabloy Start.
71
+
72
+ A practical rule is:
73
+
74
+ - use the shared tree as the structural reference
75
+ - treat suite names and UI-layer examples as edition-sensitive details
76
+ - in Cabloy Basic, public examples may include suites such as `cabloy-basic` and `a-devui`
77
+ - in Cabloy Start, examples may include suites such as `cabloy-start` and `a-vuetify`
78
+
79
+ Cabloy Start is a sibling repository, not a subdirectory of this monorepo.
80
+
81
+ ## Practical development reading of the tree
82
+
83
+ A useful rule is:
84
+
85
+ - start in `zova/src/module/` when the work belongs to a standalone frontend module
86
+ - start in `zova/src/suite/` when the work belongs to a suite-composed business area
87
+ - inspect `zova/packages-cli/` when the task is about command discovery, generation behavior, or refactor behavior
88
+ - inspect `zova/src/front/config/` when the task is about project-level frontend config overrides rather than module-local defaults
89
+ - inspect `zova/src/boot/` or `zova/src-ssr/` when the task is about startup flow or SSR behavior
90
+ - inspect `zova/src/css/` and `zova/public/` when the task is about project-level styling or static assets
91
+
92
+ A practical generator-oriented reading is:
93
+
94
+ - `create:*` commands choose the structural target before placing frontend resources
95
+ - `init:*` commands create project-level or module-level support assets
96
+ - `refactor:*` commands reshape existing frontend patterns without requiring manual rework from scratch
97
+ - `openapi:*` commands affect generated SDK-related frontend surfaces
98
+
99
+ ## Relationship to other reference pages
100
+
101
+ Read this page together with:
102
+
103
+ - [Package Map](/reference/package-map)
104
+ - [Frontend (Zova)](/frontend/introduction)
105
+ - [Modules and Suites](/frontend/modules-and-suites)
106
+ - [Environment and Config Guide](/frontend/environment-config-guide)
107
+ - [App Startup Guide](/frontend/app-startup-guide)
108
+ - [System Startup Guide](/frontend/system-startup-guide)
109
+ - [Frontend CLI](/frontend/cli)
110
+
111
+ A practical split is:
112
+
113
+ - [Frontend (Zova)](/frontend/introduction) is the broader frontend hub
114
+ - [Package Map](/reference/package-map) explains architecture boundaries and package metadata
115
+ - this page explains the practical directory tree contributors navigate
116
+
117
+ ## Implementation checks for frontend file-location changes
118
+
119
+ When changing frontend code, ask:
120
+
121
+ 1. does this change belong to a standalone module, a suite-contained module, or a project-level frontend area?
122
+ 2. is the task about generation behavior under `packages-cli/`, startup behavior under `src/boot` or `src-ssr`, or feature code under `src/`?
123
+ 3. should the example use a shared structural path, a Cabloy Basic example, or a public Cabloy Start example note?
124
+
125
+ That helps keep frontend file references aligned with the actual monorepo layout.
@@ -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
 
@@ -0,0 +1,47 @@
1
+ # Reference
2
+
3
+ This page is the reference hub for shared monorepo commands, package lookup, directory lookup, and shared terminology.
4
+
5
+ ## What Reference is responsible for
6
+
7
+ - shared monorepo command entrypoints
8
+ - CLI lookup and command-surface discovery
9
+ - package lookup across the repository
10
+ - backend and frontend directory lookup
11
+ - shared terminology and glossary support
12
+
13
+ ## How to approach reference work
14
+
15
+ For contributor and automation workflows in this repository, prefer this order:
16
+
17
+ 1. inspect the root `package.json` when you need the shared workflow entrypoints
18
+ 2. inspect the CLI reference before inferring command families from memory
19
+ 3. use package and directory lookup pages when the task is about locating code, modules, or shared terms
20
+ 4. pair Reference pages with Backend, Frontend, or Fullstack guides when lookup alone is not enough
21
+
22
+ ## Reference reading paths
23
+
24
+ Use Reference as the lookup area for shared commands, package discovery, directory lookup, and shared terminology.
25
+
26
+ ### Workflow entry path
27
+
28
+ Start here when you first need the shared monorepo command surface:
29
+
30
+ - [Repo Scripts](/reference/repo-scripts)
31
+ - [CLI Reference](/reference/cli-reference)
32
+ - [Fullstack CLI](/fullstack/cli)
33
+
34
+ ### Structure and lookup path
35
+
36
+ Use this path when you need to find where packages, backend directories, frontend directories, or shared terms live:
37
+
38
+ - [Package Map](/reference/package-map)
39
+ - [Backend Directory Structure](/reference/backend-directory-structure)
40
+ - [Frontend Directory Structure](/reference/frontend-directory-structure)
41
+ - [Glossary](/reference/glossary)
42
+
43
+ ## Edition impact
44
+
45
+ Cabloy Start keeps the same high-level workflow pattern while using different frontend flavors such as `cabloyStartAdmin` and `cabloyStartWeb`, plus its own SSR site baselines and project assets in the licensed private repository.
46
+
47
+ When documenting or automating flavor-specific commands, always confirm the active repo first.
@@ -96,6 +96,8 @@ For the broader backend entry path, also see [Backend (Vona)](/backend/introduct
96
96
 
97
97
  For the frontend architectural meaning of modules, suites, scope-driven resources, and runtime/startup structure, see `/frontend/modules-and-suites`, `/frontend/module-scope`, `/frontend/ioc-and-beans`, `/frontend/environment-config-guide`, `/frontend/app-startup-guide`, and `/frontend/system-startup-guide`.
98
98
 
99
+ For the practical frontend directory tree contributors navigate, also see [Frontend Directory Structure](/reference/frontend-directory-structure).
100
+
99
101
  ## Sibling edition
100
102
 
101
103
  - `cabloy-start` is a separate sibling repository, not a subdirectory of this monorepo.
@@ -1,5 +1,9 @@
1
1
  # Repo Scripts
2
2
 
3
+ Use this page when you need the compact lookup surface for the shared root scripts exposed by the Cabloy Basic monorepo.
4
+
5
+ For the broader Reference landing page, see [Reference Introduction](/reference/introduction).
6
+
3
7
  The root `package.json` is the first reference point for shared monorepo workflows.
4
8
 
5
9
  ## Current shared entrypoints in Cabloy Basic
@@ -21,9 +25,7 @@ The root `package.json` is the first reference point for shared monorepo workflo
21
25
 
22
26
  ## Edition-sensitive note
23
27
 
24
- Cabloy Start keeps the same high-level pattern while using different frontend flavors such as `cabloyStartAdmin` and `cabloyStartWeb`.
25
-
26
- ### Documentation and automation guidance
28
+ Cabloy Start keeps the same high-level pattern while using different frontend flavors such as `cabloyStartAdmin` and `cabloyStartWeb`, plus its own SSR site baselines and project assets in the licensed private repository.
27
29
 
28
30
  When documenting or automating flavor-specific commands, always confirm the active repo first.
29
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cabloy",
3
- "version": "5.1.51",
3
+ "version": "5.1.53",
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