nativesoul 0.1.3 → 1.0.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/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.0.0] — 2026-07-06
19
+
20
+ First stable major. NativeSoul now commits to SemVer stability on its CLI, MCP,
21
+ and on-disk schema surface. Feature-complete relative to the 0.1.x line — this
22
+ release **declares the product stable and paid-GA**, it is not a rewrite. This
23
+ is the major your purchase covers (ADR-043 §2).
24
+
25
+ ### Product
26
+ - **Local-first continuity for coding agents** — CLI (`nativesoul`) + MCP stdio
27
+ server (`nativesoul-mcp`), workspace at `~/.nativesoul/`. Zero runtime
28
+ dependencies (`dependencies: {}`), no daemon, no usage telemetry, never copies
29
+ credentials between hosts.
30
+ - **Identity + memory + policy** — identity bootstrap (with the auditable
31
+ read-only `bootstrap --plan`), project-scoped memory (recall / propose /
32
+ promote / reflect), hybrid lexical recall (FTS5 + local hash-BoW ranking — not
33
+ embeddings), policy evaluation + standing orders, and an approval gate.
34
+ - **Operations** — heartbeat, capability scan, work items/board, static
35
+ dashboard viewer, and host-reported cost — across every supported host
36
+ (Claude, Codex, Gemini, Grok, Antigravity) via reversible managed-block
37
+ installs.
38
+ - **Safety** — every sensitive mutation passes a central fail-closed policy gate,
39
+ and every managed write passes a path-safety check (ADR-046).
40
+ - **Paid-only** — single **$29**, Dodo Payments (Merchant of Record). Buy once:
41
+ **1 year of updates**, **keep the build forever** (perpetual fallback),
42
+ **30-day money-back**, no subscription (ADR-045).
43
+ - Help center published at the official domain **`docs.nativesoul.dev`**; the CLI
44
+ activation URL (`ACTIVATE_URL`) points there.
45
+
46
+ ### Distribution
47
+ - Published to `@beta`, then promoted to `@latest` — the first legitimate
48
+ `@latest` per ADR-043 (`@latest` reserved for `≥1.0.0`); this supersedes the
49
+ 0.1.3 latest-promotion exception recorded in ADR-043 §5.
50
+
18
51
  ## [0.1.3] — 2026-07-06
19
52
 
20
53
  ### Product
package/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
  <a href="#mcp-tools">MCP Tools</a> &nbsp;·&nbsp;
12
12
  <a href="#pricing">Pricing</a> &nbsp;·&nbsp;
13
13
  <a href="#dont-trust-us-check-us">Verify It</a> &nbsp;·&nbsp;
14
- <a href="https://native-soul.mintlify.site/">Help Center</a>
14
+ <a href="https://docs.nativesoul.dev/">Help Center</a>
15
15
  </p>
16
16
 
17
17
  <p align="center">
@@ -357,7 +357,7 @@ npm run release:provenance:dry-run
357
357
 
358
358
  ## Documentation
359
359
 
360
- **Help center (customers):** [native-soul.mintlify.site](https://native-soul.mintlify.site/) — published from [`docs/help/`](docs/help/) via Mintlify. Install, hosts, commands, FAQ, pricing & licensing.
360
+ **Help center (customers):** [docs.nativesoul.dev](https://docs.nativesoul.dev/) — published from [`docs/help/`](docs/help/) via Mintlify. Install, hosts, commands, FAQ, pricing & licensing.
361
361
 
362
362
  **Internal map (contributors):**
363
363
 
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nativesoul",
3
- "version": "0.1.3",
3
+ "version": "1.0.0",
4
4
  "description": "Local-first continuity layer for coding agents.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",