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
@@ -0,0 +1,118 @@
1
+ # Fullstack CLI
2
+
3
+ This guide explains the shared CLI workflow for Cabloy in the monorepo.
4
+
5
+ Use this page to understand the cross-stack mental model first, then go deeper into the backend, frontend, and reference pages as needed.
6
+
7
+ ## Why the fullstack CLI matters
8
+
9
+ Cabloy treats many common tasks as framework workflows rather than ad hoc manual steps.
10
+
11
+ That matters across the full stack because:
12
+
13
+ - Vona and Zova already expose framework-aware generators and tooling
14
+ - the monorepo already exposes shared root scripts for development and verification
15
+ - backend and frontend work stay more consistent when contributors start from the existing command surface instead of inventing manual scaffolding
16
+
17
+ A practical default is: inspect the CLI first, run the matching workflow if it already exists, then make only the minimal follow-up edits the task actually needs.
18
+
19
+ ## Shared repo entrypoints
20
+
21
+ In this repository, the two main CLI entrypoints are:
22
+
23
+ ```bash
24
+ npm run vona
25
+ npm run zova
26
+ ```
27
+
28
+ Use them as the shared terminal-first entrypoints for framework-aware workflows.
29
+
30
+ At the same time, the repo root also exposes shared scripts for broader development tasks such as dev, build, test, and typecheck.
31
+
32
+ Use this distinction consistently:
33
+
34
+ - use the CLI when you are discovering commands, generating framework resources, running framework-specific tooling, or inspecting workflow families
35
+ - use root scripts when you are running broader repository workflows such as development, builds, or verification
36
+
37
+ For the compact root-script lookup surface, see [Repo Scripts](/reference/repo-scripts).
38
+
39
+ ## Shared discovery pattern
40
+
41
+ Vona and Zova follow the same discovery model.
42
+
43
+ ### 1. List command groups and commands
44
+
45
+ ```bash
46
+ npm run vona :
47
+ npm run zova :
48
+ ```
49
+
50
+ ### 2. Narrow to a command family
51
+
52
+ ```bash
53
+ npm run vona :create
54
+ npm run zova :create
55
+ ```
56
+
57
+ ### 3. Inspect help for one command
58
+
59
+ ```bash
60
+ npm run vona :create:bean --help
61
+ npm run zova :create:component --help
62
+ ```
63
+
64
+ This discovery pattern should be the default contributor workflow before creating files by hand.
65
+
66
+ ## How to choose the right surface
67
+
68
+ A practical rule is:
69
+
70
+ - start with `npm run vona` when the task is backend-oriented
71
+ - start with `npm run zova` when the task is frontend-oriented
72
+ - start with root scripts when the task is about repo-wide development, build, or verification
73
+
74
+ In practice, that usually means:
75
+
76
+ - **Vona CLI** for backend generation and backend-specific tooling
77
+ - **Zova CLI** for frontend generation, refactors, and frontend-specific tooling
78
+ - **Root scripts** for broader runtime and verification flows
79
+
80
+ For side-specific depth, see:
81
+
82
+ - [Backend CLI](/backend/cli)
83
+ - [Frontend CLI](/frontend/cli)
84
+ - [CLI Reference](/reference/cli-reference)
85
+
86
+ ## Scripts, CLI, and VS Code extensions
87
+
88
+ Use these three surfaces for different jobs:
89
+
90
+ | Surface | Best for | Typical examples |
91
+ | --- | --- | --- |
92
+ | Root scripts | Repo-wide development, build, and verification workflows | `npm run dev`, `npm run build`, `npm run test` |
93
+ | CLI | Framework-aware generation, refactors, initialization, and tooling | `npm run vona :create`, `npm run zova :refactor`, `npm run zova :openapi` |
94
+ | VS Code extensions | In-editor discovery of the same framework workflow families | Explorer right-click menus for `Create`, `Init`, `Refactor`, `Tools`, and related groups |
95
+
96
+ ## CLI and VS Code extensions
97
+
98
+ The CLI is the authoritative workflow surface.
99
+
100
+ The VS Code extensions are the editor-side discovery layer for those same workflows.
101
+
102
+ A practical rule is:
103
+
104
+ - use the CLI when you want explicit, scriptable, reproducible execution
105
+ - use VS Code menus when you want faster in-editor discovery of the same workflow families
106
+
107
+ For the editor-side counterpart, see [VS Code Extensions](/fullstack/vscode-extensions).
108
+
109
+ ## Recommended workflow rule
110
+
111
+ Before creating or refactoring framework-managed files by hand:
112
+
113
+ 1. inspect the relevant CLI family
114
+ 2. run the matching generator, initializer, refactor, or tooling workflow
115
+ 3. inspect the generated or transformed result
116
+ 4. apply only the minimal manual follow-up edits that are still necessary
117
+
118
+ This keeps fullstack work aligned with Cabloy conventions and reduces avoidable manual scaffolding.
@@ -0,0 +1,117 @@
1
+ # Comparison with Other Frameworks
2
+
3
+ This page shows how **Cabloy** differs from several common framework choices, so readers can quickly see where Cabloy stands out as a Node.js fullstack framework system and which strengths come from the fullstack system as a whole versus the backend layer provided by **Vona**.
4
+
5
+ ## What is being compared
6
+
7
+ Cabloy is a **Node.js fullstack framework system**.
8
+
9
+ That means the comparison is not only about a backend runtime or only about a frontend stack. It is about how **Vona** on the backend and **Zova** on the frontend stay aligned through shared conventions, shared scripts, SSR-aware delivery modes, and cross-stack generation workflows.
10
+
11
+ For the broader Cabloy model, start with these pages:
12
+
13
+ - [Fullstack Introduction](/fullstack/introduction)
14
+ - [Vona + Zova Integration](/fullstack/vona-zova-integration)
15
+ - [Backend OpenAPI to Frontend SDK](/fullstack/openapi-to-sdk)
16
+ - [Frontend Metadata Back to Backend](/fullstack/frontend-metadata-to-backend)
17
+
18
+ ## Comparison lens
19
+
20
+ The sections below use the same comparison lens each time:
21
+
22
+ - **System center** — what the framework treats as the main architectural center
23
+ - **Backend model** — how much backend structure and infrastructure the framework provides by default
24
+ - **Frontend and admin model** — how the UI side is expected to evolve
25
+ - **Cross-stack workflow** — how backend/frontend contracts and generation workflows stay aligned
26
+ - **Best fit** — the kind of team or project the framework fits most naturally
27
+
28
+ ## Cabloy vs Next.js
29
+
30
+ | Perspective | Cabloy | Next.js |
31
+ | ------------------------ | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- |
32
+ | System center | One framework system with Vona on the backend and Zova on the frontend | Frontend-centric fullstack framework |
33
+ | Backend model | Dedicated backend framework with its own runtime, contracts, infrastructure, and CLI workflows | Backend capabilities are typically centered around the web app runtime |
34
+ | Frontend and admin model | Shared conventions across SSR, SPA, Web, and Admin applications | Strong fit for React-based web application delivery |
35
+ | Cross-stack workflow | Explicit backend OpenAPI output, frontend SDK generation, and frontend metadata feedback loops | Usually chosen per project or ecosystem tooling |
36
+ | Best fit | Teams that want a coordinated fullstack system with a stronger dedicated backend layer | Teams that want a React-centered fullstack web application path |
37
+
38
+ Cabloy and Next.js both target fullstack application development, but they organize the stack differently.
39
+
40
+ Cabloy keeps the backend and frontend as **separate but coordinated framework layers**. That makes it a strong fit when a team wants one framework system with a dedicated backend layer and a dedicated frontend layer, without stitching together unrelated tools by hand.
41
+
42
+ Representative Cabloy strengths in this comparison include:
43
+
44
+ - a clear backend/frontend collaboration model rather than a single frontend-centered runtime
45
+ - explicit contract workflows from backend OpenAPI output to frontend SDK generation
46
+ - frontend-generated metadata that can flow back into backend-side tooling
47
+ - shared delivery conventions for SSR, SPA, Web, and Admin applications
48
+
49
+ If your main goal is a React-centered fullstack web app, Next.js may feel more direct. If your main goal is a **coordinated fullstack framework system** with a stronger backend layer and explicit cross-stack workflows, Cabloy is the better fit.
50
+
51
+ ## Cabloy vs NestJS
52
+
53
+ | Perspective | Cabloy | NestJS |
54
+ | ------------------------ | ----------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- |
55
+ | System center | Fullstack system | Backend framework |
56
+ | Backend model | Vona provides backend runtime, contracts, infrastructure, and CLI workflows | NestJS focuses on backend application structure |
57
+ | Frontend and admin model | Frontend collaboration is built into the broader Cabloy system through Zova and shared docs/workflows | Usually paired with a separate frontend choice |
58
+ | Cross-stack workflow | Backend contracts can feed frontend SDK generation inside the same framework system | Typically assembled from separate backend and frontend tooling choices |
59
+ | Best fit | Teams that want backend strength inside a shared fullstack system | Teams that want a backend-first framework and will choose the frontend stack separately |
60
+
61
+ The most important difference here is **scope**.
62
+
63
+ NestJS is primarily a backend framework. Cabloy is a **fullstack framework system**. So this comparison is not only “backend versus backend.” It is also “backend-first framework” versus “backend + frontend framework system with a shared collaboration model.”
64
+
65
+ Within Cabloy, the backend-specific capabilities come from **Vona**. That is where backend-oriented strengths such as these belong:
66
+
67
+ - unified validation and OpenAPI-oriented schema workflows
68
+ - DTO inference and generation workflows
69
+ - built-in multi-tenant, multi-database, and multi-datasource capabilities
70
+ - broader infrastructure features such as queues, broadcast, schedule, and redlock
71
+ - AOP-oriented backend programming capabilities
72
+
73
+ If a team only needs a backend framework and wants to choose the frontend stack separately, NestJS remains a natural option. If a team wants those backend capabilities to live inside a **shared fullstack system** with Zova, SSR-aware delivery modes, and contract-loop workflows, Cabloy is the better fit.
74
+
75
+ ## Cabloy vs Django Admin
76
+
77
+ | Perspective | Cabloy | Django Admin |
78
+ | ------------------------ | ------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |
79
+ | System center | Typed Node.js fullstack framework system | Python server-centered admin framework experience |
80
+ | Backend model | Dedicated backend runtime and infrastructure through Vona | Django backend conventions centered on the admin stack |
81
+ | Frontend and admin model | Modern frontend layer through Zova with SSR, SPA, Web, and Admin delivery modes | Admin experience is centered on server-rendered templates and built-in admin conventions |
82
+ | Cross-stack workflow | Backend and frontend stay aligned through generated contracts, metadata, and shared workflows | The default model is more tightly centered on the server-side admin stack |
83
+ | Best fit | Teams that want rapid admin development in Node.js without giving up typed frontend flexibility and richer UI interaction | Teams that want a fast server-centered admin path in the Python ecosystem |
84
+
85
+ This comparison is worth keeping even though the language ecosystems are different.
86
+
87
+ In the Python ecosystem, **Django Admin** has long been one of the strongest choices for rapidly building CRUD-oriented admin systems. In the Node.js ecosystem, there has historically been no equally established framework that combines rapid admin development, full backend infrastructure, and a modern fullstack architecture in the same way.
88
+
89
+ Cabloy is designed to fill that gap in the Node.js ecosystem.
90
+
91
+ That is why this comparison matters: it is not only comparing features, but also explaining Cabloy’s **ecosystem role**. For teams that want Django-Admin-like development speed for admin systems but want to stay in Node.js, Cabloy aims to provide that missing fullstack option.
92
+
93
+ At the same time, Cabloy does not stop at reproducing the server-centered admin model. With Vona on the backend and Zova on the frontend, Cabloy gives teams:
94
+
95
+ - a typed modern frontend layer instead of relying only on server-rendered templates
96
+ - richer interaction patterns for Admin and Web applications
97
+ - a smoother path for deeper customization as business systems become more complex
98
+ - a development experience that stays closer to modern Node.js fullstack workflows
99
+
100
+ So although Django Admin remains a benchmark for rapid admin development, Cabloy aims to offer a stronger long-term fit for teams that want both **rapid CRUD-oriented admin delivery** and a more modern fullstack development and interaction model inside Node.js.
101
+
102
+ For Cabloy’s frontend/runtime side of this comparison, see:
103
+
104
+ - [Frontend SSR Overview](/frontend/ssr-overview)
105
+ - [Editions Overview](/editions/overview)
106
+
107
+ ## How to read these comparisons
108
+
109
+ These comparisons are most useful when your decision depends on questions like:
110
+
111
+ - do you want one coordinated framework system instead of stitching backend and frontend frameworks together?
112
+ - do you need a stronger dedicated backend layer inside a fullstack architecture?
113
+ - do you want explicit contract-loop workflows between backend and frontend?
114
+ - do you need shared conventions across SSR, SPA, Web, and Admin delivery modes?
115
+ - do you want Django-Admin-like rapid admin development inside the Node.js ecosystem, but with a more modern frontend and interaction model?
116
+
117
+ If those questions matter, Cabloy’s value is not just one isolated feature. It is the way **Vona**, **Zova**, shared scripts, and cross-stack workflows stay aligned as one framework system.
@@ -22,10 +22,11 @@ Both editions share the same broad collaboration loop:
22
22
 
