codesesh 0.12.0 → 0.13.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/README.md +7 -1
- package/dist/{chunk-GCOAE7KI.js → chunk-BV65IEWZ.js} +368 -179
- package/dist/chunk-BV65IEWZ.js.map +1 -0
- package/dist/{dist-TZTL6VP4.js → dist-VD54GDPO.js} +10 -2
- package/dist/index.js +949 -510
- package/dist/index.js.map +1 -1
- package/dist/scan-refresh-worker.js +1 -1
- package/dist/search-index-worker.js +1 -1
- package/dist/smart-tag-worker.js +1 -1
- package/dist/web/assets/index-ZikfLnUo.js +113 -0
- package/dist/web/assets/index-y6Zx3LT1.css +2 -0
- package/dist/web/assets/markdown-dR4kAewZ.js +14 -0
- package/dist/web/assets/react-DBHwgW7V.js +1821 -0
- package/dist/web/assets/syntax-C_RLNYQn.js +6 -0
- package/dist/web/assets/vendor-bXsb4Kz4.js +40 -0
- package/dist/web/index.html +6 -6
- package/package.json +9 -8
- package/dist/chunk-GCOAE7KI.js.map +0 -1
- package/dist/web/assets/index-D05hsCzb.css +0 -2
- package/dist/web/assets/index-DOy8q3la.js +0 -113
- package/dist/web/assets/markdown-CGVJZBE7.js +0 -14
- package/dist/web/assets/react-DkEeEGji.js +0 -1821
- package/dist/web/assets/syntax-CFQ-7fm6.js +0 -6
- package/dist/web/assets/vendor-B2nLfkMs.js +0 -80
- /package/dist/{dist-TZTL6VP4.js.map → dist-VD54GDPO.js.map} +0 -0
package/README.md
CHANGED
|
@@ -80,6 +80,8 @@ npx codesesh --trace
|
|
|
80
80
|
| Flag | Alias | Default | Description |
|
|
81
81
|
| ----------- | ----- | ------- | ----------------------------------------------------------- |
|
|
82
82
|
| `--port` | `-p` | `4521` | HTTP server starting port; falls back to the next available port if busy |
|
|
83
|
+
| `--host` | — | `127.0.0.1` | HTTP server bind address; non-loopback values require `--remote-access` |
|
|
84
|
+
| `--remote-access` | — | `false` | Enable token-protected access on a non-loopback host |
|
|
83
85
|
| `--days` | `-d` | `7` | Only include sessions active in the last N days (`0` = all time) |
|
|
84
86
|
| `--cwd` | — | — | Filter to sessions from a project directory |
|
|
85
87
|
| `--agent` | `-a` | all | Filter to specific agent(s), comma-separated |
|
|
@@ -93,9 +95,13 @@ npx codesesh --trace
|
|
|
93
95
|
| `--clear-cache` | — | `false` | Clear scan cache before starting |
|
|
94
96
|
| `-v` | — | — | Print version number |
|
|
95
97
|
|
|
98
|
+
When remote access is enabled, CodeSesh prints a startup URL containing a fresh access token.
|
|
99
|
+
Anyone with that URL can read the indexed AI session history, so treat it as a password and do not
|
|
100
|
+
share or persist it.
|
|
101
|
+
|
|
96
102
|
## Requirements
|
|
97
103
|
|
|
98
|
-
- Node.js
|
|
104
|
+
- Node.js 22+
|
|
99
105
|
|
|
100
106
|
## Links
|
|
101
107
|
|