fathom-mcp 0.5.7 → 0.5.8
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/package.json +1 -1
- package/scripts/fathom-start.sh +2 -2
package/package.json
CHANGED
package/scripts/fathom-start.sh
CHANGED
|
@@ -160,7 +160,7 @@ resolve_agent_cmd() {
|
|
|
160
160
|
case "$AGENT" in
|
|
161
161
|
claude-code)
|
|
162
162
|
if [[ "$USE_TMUX" == false ]]; then
|
|
163
|
-
echo "claude -p --permission-mode bypassPermissions --
|
|
163
|
+
echo "claude -p --permission-mode bypassPermissions --output-format stream-json"
|
|
164
164
|
else
|
|
165
165
|
echo "claude --model opus --permission-mode bypassPermissions"
|
|
166
166
|
fi
|
|
@@ -169,7 +169,7 @@ resolve_agent_cmd() {
|
|
|
169
169
|
if [[ "$USE_TMUX" == true ]]; then
|
|
170
170
|
echo "claude --model opus --permission-mode bypassPermissions"
|
|
171
171
|
else
|
|
172
|
-
echo "claude -p --permission-mode bypassPermissions --
|
|
172
|
+
echo "claude -p --permission-mode bypassPermissions --output-format stream-json"
|
|
173
173
|
fi
|
|
174
174
|
;;
|
|
175
175
|
codex)
|