@lssm/lib.evolution 0.3.0 → 0.4.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 +15 -1
- package/package.json +14 -9
package/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# @lssm/lib.evolution
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**Safe regeneration for ContractSpec** — Evolve specs automatically while preserving invariants.
|
|
4
|
+
|
|
5
|
+
Auto-evolution utilities that analyze telemetry, suggest spec improvements, and route changes through approval workflows. Regenerate code safely, one module at a time.
|
|
6
|
+
|
|
7
|
+
## Capabilities:
|
|
4
8
|
|
|
5
9
|
- Analyze telemetry to find anomalous specs
|
|
6
10
|
- Convert detected intent into spec suggestions
|
|
@@ -34,3 +38,13 @@ See `app/docs/libraries/evolution` in `@lssm/app.web-contractspec-landing` for f
|
|
|
34
38
|
|
|
35
39
|
|
|
36
40
|
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/lib.evolution",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"README.md"
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
|
+
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
13
14
|
"build": "bun build:bundle && bun build:types",
|
|
14
15
|
"build:bundle": "tsdown",
|
|
15
16
|
"build:types": "tsc --noEmit",
|
|
@@ -18,25 +19,29 @@
|
|
|
18
19
|
"lint": "bun lint:fix",
|
|
19
20
|
"lint:fix": "eslint src --fix",
|
|
20
21
|
"lint:check": "eslint src",
|
|
21
|
-
"test": "
|
|
22
|
+
"test": "bun run"
|
|
22
23
|
},
|
|
23
24
|
"dependencies": {
|
|
24
|
-
"@lssm/lib.
|
|
25
|
-
"@lssm/lib.
|
|
26
|
-
"@lssm/lib.
|
|
25
|
+
"@lssm/lib.ai-agent": "0.4.0",
|
|
26
|
+
"@lssm/lib.contracts": "1.11.0",
|
|
27
|
+
"@lssm/lib.lifecycle": "0.3.0",
|
|
28
|
+
"@lssm/lib.observability": "0.4.0",
|
|
29
|
+
"@lssm/lib.schema": "1.11.0"
|
|
27
30
|
},
|
|
28
31
|
"peerDependencies": {
|
|
29
32
|
"@prisma/client": "7.0.0"
|
|
30
33
|
},
|
|
31
34
|
"devDependencies": {
|
|
32
|
-
"@lssm/tool.tsdown": "
|
|
33
|
-
"@lssm/tool.typescript": "
|
|
35
|
+
"@lssm/tool.tsdown": "0.12.0",
|
|
36
|
+
"@lssm/tool.typescript": "0.11.0",
|
|
34
37
|
"tsdown": "^0.16.6",
|
|
35
|
-
"typescript": "^5.9.3"
|
|
36
|
-
"vitest": "^1.6.0"
|
|
38
|
+
"typescript": "^5.9.3"
|
|
37
39
|
},
|
|
38
40
|
"exports": {
|
|
39
41
|
".": "./dist/index.js",
|
|
40
42
|
"./*": "./*"
|
|
43
|
+
},
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public"
|
|
41
46
|
}
|
|
42
47
|
}
|