genesis-compiler 1.2.3 → 1.2.4
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 +46 -16
- package/docs/assurance-model.md +1 -1
- package/docs/preview-identity-command.md +113 -0
- package/docs/prompt-integration.md +22 -14
- package/docs/stack-components.md +68 -22
- package/package.json +3 -1
- package/plugins/genesis/.codex-plugin/plugin.json +1 -1
- package/prompts/adopt.txt +62 -0
- package/prompts/start.txt +17 -4
- package/prompts/work.txt +1 -1
- package/skills/genesis-project/SKILL.md +9 -1
- package/src/cli.js +53 -3
- package/src/index/assets.js +1 -0
- package/src/index/codex-hooks.js +3 -2
- package/src/index/prompt.js +58 -1
- package/src/index/stack-catalog.js +1 -0
- package/src/index/stack-environment-defaults.js +2 -0
- package/src/index/stack-launch.js +5 -6
- package/src/index/stack-piece.js +28 -11
- package/src/index/stack.js +39 -2
- package/src/index.js +2 -2
- package/stacks/pieces/cpp.md +12 -0
- package/stacks/pieces/jskit-mysql.md +10 -0
- package/stacks/pieces/jskit-postgresql.md +10 -0
- package/stacks/pieces/jskit.md +23 -0
- package/stacks/pieces/mysql.md +11 -0
- package/stacks/pieces/nodejs.md +11 -0
- package/stacks/pieces/postgresql.md +12 -0
- package/stacks/pieces/vue.md +9 -0
package/stacks/pieces/mysql.md
CHANGED
|
@@ -8,6 +8,17 @@ MySQL persistence and migration conventions.
|
|
|
8
8
|
|
|
9
9
|
- Nothing.
|
|
10
10
|
|
|
11
|
+
## Adoption
|
|
12
|
+
|
|
13
|
+
- Identify the application's accepted connection alternatives, client/driver,
|
|
14
|
+
migration directories and ledger, transaction ownership, and the exact
|
|
15
|
+
preparation command without connecting to or mutating a database.
|
|
16
|
+
- Distinguish fresh-schema creation from existing-database upgrade. Record how
|
|
17
|
+
package/application migrations are ordered and how a retained ledger prevents
|
|
18
|
+
historical migrations from rerunning.
|
|
19
|
+
- Identify app-owned seed behavior and whether it is deterministic and
|
|
20
|
+
idempotent. A migration-only command is not a complete seed contract.
|
|
21
|
+
|
|
11
22
|
## Deslop
|
|
12
23
|
|
|
13
24
|
- Keep connection configuration, transaction ownership, and database error
|
package/stacks/pieces/nodejs.md
CHANGED
|
@@ -12,6 +12,17 @@ Node.js package, command, module, dependency, and test conventions.
|
|
|
12
12
|
|
|
13
13
|
- `javascript`
|
|
14
14
|
|
|
15
|
+
## Adoption
|
|
16
|
+
|
|
17
|
+
- Identify the package manager from the lockfile and preserve the existing
|
|
18
|
+
module system, supported Node.js version, package entrypoints, and executable
|
|
19
|
+
commands.
|
|
20
|
+
- Record the source's real dependency installation, build, verification,
|
|
21
|
+
development, and production commands. Do not assume `npm run develop`,
|
|
22
|
+
`npm test`, or `npm start` exists merely because a current foundation uses it.
|
|
23
|
+
- Identify every long-running process, its workdir, host/port handling,
|
|
24
|
+
readiness signal, and shutdown ownership before declaring Launch.
|
|
25
|
+
|
|
15
26
|
## Deslop
|
|
16
27
|
|
|
17
28
|
- Preserve the package's existing module system, package manager, public
|
|
@@ -8,6 +8,18 @@ PostgreSQL persistence and migration conventions.
|
|
|
8
8
|
|
|
9
9
|
- Nothing.
|
|
10
10
|
|
|
11
|
+
## Adoption
|
|
12
|
+
|
|
13
|
+
- Identify the application's accepted connection alternatives, client/driver,
|
|
14
|
+
migration directories and ledger, transaction ownership, search-path/schema
|
|
15
|
+
assumptions, and the exact preparation command without connecting to or
|
|
16
|
+
mutating a database.
|
|
17
|
+
- Distinguish fresh-schema creation from existing-database upgrade. Record how
|
|
18
|
+
package/application migrations are ordered and how a retained ledger prevents
|
|
19
|
+
historical migrations from rerunning.
|
|
20
|
+
- Identify app-owned seed behavior and whether it is deterministic and
|
|
21
|
+
idempotent. A migration-only command is not a complete seed contract.
|
|
22
|
+
|
|
11
23
|
## Deslop
|
|
12
24
|
|
|
13
25
|
- Keep connection configuration, transaction ownership, and database error
|
package/stacks/pieces/vue.md
CHANGED
|
@@ -17,3 +17,12 @@ Vue component, reactive state, resource hydration, routing, and screen-state con
|
|
|
17
17
|
- Keep genuinely change-only watchers non-immediate.
|
|
18
18
|
- Persist user-selected filters and screen context in the URL when they must survive navigation.
|
|
19
19
|
- Test stateful screens by navigating away and back with a warm query cache, including browser back/forward navigation.
|
|
20
|
+
|
|
21
|
+
## Adoption
|
|
22
|
+
|
|
23
|
+
- Identify the real client entrypoint, router, build tool, development command,
|
|
24
|
+
production build output, API proxy/origin contract, and environment-file
|
|
25
|
+
conventions.
|
|
26
|
+
- Record existing unit and browser-test commands plus their base-URL, storage
|
|
27
|
+
state, and managed-browser assumptions. Do not install a browser or replace a
|
|
28
|
+
working host-managed browser contract during adoption.
|