genesis-stack 1.0.7 → 1.1.0

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 CHANGED
@@ -27,9 +27,9 @@ 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 only and has no framework
31
- dependencies. Genesis reads its manifest and Stack pieces; it never imports or
32
- executes catalog code. Framework pieces such as JSKIT link to their
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
+ executes catalog code. Framework pieces such as JSKIT and Vue link to their
33
33
  authoritative documentation in ordinary Stack guidance.
34
34
 
35
35
  Genesis still supports optional Agent Skills generically. A Stack piece from
@@ -37,6 +37,13 @@ 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
@@ -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.0.7",
3
+ "version": "1.1.0",
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
  }
@@ -2,7 +2,8 @@
2
2
 
3
3
  ## Description
4
4
 
5
- Vue component, reactive state, resource hydration, routing, and screen-state conventions.
5
+ Vue component, reactive state, resource hydration, routing, and screen-state
6
+ conventions. Authoritative framework documentation: https://vuejs.org/
6
7
 
7
8
  ## Requires
8
9
 
@@ -10,6 +11,14 @@ Vue component, reactive state, resource hydration, routing, and screen-state con
10
11
 
11
12
  ## Guidance
12
13
 
14
+ - Read the authoritative Vue documentation index at `https://vuejs.org/` and
15
+ match the installed Vue major version. For Vue 3, read only the Guide pages
16
+ needed by the change from `https://vuejs.org/guide/` and the exact API entries
17
+ needed from `https://vuejs.org/api/`. For Vue 2 or migration work, follow the
18
+ official version or migration link from the documentation index. Preserve the
19
+ project's established Options API or Composition API style and do not turn a
20
+ focused change into a framework migration or broad ecosystem survey.
21
+
13
22
  ### Reactive state hydration
14
23
 
15
24
  - Cached query/resource data and route state may already exist when a component is created. Never rely on a default lazy `watch()` to initialize writable UI state.