23
23
  The most important differences show up in:
24
24
 
25
- - frontend UI stack assumptions
25
+ - frontend UI layer assumptions
26
26
  - frontend flavor names
27
27
  - frontend module composition
28
- - private value-add content in Cabloy Start
28
+ - admin/web SSR site baselines
29
+ - private value-add content and project assets in Cabloy Start
29
30
  - potentially different generated output paths or integration details
30
31
 
31
32
  ## Cabloy Basic
@@ -1,6 +1,19 @@
1
1
  # Fullstack Introduction
2
2
 
3
- Cabloy is a fullstack framework built around a single source tree where backend and frontend development stay close enough for code sharing, workflow reuse, and AI-assisted implementation.
3
+ Cabloy is a Node.js fullstack framework for AI vibe coding.
4
+
5
+ Use one fullstack framework instead of stitching together separate backend and frontend stacks.
6
+
7
+ 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.
8
+
9
+ ## What Cabloy emphasizes
10
+
11
+ - **One framework system** — build backend and frontend in one fullstack architecture
12
+ - **Vona + Zova** — use aligned backend and frontend frameworks for code sharing, workflow reuse, and cross-stack consistency
13
+ - **Suite-based modular system** — organize capabilities as suites and modules so services, features, metadata, and tooling evolve in composable units
14
+ - **Multiple delivery modes** — deliver SSR, SPA, Web, and Admin applications with shared conventions across the stack
15
+ - **CLI-first workflows for AI vibe coding** — turn common scaffolding, metadata, refactors, and verification into explicit commands for faster, more accurate AI vibe coding
16
+ - **Monorepo-native development** — keep framework source, docs, and tooling aligned in one monorepo workflow
4
17
 
