@kernlang/evolve 3.1.0 → 3.1.1

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.
Files changed (2) hide show
  1. package/README.md +27 -0
  2. package/package.json +3 -3
package/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # @kernlang/evolve
2
+
3
+ Kern Evolve — self-extending template system: detect gaps, propose templates, validate, stage
4
+
5
+ Part of the [KERN monorepo](https://github.com/KERNlang/kern).
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ npm install @kernlang/evolve
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ ```ts
16
+ import { evolve, evolveSource } from '@kernlang/evolve';
17
+
18
+ // Scan a project: detect gaps, propose templates, stage for approval
19
+ const result = await evolve('./src');
20
+
21
+ // Or analyze a single source string
22
+ const single = await evolveSource(tsCode, { threshold: 0.8 });
23
+ ```
24
+
25
+ ## License
26
+
27
+ AGPL-3.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kernlang/evolve",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "Kern Evolve — self-extending template system: detect gaps, propose templates, validate, stage",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -17,8 +17,8 @@
17
17
  "license": "AGPL-3.0",
18
18
  "dependencies": {
19
19
  "ts-morph": "^27.0.0",
20
- "@kernlang/core": "3.1.0",
21
- "@kernlang/review": "3.1.0"
20
+ "@kernlang/core": "3.1.1",
21
+ "@kernlang/review": "3.1.1"
22
22
  },
23
23
  "scripts": {
24
24
  "build": "tsc -b",