@telora/daemon 0.14.20 → 0.14.21
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 +3 -3
- package/build-info.json +2 -2
- package/dist/cli/connect.d.ts +1 -1
- package/dist/cli/connect.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,10 +20,10 @@ Key features:
|
|
|
20
20
|
npm install --save-dev @telora/daemon
|
|
21
21
|
|
|
22
22
|
# Or run directly with npx
|
|
23
|
-
npx @telora/daemon
|
|
23
|
+
npx -p @telora/daemon telora-daemon
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
> **Note:** The `.mcp.json` file for Claude Code integration is auto-generated by `npx telora-daemon init`.
|
|
26
|
+
> **Note:** The `.mcp.json` file for Claude Code integration is auto-generated by `npx -p @telora/daemon telora-daemon init`.
|
|
27
27
|
|
|
28
28
|
## Quick Start
|
|
29
29
|
|
|
@@ -31,7 +31,7 @@ npx @telora/daemon
|
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
33
|
cd /path/to/your/repo
|
|
34
|
-
npx @telora/daemon init
|
|
34
|
+
npx -p @telora/daemon telora-daemon init
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
The setup wizard will guide you through:
|
package/build-info.json
CHANGED
package/dist/cli/connect.d.ts
CHANGED
|
@@ -112,7 +112,7 @@ export declare function installDaemonIfNeeded(repoPath: string, io: ConnectIO):
|
|
|
112
112
|
*
|
|
113
113
|
* We deliberately do not reuse `startDaemonBackground` from daemon-process.ts
|
|
114
114
|
* because that resolves the entry point relative to *this* file -- which,
|
|
115
|
-
* during a fresh `npx --yes @telora/daemon connect ...` invocation, lives in
|
|
115
|
+
* during a fresh `npx --yes -p @telora/daemon telora-daemon connect ...` invocation, lives in
|
|
116
116
|
* a transient npx cache. Spawning from the local install gives the daemon
|
|
117
117
|
* a stable home for its lifetime.
|
|
118
118
|
*/
|
package/dist/cli/connect.js
CHANGED
|
@@ -195,7 +195,7 @@ export function installDaemonIfNeeded(repoPath, io) {
|
|
|
195
195
|
*
|
|
196
196
|
* We deliberately do not reuse `startDaemonBackground` from daemon-process.ts
|
|
197
197
|
* because that resolves the entry point relative to *this* file -- which,
|
|
198
|
-
* during a fresh `npx --yes @telora/daemon connect ...` invocation, lives in
|
|
198
|
+
* during a fresh `npx --yes -p @telora/daemon telora-daemon connect ...` invocation, lives in
|
|
199
199
|
* a transient npx cache. Spawning from the local install gives the daemon
|
|
200
200
|
* a stable home for its lifetime.
|
|
201
201
|
*/
|