5
18
  ## Shared architecture
6
19
 
@@ -8,54 +21,51 @@ Cabloy is a fullstack framework built around a single source tree where backend
8
21
  - **Zova** provides the frontend framework capabilities.
9
22
  - The root repository coordinates the two through shared scripts, shared terminology, and a shared release story.
10
23
 
11
- In the current monorepo root, the main command entrypoints are:
24
+ This combination keeps backend and frontend development close enough for code sharing, workflow reuse, and AI vibe coding workflows.
25
+
26
+ ## How the fullstack system stays connected
12
27
 
13
- - `npm run vona`
14
- - `npm run zova`
15
- - `npm run dev`
16
- - `npm run build`
17
- - `npm run test`
18
- - `npm run tsc`
28
+ At the repository level, shared scripts, shared terminology, and CLI-first workflows keep Vona and Zova aligned as one framework system.
19
29
 
20
- These are defined in the root `package.json` and should be the first place an agent or contributor checks before inventing a custom workflow.
30
+ For the shared terminal-first workflow model, see [Fullstack CLI](/fullstack/cli).
21
31
 
22
- ## Why the monorepo matters for workflow selection
32
+ ## Why the monorepo matters
23
33
 
24
- The monorepo makes it possible to answer cross-stack questions from source rather than memory, for example:
34
+ The monorepo makes it possible to keep backend and frontend concepts, tooling, and generated outputs aligned from source rather than memory, for example:
25
35
 
