crumbtrail-node 0.2.1 → 0.2.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/README.md +27 -1
- package/dist/{chunk-GHLXGRLJ.js → chunk-AYFSTFOH.js} +1 -1
- package/dist/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,7 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
Local Crumbtrail HTTP server, MCP server, Express middleware, and package CLI.
|
|
4
4
|
|
|
5
|
-
This package is the local self-host runtime boundary for Crumbtrail. It owns the server process that receives session events, writes local artifacts, post-processes sessions, and exposes MCP-readable evidence.
|
|
5
|
+
This package is the local self-host runtime boundary for [Crumbtrail](https://crumbtrail.dev). It owns the server process that receives session events, writes local artifacts, post-processes sessions, and exposes MCP-readable evidence.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install crumbtrail-node
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or let the setup wizard install and wire everything for you:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx crumbtrail
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Pair it with [`crumbtrail-core`](https://www.npmjs.com/package/crumbtrail-core) in the browser. If you'd rather not run a server at all, the hosted cloud at [crumbtrail.dev](https://crumbtrail.dev) is a drop-in replacement for this endpoint.
|
|
6
20
|
|
|
7
21
|
## Runtime boundary
|
|
8
22
|
|
|
@@ -240,3 +254,15 @@ The `src/__tests__/package-boundary.test.ts` suite locks the package metadata, b
|
|
|
240
254
|
## What this does not claim yet
|
|
241
255
|
|
|
242
256
|
This package is not yet a production/cloud hosting story. M003 proves local self-host packaging and fresh-install validation; later work can still expand deployment guides and hosted operations.
|
|
257
|
+
|
|
258
|
+
## Links
|
|
259
|
+
|
|
260
|
+
- **Website** — https://crumbtrail.dev
|
|
261
|
+
- **Docs** — https://crumbtrail.dev/docs
|
|
262
|
+
- **How it works** — https://crumbtrail.dev/how-it-works
|
|
263
|
+
- **Source** — https://github.com/crumbtrail-dev/crumbtrail-js
|
|
264
|
+
- **Issues** — https://github.com/crumbtrail-dev/crumbtrail-js/issues
|
|
265
|
+
|
|
266
|
+
## License
|
|
267
|
+
|
|
268
|
+
MIT
|
|
@@ -13105,7 +13105,7 @@ import fs10 from "fs";
|
|
|
13105
13105
|
// package.json
|
|
13106
13106
|
var package_default = {
|
|
13107
13107
|
name: "crumbtrail-node",
|
|
13108
|
-
version: "0.2.
|
|
13108
|
+
version: "0.2.2",
|
|
13109
13109
|
description: "Local Crumbtrail server, MCP evidence tools, Express middleware, and CLI for self-hosted debugging sessions.",
|
|
13110
13110
|
license: "MIT",
|
|
13111
13111
|
repository: {
|
package/dist/cli.cjs
CHANGED
|
@@ -225793,7 +225793,7 @@ var import_node_fs10 = __toESM(require("fs"), 1);
|
|
|
225793
225793
|
// package.json
|
|
225794
225794
|
var package_default = {
|
|
225795
225795
|
name: "crumbtrail-node",
|
|
225796
|
-
version: "0.2.
|
|
225796
|
+
version: "0.2.2",
|
|
225797
225797
|
description: "Local Crumbtrail server, MCP evidence tools, Express middleware, and CLI for self-hosted debugging sessions.",
|
|
225798
225798
|
license: "MIT",
|
|
225799
225799
|
repository: {
|
package/dist/cli.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -12920,7 +12920,7 @@ var import_node_fs10 = __toESM(require("fs"), 1);
|
|
|
12920
12920
|
// package.json
|
|
12921
12921
|
var package_default = {
|
|
12922
12922
|
name: "crumbtrail-node",
|
|
12923
|
-
version: "0.2.
|
|
12923
|
+
version: "0.2.2",
|
|
12924
12924
|
description: "Local Crumbtrail server, MCP evidence tools, Express middleware, and CLI for self-hosted debugging sessions.",
|
|
12925
12925
|
license: "MIT",
|
|
12926
12926
|
repository: {
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crumbtrail-node",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Local Crumbtrail server, MCP evidence tools, Express middleware, and CLI for self-hosted debugging sessions.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"protobufjs": "^8.6.5",
|
|
45
|
-
"crumbtrail-core": "^0.2.
|
|
45
|
+
"crumbtrail-core": "^0.2.2"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/express": "^5.0.6",
|