motebit 1.0.0 → 1.0.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 (3) hide show
  1. package/README.md +9 -1
  2. package/dist/index.js +51102 -12482
  3. package/package.json +37 -26
package/README.md CHANGED
@@ -109,7 +109,7 @@ If `npm install -g motebit` fails with native module errors (`better-sqlite3`):
109
109
 
110
110
  - **macOS**: Install Xcode command line tools: `xcode-select --install`
111
111
  - **Linux**: Install build essentials: `apt install build-essential python3` (Debian/Ubuntu)
112
- - **Windows**: Install windows-build-tools: `npm install -g windows-build-tools`
112
+ - **Windows**: Install Visual Studio Build Tools — open the Visual Studio Installer (or download from https://visualstudio.microsoft.com/visual-cpp-build-tools/) and select the "Desktop development with C++" workload, plus a recent Windows SDK and Python 3. The legacy `windows-build-tools` npm package was deprecated in 2018 and does not function on Node 20+.
113
113
 
114
114
  Run `motebit doctor` to diagnose issues after install.
115
115
 
@@ -117,6 +117,14 @@ Run `motebit doctor` to diagnose issues after install.
117
117
 
118
118
  See [docs.motebit.com](https://docs.motebit.com) for full documentation.
119
119
 
120
+ ## How it ships
121
+
122
+ `motebit` is the bundled reference runtime — relay, policy engine, sync engine, MCP server, and wallet adapters all inlined into a single binary at build time. The CLI is its primary operator-facing surface; there are no internal package versions to track.
123
+
124
+ **The public promise of `motebit@1.0` is that operator-facing surface — subcommands, flags, exit codes, `~/.motebit/` layout, relay HTTP routes, MCP server tool list — not the internal workspace package graph.** Breaking changes to that surface require a major bump.
125
+
126
+ For the wire-format contract third parties build against, see the Apache-2.0 packages: [`@motebit/protocol`](https://www.npmjs.com/package/@motebit/protocol), [`@motebit/crypto`](https://www.npmjs.com/package/@motebit/crypto), [`@motebit/sdk`](https://www.npmjs.com/package/@motebit/sdk), and the [19 open specs](https://github.com/motebit/motebit/tree/main/spec). Those promise stability independently and are gated by `check-api-surface`.
127
+
120
128
  ## Related
121
129
 
122
130
  - [`@motebit/protocol`](https://www.npmjs.com/package/@motebit/protocol) — wire-format types (Apache-2.0, zero deps)