nativesoul 1.1.0 → 1.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 +31 -0
- package/dist/package.json +1 -1
- package/dist/packages/cli/src/index.js +146 -145
- package/dist/packages/mcp-server/src/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,37 @@ product after ADR-045; there is no Free/Pro split.
|
|
|
15
15
|
### Product
|
|
16
16
|
- _Nothing yet._
|
|
17
17
|
|
|
18
|
+
## [1.1.2] — 2026-07-08
|
|
19
|
+
|
|
20
|
+
Patch (ADR-043 §1 — reporting-honesty fix, no API change).
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
- **`nativesoul install` no longer says "degraded" for a host that just hasn't
|
|
24
|
+
enabled native scheduling.** Hosts that *support* native scheduling (Claude,
|
|
25
|
+
Codex, Antigravity) but haven't had it turned on now report **ready** with an
|
|
26
|
+
informational note — "native scheduling is available but not enabled; turn it
|
|
27
|
+
on with `nativesoul schedule reconcile --host <host> --mode leader --apply`" —
|
|
28
|
+
instead of the misleading "degraded". Real install problems still degrade;
|
|
29
|
+
hosts with no native scheduler (Grok, Gemini) are unaffected.
|
|
30
|
+
|
|
31
|
+
## [1.1.1] — 2026-07-07
|
|
32
|
+
|
|
33
|
+
Patch release (ADR-043 §1 — bugfix, no API change; free update within your
|
|
34
|
+
12-month window). `dependencies: {}` preserved; still local-first, no telemetry.
|
|
35
|
+
|
|
36
|
+
### Fixed
|
|
37
|
+
- **`nativesoul scan` on large repos** — the scan now reads root-level manifests,
|
|
38
|
+
lockfiles, README and git remotes in a root-first pass before the bounded
|
|
39
|
+
directory walk. Previously, a large monorepo could exhaust the traversal
|
|
40
|
+
budget in big early directories before reaching the root `package.json`, so
|
|
41
|
+
the scan reported "none detected" at the repo root. It now detects your stack
|
|
42
|
+
regardless of tree size. Same guardrails: read-only, denylist-before-read, no
|
|
43
|
+
secrets, no network.
|
|
44
|
+
- **Local dashboard layout** — `nativesoul dashboard viewer` no longer overflows:
|
|
45
|
+
panels flow in a balanced grid and cap their height with the record list
|
|
46
|
+
scrolling internally, and long rows truncate cleanly instead of spilling past
|
|
47
|
+
the card. Still self-contained, read-only, and local.
|
|
48
|
+
|
|
18
49
|
## [1.1.0] — 2026-07-07
|
|
19
50
|
|
|
20
51
|
Additive feature release (EPIC-026 — Onboarding v2 + dev-environment context).
|