genesis-stack 1.0.8 → 1.1.1
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 +24 -2
- package/genesis.templates.json +21 -0
- package/package.json +6 -1
- package/stacks/pieces/jskit.md +22 -0
- package/stacks/pieces/nodejs.md +11 -0
- package/stacks/pieces/vue.md +4 -0
package/README.md
CHANGED
|
@@ -27,8 +27,8 @@ one-time preparation prompt. Later commands and other hosts resolve the same
|
|
|
27
27
|
catalog without another flag, while catalog upgrades cannot silently rewrite
|
|
28
28
|
the established project operations.
|
|
29
29
|
|
|
30
|
-
The package contains static Markdown declarations
|
|
31
|
-
dependencies. Genesis reads its manifest and Stack pieces; it never imports or
|
|
30
|
+
The package contains static Markdown declarations and a JSON starter catalogue,
|
|
31
|
+
and has no framework dependencies. Genesis reads its manifest and Stack pieces; it never imports or
|
|
32
32
|
executes catalog code. Framework pieces such as JSKIT and Vue link to their
|
|
33
33
|
authoritative documentation in ordinary Stack guidance.
|
|
34
34
|
|
|
@@ -37,7 +37,29 @@ any resolvable package may declare one when selecting that piece should install
|
|
|
37
37
|
that skill. Documentation alone does not require a skill declaration or a
|
|
38
38
|
catalog dependency.
|
|
39
39
|
|
|
40
|
+
With Genesis 1.4 or newer, `genesis templates list` also lists the JSKIT starters
|
|
41
|
+
in `genesis.templates.json`. Both variants come from
|
|
42
|
+
[vibe64-dev/seed-jskit](https://github.com/vibe64-dev/seed-jskit):
|
|
43
|
+
`official:jskit/public` and `official:jskit/accounts`. Apply one to an empty
|
|
44
|
+
Git/Genesis bootstrap project with `genesis templates apply <id>`. Template IDs
|
|
45
|
+
name complete applications; selecting a Skill never silently chooses a starter.
|
|
46
|
+
|
|
40
47
|
New curated technologies should normally contribute a piece to this catalog.
|
|
41
48
|
Do not add technology-specific knowledge or dependencies to
|
|
42
49
|
`genesis-compiler`, and do not create one catalog package per framework unless
|
|
43
50
|
the single-catalog model becomes genuinely unworkable.
|
|
51
|
+
|
|
52
|
+
## Resource-estimate proposals
|
|
53
|
+
|
|
54
|
+
JSKIT proposes Vibe64's optional `Resource estimates` section for its concrete
|
|
55
|
+
`app` output and Workspace setup. The startup, running and preparation values
|
|
56
|
+
are initial planning estimates, not measured minima, reservations or memory
|
|
57
|
+
limits. Vibe64 owns the grammar and a host owns admission, learned consumption
|
|
58
|
+
and owner settings; Genesis only materializes and transports the exact text.
|
|
59
|
+
|
|
60
|
+
Node and Vue contribute adoption guidance without competing section proposals.
|
|
61
|
+
Their estimates must not be added to JSKIT's for the same process tree. A
|
|
62
|
+
project's complete reviewed section wins; a catalog upgrade never rewrites it.
|
|
63
|
+
Projects with different output ids or commands must review the proposal during
|
|
64
|
+
preparation. A project can omit estimates and use its host's generic starting
|
|
65
|
+
policy. Neither the catalog nor the project stores host observations or limits.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"templates": [
|
|
4
|
+
{
|
|
5
|
+
"id": "jskit/public",
|
|
6
|
+
"technology": "jskit",
|
|
7
|
+
"name": "JSKIT · Public app",
|
|
8
|
+
"description": "Fastify and Vue with an adaptive shell. No accounts or database.",
|
|
9
|
+
"repository": "https://github.com/vibe64-dev/seed-jskit.git",
|
|
10
|
+
"branch": "public"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"id": "jskit/accounts",
|
|
14
|
+
"technology": "jskit",
|
|
15
|
+
"name": "JSKIT · Accounts and database",
|
|
16
|
+
"description": "Adaptive shell, sign-up and login, a private home, and MySQL persistence.",
|
|
17
|
+
"repository": "https://github.com/vibe64-dev/seed-jskit.git",
|
|
18
|
+
"branch": "accounts"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "genesis-stack",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "The optional curated technology Stack catalog for Genesis projects.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
"homepage": "https://github.com/mobily-enterprises/genesis-compiler/tree/genesis-next/packages/genesis-stack#readme",
|
|
15
15
|
"files": [
|
|
16
|
+
"genesis.templates.json",
|
|
16
17
|
"stacks"
|
|
17
18
|
],
|
|
18
19
|
"scripts": {
|
|
@@ -31,6 +32,10 @@
|
|
|
31
32
|
"ai"
|
|
32
33
|
],
|
|
33
34
|
"genesis": {
|
|
35
|
+
"templates": {
|
|
36
|
+
"namespace": "official",
|
|
37
|
+
"path": "genesis.templates.json"
|
|
38
|
+
},
|
|
34
39
|
"stackPieces": "stacks/pieces"
|
|
35
40
|
}
|
|
36
41
|
}
|
package/stacks/pieces/jskit.md
CHANGED
|
@@ -69,6 +69,14 @@ https://mobily-enterprises.github.io/jskit-ai/
|
|
|
69
69
|
locators, and retired tool manifests as migration evidence only. Translate
|
|
70
70
|
live facts into current source/Stack and report remaining port work; do not
|
|
71
71
|
add compatibility readers or claim adoption performed the port.
|
|
72
|
+
- Review the Vibe64-owned Resource estimates proposal against the application's
|
|
73
|
+
actual Outputs target ids and Workspace setup. Its initial Node development
|
|
74
|
+
estimates are planning hints, not measured requirements, hard memory limits,
|
|
75
|
+
or a promise of available capacity. Keep startup/build and ready runtime
|
|
76
|
+
separate, and give an isolated test target its own estimates. Do not add a
|
|
77
|
+
shared database's full footprint to every application target. Hosts own
|
|
78
|
+
measured history, admission and limits outside project source; they do not
|
|
79
|
+
rewrite this section as they learn. Preserve an existing project section.
|
|
72
80
|
|
|
73
81
|
## Workspace setup
|
|
74
82
|
|
|
@@ -105,6 +113,20 @@ https://mobily-enterprises.github.io/jskit-ai/
|
|
|
105
113
|
- URL path: `/`
|
|
106
114
|
- Ready when: `GET` `/api/health` returns `200`
|
|
107
115
|
|
|
116
|
+
## Resource estimates
|
|
117
|
+
|
|
118
|
+
### Output `app`
|
|
119
|
+
|
|
120
|
+
- Startup typical MiB: `1024`
|
|
121
|
+
- Startup high MiB: `1536`
|
|
122
|
+
- Running typical MiB: `768`
|
|
123
|
+
- Running high MiB: `1536`
|
|
124
|
+
|
|
125
|
+
### Workspace setup
|
|
126
|
+
|
|
127
|
+
- Typical MiB: `1024`
|
|
128
|
+
- High MiB: `1536`
|
|
129
|
+
|
|
108
130
|
## Deployment
|
|
109
131
|
|
|
110
132
|
- Runtimes: `nodejs`
|
package/stacks/pieces/nodejs.md
CHANGED
|
@@ -22,6 +22,17 @@ Node.js package, command, module, dependency, and test conventions.
|
|
|
22
22
|
`npm test`, or `npm start` exists merely because a current foundation uses it.
|
|
23
23
|
- Identify every long-running process, its workdir, host/port handling,
|
|
24
24
|
readiness signal, and shutdown ownership before declaring Outputs.
|
|
25
|
+
- For Vibe64's optional Resource estimates, distinguish dependency preparation,
|
|
26
|
+
startup/build, and the ready runtime of each real declared output. For an
|
|
27
|
+
unmeasured Node web development target, initial planning candidates are
|
|
28
|
+
startup 1024 MiB typical / 1536 MiB high and running 768 MiB typical / 1536 MiB
|
|
29
|
+
high; preparation can initially use 1024 MiB typical / 1536 MiB high. These
|
|
30
|
+
are not benchmarks, guaranteed minima, or hard limits, and are not defaults
|
|
31
|
+
for every small Node command. Prefer the selected framework's concrete
|
|
32
|
+
proposal or measured application evidence, preserving an existing project
|
|
33
|
+
declaration. Never infer a command or add Node's estimate to a framework
|
|
34
|
+
estimate for the same process tree. Host measurements and owner limits stay
|
|
35
|
+
in runtime-local state, not in this source contract.
|
|
25
36
|
|
|
26
37
|
## Deslop
|
|
27
38
|
|
package/stacks/pieces/vue.md
CHANGED
|
@@ -35,3 +35,7 @@ conventions. Authoritative framework documentation: https://vuejs.org/
|
|
|
35
35
|
- Record existing unit and browser-test commands plus their base-URL, storage
|
|
36
36
|
state, and managed-browser assumptions. Do not install a browser or replace a
|
|
37
37
|
working host-managed browser contract during adoption.
|
|
38
|
+
- Attribute a Vue build/dev server's memory to its actual Node output target.
|
|
39
|
+
Vue selection does not create a second service or another memory charge.
|
|
40
|
+
Review any Vibe64 Resource estimates in the project's existing complete
|
|
41
|
+
section; this piece does not propose a competing section alongside a framework.
|