nativesoul 0.1.1 → 0.1.2
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/CHANGELOG.md +17 -0
- package/dist/package.json +61 -0
- package/dist/packages/cli/src/index.js +155 -149
- package/dist/packages/mcp-server/src/index.js +50 -50
- package/package.json +1 -1
- package/plugins/grok-nativesoul/AGENTS.md +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,23 @@ product after ADR-045; there is no Free/Pro split.
|
|
|
15
15
|
### Product
|
|
16
16
|
- _Nothing yet._
|
|
17
17
|
|
|
18
|
+
## [0.1.2] — 2026-07-02
|
|
19
|
+
|
|
20
|
+
### Product
|
|
21
|
+
- Patch release target for the version-drift fix after `0.1.1` was published.
|
|
22
|
+
- License activation/status now derives the product version from `package.json`,
|
|
23
|
+
so `version_at_activation` and `current_version` match the published package
|
|
24
|
+
version.
|
|
25
|
+
- Grok install now writes NativeSoul lifecycle hooks into
|
|
26
|
+
`~/.grok/hooks/nativesoul.json`, so `grok inspect` lists them under Hooks and
|
|
27
|
+
session bootstrap can run automatically.
|
|
28
|
+
- Grok managed instructions now require NativeSoul bootstrap before the first
|
|
29
|
+
answer in every new session, because Grok passive hooks execute for side
|
|
30
|
+
effects but do not inject stdout into model context.
|
|
31
|
+
- Grok install now also creates `~/.grok/agents/nativesoul.md` and sets
|
|
32
|
+
`[agent].name = "nativesoul"` so first-turn bootstrap is enforced by the
|
|
33
|
+
active Grok agent profile, not only by project rules.
|
|
34
|
+
|
|
18
35
|
## [0.1.1] — 2026-07-01
|
|
19
36
|
|
|
20
37
|
### Product
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "nativesoul",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Local-first continuity layer for coding agents.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "UNLICENSED",
|
|
7
|
+
"main": "dist/packages/cli/src/index.js",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/fillipeweb/nativesoul.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/fillipeweb/nativesoul/issues"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/fillipeweb/nativesoul#readme",
|
|
16
|
+
"files": [
|
|
17
|
+
"dist/",
|
|
18
|
+
"plugins/",
|
|
19
|
+
"policy-packs/",
|
|
20
|
+
"schemas/",
|
|
21
|
+
"docs/adr/",
|
|
22
|
+
"docs/legal/",
|
|
23
|
+
"llm-install.txt",
|
|
24
|
+
"README.md",
|
|
25
|
+
"CHANGELOG.md"
|
|
26
|
+
],
|
|
27
|
+
"bin": {
|
|
28
|
+
"nativesoul": "dist/packages/cli/src/index.js",
|
|
29
|
+
"nativesoul-mcp": "dist/packages/mcp-server/src/index.js"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"lint": "eslint .",
|
|
33
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
34
|
+
"test": "npm run build && npm run test:non-e2e",
|
|
35
|
+
"test:non-e2e": "node scripts/run-non-e2e-tests.mjs",
|
|
36
|
+
"build": "npm run build:ts && npm run build:minify",
|
|
37
|
+
"build:ts": "tsc -p tsconfig.build.json",
|
|
38
|
+
"build:minify": "node scripts/build-min.mjs",
|
|
39
|
+
"policy:generate": "node scripts/generate-policy-fail-closed.mjs",
|
|
40
|
+
"policy:check": "node scripts/generate-policy-fail-closed.mjs --check",
|
|
41
|
+
"release:security:audit": "node scripts/release-security-audit.mjs",
|
|
42
|
+
"release:provenance:dry-run": "node scripts/release-provenance-dry-run.mjs",
|
|
43
|
+
"package:local": "node scripts/package-local.mjs",
|
|
44
|
+
"package:dry-run": "node scripts/package-dry-run.mjs",
|
|
45
|
+
"package:smoke": "node scripts/package-smoke.mjs",
|
|
46
|
+
"test:e2e": "npm run build && vitest run tests/e2e"
|
|
47
|
+
},
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">=22.17.0"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@eslint/js": "^10.0.1",
|
|
54
|
+
"@types/node": "^26.0.0",
|
|
55
|
+
"esbuild": "^0.28.1",
|
|
56
|
+
"eslint": "^10.5.0",
|
|
57
|
+
"typescript": "^6.0.3",
|
|
58
|
+
"typescript-eslint": "^8.62.0",
|
|
59
|
+
"vitest": "^4.1.9"
|
|
60
|
+
}
|
|
61
|
+
}
|