26
36
  - how frontend routes and components are reflected back into backend type hints
27
37
  - how backend OpenAPI and DTO output feeds frontend SDK generation
28
- - how edition-specific scripts differ between Cabloy Basic and Cabloy Start
29
- - how Vona and Zova CLI commands can be reused instead of writing scaffolding manually
38
+ - how common concepts can be documented once before edition-specific notes branch out
39
+ - how Vona and Zova CLI capabilities can be reused instead of rebuilding scaffolding by hand
30
40
 
31
41
  ## Technology Stack
32
42
 
33
43
  ### General
34
44
 
35
- | Package | Version |
36
- | ---------- | --------- |
37
- | TypeScript | `^5.9.3` |
38
- | Zod | `^4.3.6` |
45
+ | Package | Version |
46
+ | ---------- | -------- |
47
+ | TypeScript | `^5.9.3` |
48
+ | Zod | `^4.3.6` |
39
49
 
40
50
  ### Backend (Vona)
41
51
 
42
- | Package | Version |
43
- | ---------------------------------- | --------- |
44
- | Koa | `^3.2.0` |
45
- | Knex | `^3.2.9` |
46
- | Redis Client (`ioredis`) | `^5.10.1` |
47
- | SQLite Driver (`better-sqlite3`) | `^12.9.0` |
52
+ | Package | Version |
53
+ | -------------------------------- | --------- |
54
+ | Koa | `^3.2.0` |
55
+ | Knex | `^3.2.9` |
56
+ | Redis Client (`ioredis`) | `^5.10.1` |
57
+ | SQLite Driver (`better-sqlite3`) | `^12.9.0` |
48
58
 
