motebit 0.8.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.
- package/LICENSE +1 -1
- package/NOTICE +19 -0
- package/README.md +19 -1
- package/dist/index.js +73633 -52221
- package/package.json +53 -24
- package/schema/motebit-yaml-v1.json +213 -0
package/LICENSE
CHANGED
|
@@ -58,7 +58,7 @@ Source License:
|
|
|
58
58
|
spec/ Protocol specifications (MIT)
|
|
59
59
|
packages/protocol/ @motebit/protocol — network protocol types (MIT)
|
|
60
60
|
packages/sdk/ @motebit/sdk — full type vocabulary (MIT)
|
|
61
|
-
packages/
|
|
61
|
+
packages/crypto/ @motebit/crypto — signing and verification (MIT)
|
|
62
62
|
packages/create-motebit/ create-motebit — identity scaffolding CLI (MIT)
|
|
63
63
|
packages/github-action/ motebit-verify GitHub Action (MIT)
|
|
64
64
|
|
package/NOTICE
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Motebit
|
|
2
|
+
Copyright 2026 Motebit, Inc.
|
|
3
|
+
|
|
4
|
+
This product includes software developed at Motebit, Inc. (https://motebit.com).
|
|
5
|
+
|
|
6
|
+
The permissive-floor packages (the protocol, SDK, cryptographic primitives,
|
|
7
|
+
platform-attestation verifier leaves, scaffolding CLI, and GitHub Action) are
|
|
8
|
+
licensed under the Apache License, Version 2.0. See LICENSE files in each
|
|
9
|
+
`packages/*/` subdirectory and in `spec/` for the full license text.
|
|
10
|
+
|
|
11
|
+
The remaining packages, apps, and services are licensed under the Business
|
|
12
|
+
Source License 1.1 and convert to the Apache License, Version 2.0 four years
|
|
13
|
+
after each version's first public release. See `LICENSE` at the repository
|
|
14
|
+
root and `LICENSING.md` for the full license boundary.
|
|
15
|
+
|
|
16
|
+
"Motebit" is a trademark of Motebit, Inc. The licenses granted here cover
|
|
17
|
+
this software only, not Motebit trademarks, logos, or branding. Use of
|
|
18
|
+
Motebit branding in a way that suggests endorsement or affiliation requires
|
|
19
|
+
written permission.
|
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
|
|
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,24 @@ 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
|
+
|
|
128
|
+
## Related
|
|
129
|
+
|
|
130
|
+
- [`@motebit/protocol`](https://www.npmjs.com/package/@motebit/protocol) — wire-format types (Apache-2.0, zero deps)
|
|
131
|
+
- [`@motebit/sdk`](https://www.npmjs.com/package/@motebit/sdk) — developer contract for building Motebit-powered agents
|
|
132
|
+
- [`@motebit/crypto`](https://www.npmjs.com/package/@motebit/crypto) — signing and verification primitives (Apache-2.0, zero deps)
|
|
133
|
+
- [`@motebit/verifier`](https://www.npmjs.com/package/@motebit/verifier) — offline third-party verifier library (Apache-2.0)
|
|
134
|
+
- [`create-motebit`](https://www.npmjs.com/package/create-motebit) — scaffold a signed agent identity
|
|
135
|
+
|
|
120
136
|
## License
|
|
121
137
|
|
|
122
138
|
BSL-1.1 — see [LICENSE](./LICENSE).
|
|
139
|
+
|
|
140
|
+
"Motebit" is a trademark. The BSL-1.1 License grants rights to this software, not to any Motebit trademarks, logos, or branding. You may not use Motebit branding in a way that suggests endorsement or affiliation without written permission.
|