nativesoul 1.1.1 → 1.1.3
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 +33 -0
- package/README.md +5 -5
- package/dist/package.json +1 -1
- package/dist/packages/cli/src/index.js +105 -104
- package/dist/packages/mcp-server/src/index.js +1 -1
- package/docs/adr/ADR-043-versioning-and-release-policy.md +1 -1
- package/docs/adr/ADR-045-paid-only-closed-distribution.md +11 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,39 @@ product after ADR-045; there is no Free/Pro split.
|
|
|
15
15
|
### Product
|
|
16
16
|
- _Nothing yet._
|
|
17
17
|
|
|
18
|
+
## [1.1.3] — 2026-07-08
|
|
19
|
+
|
|
20
|
+
Patch (ADR-043 §1 — licensing-connectivity fix, no API change). **Recommended
|
|
21
|
+
for all users** — the previous default could block a valid paid license after
|
|
22
|
+
the offline-grace window.
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
- **License validation reached a non-existent host.** The daily license check
|
|
26
|
+
defaulted to `https://api.dodopayments.com`, which does not resolve (NXDOMAIN),
|
|
27
|
+
so every online validation failed and a paid license survived only on the
|
|
28
|
+
14-day offline grace window — after which the CLI/MCP reported "not activated".
|
|
29
|
+
The default is now Dodo's real host, **`https://live.dodopayments.com`**
|
|
30
|
+
(test-mode still available via `NATIVESOUL_DODO_LICENSE_API_BASE_URL`). No key
|
|
31
|
+
re-activation is needed once updated.
|
|
32
|
+
- **Transient gateway failures no longer hard-block a paid license.** A Dodo
|
|
33
|
+
`5xx`, `429` (rate limit), or `408` (timeout) response is now treated as a
|
|
34
|
+
network condition — so the offline grace window applies — instead of being
|
|
35
|
+
misread as an invalid key. Only a genuine `valid:false` (or a definitive
|
|
36
|
+
client error) still means the key itself is rejected.
|
|
37
|
+
|
|
38
|
+
## [1.1.2] — 2026-07-08
|
|
39
|
+
|
|
40
|
+
Patch (ADR-043 §1 — reporting-honesty fix, no API change).
|
|
41
|
+
|
|
42
|
+
### Fixed
|
|
43
|
+
- **`nativesoul install` no longer says "degraded" for a host that just hasn't
|
|
44
|
+
enabled native scheduling.** Hosts that *support* native scheduling (Claude,
|
|
45
|
+
Codex, Antigravity) but haven't had it turned on now report **ready** with an
|
|
46
|
+
informational note — "native scheduling is available but not enabled; turn it
|
|
47
|
+
on with `nativesoul schedule reconcile --host <host> --mode leader --apply`" —
|
|
48
|
+
instead of the misleading "degraded". Real install problems still degrade;
|
|
49
|
+
hosts with no native scheduler (Grok, Gemini) are unaffected.
|
|
50
|
+
|
|
18
51
|
## [1.1.1] — 2026-07-07
|
|
19
52
|
|
|
20
53
|
Patch release (ADR-043 §1 — bugfix, no API change; free update within your
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ NativeSoul is a **local-first continuity layer for coding agents**. If you run m
|
|
|
29
29
|
|
|
30
30
|
It runs entirely on your machine (`~/.nativesoul/`), keeps **no background process**, **never copies your credentials**, and sends **no usage telemetry** — your code and memory never leave your machine. The only network call is a **once-a-day license check** that sends nothing but your license key, written to the audit log. You can read your own files, run one health check, and remove it cleanly at any time. It doesn't fake it — a capability only reads "ready" after it passes a real auth and health check.
|
|
31
31
|
|
|
32
|
-
> **Proprietary, closed-source, paid — not open source, no free tier.** NativeSoul is **$
|
|
32
|
+
> **Proprietary, closed-source, paid — not open source, no free tier.** NativeSoul is **$19 one-time** (1 year of updates, perpetual build, 30-day money-back). You may not fork, redistribute, decompile, or create derivative works. See [License](#license).
|
|
33
33
|
|
|
34
34
|
<p align="center">
|
|
35
35
|
<img src="docs/assets/nativesoul-architecture.svg" alt="NativeSoul architecture — one identity, native across every host" width="100%">
|
|
@@ -279,17 +279,17 @@ printf '{"jsonrpc":"2.0","id":1,"method":"life_status"}\n' | nativesoul-mcp --ho
|
|
|
279
279
|
|
|
280
280
|
## Pricing
|
|
281
281
|
|
|
282
|
-
NativeSoul is a **single paid product — no free tier**: **$
|
|
282
|
+
NativeSoul is a **single paid product — no free tier**: **$19 one-time**, 1 year of updates, perpetual build, **30-day money-back**, no subscription.
|
|
283
283
|
|
|
284
284
|
| Everything is in the one product | Terms |
|
|
285
285
|
| --- | --- |
|
|
286
|
-
| Identity across every host | **$
|
|
286
|
+
| Identity across every host | **$19 one-time** |
|
|
287
287
|
| Searchable local memory (FTS5) | 1 year of updates, then keep the build forever (perpetual fallback) |
|
|
288
288
|
| Honest capability inventory + idempotent follow-ups | New major = optional paid upgrade |
|
|
289
289
|
| Hybrid recall ranking (local), read-only dashboard, importers, policy packs | **30-day money-back**, no questions |
|
|
290
290
|
| Reversible install/uninstall, `doctor`, audit log | No subscription |
|
|
291
291
|
|
|
292
|
-
> **Honesty note.** The **licensing/boot gate is not shipped yet** — it is specced in [`EPIC-018`](docs/stories/epics/EPIC-018-monetization-entitlements.md) ([ADR-045](docs/adr/ADR-045-paid-only-closed-distribution.md), authoritative). Until it lands, the product runs ungated. Pricing is **perpetual fallback** ($
|
|
292
|
+
> **Honesty note.** The **licensing/boot gate is not shipped yet** — it is specced in [`EPIC-018`](docs/stories/epics/EPIC-018-monetization-entitlements.md) ([ADR-045](docs/adr/ADR-045-paid-only-closed-distribution.md), authoritative). Until it lands, the product runs ungated. Pricing is **perpetual fallback** ($19 + 1 year of updates), not "lifetime." Licensing is **Dodo-managed** — the product checks the license **once a day** (sending only the key, logged to the audit log) with an **offline grace window**; it is **not** "zero network." The single source of truth for what may be claimed is [`docs/architecture/feature-registry.yaml`](docs/architecture/feature-registry.yaml).
|
|
293
293
|
|
|
294
294
|
---
|
|
295
295
|
|
|
@@ -379,7 +379,7 @@ npm run release:provenance:dry-run
|
|
|
379
379
|
|
|
380
380
|
## License
|
|
381
381
|
|
|
382
|
-
**Proprietary, closed-source, paid — not open source, no free tier.** Use requires a paid license (**$
|
|
382
|
+
**Proprietary, closed-source, paid — not open source, no free tier.** Use requires a paid license (**$19 one-time**, 1 year of updates, perpetual build, 30-day money-back). You may **not** fork, redistribute, decompile, reverse-engineer, or create derivative works for distribution.
|
|
383
383
|
|
|
384
384
|
See [`LICENSE`](LICENSE) and the full [`docs/legal/EULA.md`](docs/legal/EULA.md). Licensing is **Dodo-managed** ([ADR-045](docs/adr/ADR-045-paid-only-closed-distribution.md)): a once-a-day license check (sends only the key, logged to the audit log) with an offline grace window. No usage telemetry; your code and memory never leave your machine.
|
|
385
385
|
|