49
59
  ### Frontend (Zova)
50
60
 
51
- | Package | Version |
52
- | ---------------- | ----------- |
53
- | Vue | `^3.5.32` |
54
- | Vite | `^8.0.14` |
55
- | Quasar | `^2.19.3` |
56
- | TanStack Query | `^5.100.10` |
57
- | TanStack Form | `^1.32.0` |
58
- | TanStack Table | `^8.21.3` |
61
+ | Package | Version |
62
+ | -------------- | ----------- |
63
+ | Vue | `^3.5.32` |
64
+ | Vite | `^8.0.14` |
65
+ | Quasar | `^2.19.3` |
66
+ | TanStack Query | `^5.100.10` |
67
+ | TanStack Form | `^1.32.0` |
68
+ | TanStack Table | `^8.21.3` |
59
69
 
60
70
  ### Edition-specific UI Stack
61
71
 
@@ -64,6 +74,8 @@ The monorepo makes it possible to answer cross-stack questions from source rathe
64
74
 
65
75
  ## Common-first, edition-aware
66
76
 
67
- Most framework concepts are shared across Cabloy Basic and Cabloy Start. The new documentation prefers a common-first explanation, then adds edition-specific notes only where the repos intentionally diverge.
77
+ Most framework concepts are shared across Cabloy Basic and Cabloy Start because both editions follow the same Cabloy fullstack core. The documentation prefers a common-first explanation, then adds edition-specific notes only where the editions intentionally diverge.
78
+
79
+ Across editions, the frontend engineering layer stays mostly shared through Zova, Vue, Vite, Quasar tooling, and related libraries. The edition-specific UI layer then diverges between DaisyUI + Tailwind CSS for Cabloy Basic and Vuetify for Cabloy Start.
68
80
 
69
- Use the [Editions Overview](/editions/overview) page whenever a task depends on UI library, module composition, or private-value project boundaries.
81
+ Use the [Editions Overview](/editions/overview) page whenever a task depends on UI library assumptions, flavor names, module composition, SSR site baselines, distribution boundaries, or AI workflow guidance.
@@ -24,7 +24,7 @@ Before creating a new Cabloy project, make sure your environment has:
24
24
  npm create cabloy
