genesis-stack 1.0.8 → 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,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 only and has no framework
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,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.8",
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
  }