jefrichat-mcp 0.49.8 → 0.49.10
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/dist/index.js +8 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -46562,7 +46562,7 @@ async function ensureTmuxInteractive() {
|
|
|
46562
46562
|
return false;
|
|
46563
46563
|
}
|
|
46564
46564
|
process.stderr.write(` To enable it: ${plan.command}
|
|
46565
|
-
Then re-run: JEFRI_EXPERIMENTAL_SESSION=1 jefrichat-mcp run <agent>
|
|
46565
|
+
Then re-run: JEFRI_EXPERIMENTAL_SESSION=1 npx -y jefrichat-mcp@latest run <agent>
|
|
46566
46566
|
`);
|
|
46567
46567
|
return false;
|
|
46568
46568
|
}
|
|
@@ -46605,7 +46605,7 @@ async function runWrapped(argv) {
|
|
|
46605
46605
|
Autonomous HEADLESS (default) and INTERVAL modes work right away \u2014 nothing to install.
|
|
46606
46606
|
The experimental "session" mode (watch messages typed into THIS window live) needs
|
|
46607
46607
|
tmux + an opt-in. To try it later:
|
|
46608
|
-
JEFRI_EXPERIMENTAL_SESSION=1 jefrichat-mcp run ${cmdStr}
|
|
46608
|
+
JEFRI_EXPERIMENTAL_SESSION=1 npx -y jefrichat-mcp@latest run ${cmdStr}
|
|
46609
46609
|
|
|
46610
46610
|
`
|
|
46611
46611
|
);
|
|
@@ -46618,16 +46618,17 @@ async function runWrapped(argv) {
|
|
|
46618
46618
|
(Your agent has the last word: if its MCP host doesn't pass TMUX through to the connector,
|
|
46619
46619
|
it says so on start and autonomy runs headless instead.)
|
|
46620
46620
|
1. Wait for your agent to start.
|
|
46621
|
-
2.
|
|
46621
|
+
2. Ask your agent to turn autonomy on: jefri_autonomous({ enabled: true })
|
|
46622
|
+
(it will present the run modes and ask which you want \u2014 choose "session" for the live mode this window is armed for)
|
|
46622
46623
|
3. Message this agent from Jefri \u2014 the message gets typed in HERE and your agent answers.
|
|
46623
|
-
(leave it running in the background: Ctrl-b then d \xB7 come back: jefrichat-mcp run ${cmdStr})
|
|
46624
|
+
(leave it running in the background: Ctrl-b then d \xB7 come back: npx -y jefrichat-mcp@latest run ${cmdStr})
|
|
46624
46625
|
|
|
46625
46626
|
` : `
|
|
46626
46627
|
\u{1F427} Launching "${cmdStr}" in a Jefri-managed tmux session.
|
|
46627
46628
|
Autonomous HEADLESS and INTERVAL modes work as usual (no extra steps).
|
|
46628
46629
|
The experimental "session" mode (watch it type into THIS window) is OFF \u2014 to try it,
|
|
46629
|
-
relaunch with: JEFRI_EXPERIMENTAL_SESSION=1 jefrichat-mcp run ${cmdStr}
|
|
46630
|
-
(leave running: Ctrl-b then d \xB7 reattach: jefrichat-mcp run ${cmdStr})
|
|
46630
|
+
relaunch with: JEFRI_EXPERIMENTAL_SESSION=1 npx -y jefrichat-mcp@latest run ${cmdStr}
|
|
46631
|
+
(leave running: Ctrl-b then d \xB7 reattach: npx -y jefrichat-mcp@latest run ${cmdStr})
|
|
46631
46632
|
|
|
46632
46633
|
`
|
|
46633
46634
|
);
|
|
@@ -46648,7 +46649,7 @@ async function runWrapped(argv) {
|
|
|
46648
46649
|
`
|
|
46649
46650
|
\u2717 existing session "${name}" looks ${verdict.reason} \u2014 NOT attaching, and NOT touching it.
|
|
46650
46651
|
If it's mid-outage (hub deploy?), just re-run in a moment.
|
|
46651
|
-
To REPLACE it (destroys whatever is in that window): jefrichat-mcp run --restart ${agentCmd.join(" ")}
|
|
46652
|
+
To REPLACE it (destroys whatever is in that window): npx -y jefrichat-mcp@latest run --restart ${agentCmd.join(" ")}
|
|
46652
46653
|
To inspect it first: tmux attach -t ${JSON.stringify(name)}
|
|
46653
46654
|
`
|
|
46654
46655
|
);
|
package/package.json
CHANGED