25
25
  ```
26
26
 
27
- The generated project already includes `CLAUDE.md` and the `.claude/` workspace assets. Open this project in Claude Code and start coding immediately with project-specific guidance.
27
+ The generated project already includes `CLAUDE.md` and the `.claude/` workspace assets. This path creates a Cabloy Basic project baseline. Open this project in Claude Code and start coding immediately with project-specific guidance.
28
28
 
29
29
  ## 3. Start the backend
30
30
 
@@ -46,10 +46,13 @@ npm run dev:zova:web # http://localhost:9000/
46
46
 
47
47
  ### Cabloy Start
48
48
 
49
- Use the frontend commands provided by your project edition. Do not assume the Cabloy Basic flavor names apply to Cabloy Start.
49
+ Cabloy Start is the private commercial edition. Instead of `npm create cabloy`, purchase access to the licensed private repository, clone that source directly, and run `npm run init`. Then use the frontend commands provided by that edition. Do not assume the Cabloy Basic flavor names apply to Cabloy Start.
50
50
 
51
- If you are not sure which edition you are using, read:
51
+ For the full Start onboarding details, including the access and initialization flow, read [Cabloy Start](/editions/cabloy-start).
52
52
 
53
+ If you are not sure which edition you are using or which one to choose, read:
54
+
55
+ - [Choosing Between Cabloy Basic and Cabloy Start](/editions/choosing-between-basic-and-start)
53
56
  - [Edition Detection](/editions/detection)
54
57
  - [Cabloy Basic](/editions/cabloy-basic)
55
58
  - [Cabloy Start](/editions/cabloy-start)
@@ -64,7 +67,7 @@ npm run upgrade
64
67
 
65
68
  If you are contributing to framework-aware workflows or using Cabloy CLI generation directly, prefer CLI-backed generation over manual scaffolding.
66
69
 
67
- Instead of creating framework files by hand, start with:
70
+ Read [Fullstack CLI](/fullstack/cli) for the shared cross-stack workflow model, then start with:
68
71
 
69
72
  ```bash
70
73
  npm run vona :create
@@ -49,14 +49,14 @@ cd zova && npm run build:rest:cabloyBasicWeb
49
49
 
50
50
  ## Cabloy Start
51
51
 
52
- Cabloy Start is a sibling private repository rather than a subdirectory here, but the same integration idea applies.
52
+ Cabloy Start is the private commercial edition. It lives in a licensed sibling repository rather than a subdirectory here, but the same integration idea applies.
53
53
 
54
54
  Its root script surface uses Start-specific flavors such as:
55
55
 
56
56
  - `cabloyStartAdmin`
57
57
  - `cabloyStartWeb`
58
58
 
59
- Because Start differs in UI stack and module composition, do not reuse Basic integration examples without first confirming:
59
+ Because Start differs in UI layer, module composition, SSR site baselines, and project assets, do not reuse Basic integration examples without first confirming:
60
60
 
61
61
  1. the `__CABLOY_START__` marker
62
62
  2. the Start repo’s `package.json`
