genesis-stack 1.0.4 → 1.0.6
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 +9 -4
- package/package.json +1 -4
- package/stacks/pieces/jskit.md +15 -11
package/README.md
CHANGED
|
@@ -24,10 +24,15 @@ genesis stack add --stack-package genesis-stack jskit jskit-mysql
|
|
|
24
24
|
Genesis records `genesis-stack` in `genesis/stack.md`, so later commands and
|
|
25
25
|
other hosts resolve the same catalog without another flag.
|
|
26
26
|
|
|
27
|
-
The package contains static Markdown declarations only
|
|
28
|
-
manifest and Stack pieces; it never imports or
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
The package contains static Markdown declarations only and has no framework
|
|
28
|
+
dependencies. Genesis reads its manifest and Stack pieces; it never imports or
|
|
29
|
+
executes catalog code. Framework pieces such as JSKIT link to their
|
|
30
|
+
authoritative documentation in ordinary Stack guidance.
|
|
31
|
+
|
|
32
|
+
Genesis still supports optional Agent Skills generically. A Stack piece from
|
|
33
|
+
any resolvable package may declare one when selecting that piece should install
|
|
34
|
+
that skill. Documentation alone does not require a skill declaration or a
|
|
35
|
+
catalog dependency.
|
|
31
36
|
|
|
32
37
|
New curated technologies should normally contribute a piece to this catalog.
|
|
33
38
|
Do not add technology-specific knowledge or dependencies to
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "genesis-stack",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "The optional curated technology Stack catalog for Genesis projects.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -18,9 +18,6 @@
|
|
|
18
18
|
"scripts": {
|
|
19
19
|
"test": "node --test"
|
|
20
20
|
},
|
|
21
|
-
"dependencies": {
|
|
22
|
-
"@jskit-ai/agent-docs": "0.1.147"
|
|
23
|
-
},
|
|
24
21
|
"engines": {
|
|
25
22
|
"node": ">=22"
|
|
26
23
|
},
|
package/stacks/pieces/jskit.md
CHANGED
|
@@ -3,21 +3,23 @@
|
|
|
3
3
|
## Description
|
|
4
4
|
|
|
5
5
|
AI-first JSKIT runtime capabilities, tested source patterns, Vue surfaces, and
|
|
6
|
-
application-owned composition.
|
|
6
|
+
application-owned composition. Authoritative framework documentation:
|
|
7
|
+
https://mobily-enterprises.github.io/jskit-ai/
|
|
7
8
|
|
|
8
9
|
## Requires
|
|
9
10
|
|
|
10
11
|
- `nodejs`
|
|
11
12
|
|
|
12
|
-
## Skill
|
|
13
|
-
|
|
14
|
-
- Package: `@jskit-ai/agent-docs`
|
|
15
|
-
- Path: `skills/jskit`
|
|
16
|
-
|
|
17
13
|
## Guidance
|
|
18
14
|
|
|
19
|
-
-
|
|
20
|
-
`jskit
|
|
15
|
+
- Read the authoritative JSKIT framework guide at
|
|
16
|
+
`https://mobily-enterprises.github.io/jskit-ai/guide/` and select the narrow
|
|
17
|
+
relevant source pattern from
|
|
18
|
+
`https://mobily-enterprises.github.io/jskit-ai/patterns/` before implementing.
|
|
19
|
+
- Before creating or modifying JSKIT Vue/Vuetify UI, read the Material 3
|
|
20
|
+
contract at
|
|
21
|
+
`https://mobily-enterprises.github.io/jskit-ai/guide/framework/material-3`
|
|
22
|
+
completely.
|
|
21
23
|
- Implement Material 3 through JSKIT patterns, shared screens, shell and
|
|
22
24
|
placement seams, app-owned theme configuration, and supported Vuetify APIs.
|
|
23
25
|
- Use geometry-preserving Material skeletons for all user-visible loading;
|
|
@@ -29,7 +31,8 @@ application-owned composition.
|
|
|
29
31
|
|
|
30
32
|
## Adoption
|
|
31
33
|
|
|
32
|
-
- Read the
|
|
34
|
+
- Read the authoritative existing-application migration guide at
|
|
35
|
+
`https://mobily-enterprises.github.io/jskit-ai/guide/app-setup/existing-application-migration`
|
|
33
36
|
completely before editing Stack or assessing readiness.
|
|
34
37
|
- Inventory the coordinated `@jskit-ai/*` package graph, application-owned
|
|
35
38
|
composition, package-owned migrations, explicit repositories/features/named
|
|
@@ -99,8 +102,9 @@ application-owned composition.
|
|
|
99
102
|
|
|
100
103
|
## Deslop
|
|
101
104
|
|
|
102
|
-
- For every affected JSKIT screen,
|
|
103
|
-
|
|
105
|
+
- For every affected JSKIT screen, read the Material 3 contract at
|
|
106
|
+
`https://mobily-enterprises.github.io/jskit-ai/guide/framework/material-3`
|
|
107
|
+
and execute its audit.
|
|
104
108
|
- Use JSKIT patterns, packages, resources, composables, screens, and placement
|
|
105
109
|
seams instead of parallel framework plumbing.
|
|
106
110
|
- Treat copied pattern source as app-owned and customizable. Adapt routes,
|