@@ -0,0 +1,126 @@
1
+ # VS Code Extensions
2
+
3
+ Cabloy provides two official VS Code extensions so you can discover and run framework workflows directly from the editor.
4
+
5
+ These extensions surface Vona and Zova CLI capabilities through Explorer right-click menus. They make common workflows easier to discover and reduce the mental burden of remembering command names, while still keeping the CLI as the authoritative workflow surface.
6
+
7
+ ## Official extensions
8
+
9
+ - [Vona - Official](https://marketplace.visualstudio.com/items?itemName=cabloy.vona-vscode)
10
+ - [Zova - Official](https://marketplace.visualstudio.com/items?itemName=cabloy.zova-vscode)
11
+
12
+ ## Why the extensions matter
13
+
14
+ In Cabloy, many common tasks are already modeled as framework workflows instead of ad hoc manual edits.
15
+
16
+ Typical examples include:
17
+
18
+ - creating suites and modules
19
+ - generating backend or frontend skeletons
20
+ - initializing config, locale, constants, assets, and related support files
21
+ - refreshing metadata or other generated output
22
+ - running focused refactor workflows when the framework already provides one
23
+
24
+ The VS Code extensions make those workflows easier to discover inside the editor.
25
+
26
+ ## Shared interaction model
27
+
28
+ The two extensions follow the same basic model:
29
+
30
+ - open a Cabloy workspace in VS Code
31
+ - right-click the relevant folder or file in the Explorer
32
+ - choose the matching Vona or Zova menu group
33
+ - run the workflow from the menu instead of typing the full command first
34
+
35
+ This keeps editor-side discovery aligned with CLI execution.
36
+
37
+ ## Shared menu groups
38
+
39
+ Both extensions organize their workflows around the same top-level menu vocabulary:
40
+
41
+ - `Create`
42
+ - `Aspect`
43
+ - `Bean`
44
+ - `Meta`
45
+ - `Init`
46
+ - `Refactor`
47
+ - `Tools`
48
+
49
+ This shared structure helps you move between backend and frontend work without learning two unrelated menu systems.
50
+
51
+ ## Menus and CLI are two entrypoints to the same workflow
52
+
53
+ A practical rule is:
54
+
55
+ - use VS Code menus when you want fast discovery and editor ergonomics
56
+ - use the CLI when you want explicit, scriptable, reproducible execution
57
+
58
+ In this repository, the shared CLI entrypoints are:
59
+
60
+ ```bash
61
+ npm run vona
62
+ npm run zova
63
+ ```
64
+
65
+ To inspect the available command families directly, start with:
66
+
67
+ ```bash
68
+ npm run vona :
69
+ npm run zova :
70
+ ```
71
+
72
+ These are not competing workflow systems. They are two entrypoints to the same underlying framework workflows.
73
+
74
+ For the shared terminal-first workflow model behind these menus, see [Fullstack CLI](/fullstack/cli).
75
+
76
+ ## What Vona emphasizes
77
+
78
+ The Vona extension is backend-oriented.
79
+
80
+ Its menus focus on workflows such as:
81
+
82
+ - backend code generation for suites, modules, DTOs, entities, models, services, controllers, and tests
83
+ - backend aspect and bean creation
84
+ - metadata and initialization workflows
85
+ - backend runtime-oriented capabilities such as SSR, socket, queue, schedule, cache, auth, and related infrastructure beans
86
+ - tooling workflows such as metadata generation and CRUD generation
87
+
88
+ This makes the extension especially useful when you are working inside the backend framework tree and want to stay aligned with Vona conventions.
89
+
90
+ ## What Zova emphasizes
91
+
92
+ The Zova extension is frontend-oriented.
93
+
94
+ Its menus focus on workflows such as:
95
+
96
+ - frontend generation for suites, modules, pages, components, APIs, models, services, and mocks
97
+ - page- and component-oriented bean workflows
98
+ - initialization workflows for frontend config, assets, locale, icons, and support files
99
+ - focused refactors for pages and components
100
+ - OpenAPI-related tooling and metadata generation
101
+
102
+ This makes the extension especially useful when you are building or evolving frontend structure and want to reuse the framework’s existing generators and refactors.
103
+
104
+ ## One important difference
105
+
106
+ Although both extensions expose the same top-level menu vocabulary, their workflow depth is not identical.
107
+
108
+ In practice:
109
+
110
+ - Zova provides substantial refactor coverage for page and component workflows
111
+ - Vona keeps the same overall menu shape, but its current value is concentrated more heavily in backend generation, bean, meta, init, and tooling workflows
112
+
113
+ So when you are reshaping frontend structure, the Zova extension is more likely to surface direct refactor actions.
114
+
115
+ ## Recommended workflow rule
116
+
117
+ Before creating files by hand, first check whether Vona or Zova already provides the generator, initializer, metadata task, or refactor you need.
118
+
119
+ A good default workflow is:
120
+
121
+ 1. discover the workflow from the VS Code menu or the CLI command list
122
+ 2. run the matching framework command
123
+ 3. inspect the generated or transformed result
124
+ 4. apply only the minimal follow-up edits that are still necessary
125
+
126
+ This keeps fullstack work aligned with Cabloy conventions and reduces avoidable manual scaffolding.
@@ -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. [Repo Scripts Reference](/reference/repo-scripts)
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.