soothe-cli 0.5.3__tar.gz → 0.5.5__tar.gz
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.
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/.gitignore +1 -5
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/PKG-INFO +1 -1
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/messages.py +1 -3
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/README.md +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/pyproject.toml +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/commands/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/commands/autopilot_cmd.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/commands/loop_cmd.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/commands/run_cmd.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/execution/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/execution/daemon.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/execution/headless.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/execution/headless_renderer.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/execution/launcher.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/main.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/stream/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/stream/context.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/stream/display_line.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/stream/formatter.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/stream/pipeline.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/cli/stream/task_scope.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/config/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/config/cli_config.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/plan/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/plan/rich_tree.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/commands/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/commands/command_router.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/commands/slash_commands.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/commands/subagent_routing.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/config_loader.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/core/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/core/event_processor.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/core/presentation_engine.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/core/processor_state.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/core/renderer_protocol.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/duration_format.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/events/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/events/display_policy.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/events/essential_events.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/events/explore_task_display.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/events/stream_accumulator.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/events/tui_trace_log.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/rendering/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/rendering/async_renderer_protocol.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/rendering/renderer_base.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/_utils.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/message_processing.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/rendering.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_call_resolution.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_card_payload.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_card_visibility.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/base.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/execution.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/fallback.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/file_ops.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/goal_formatter.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/media.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/structured.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/subagent.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/web.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_message_format.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_output_formatter.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/_ask_user_types.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/_cli_context.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/_env_vars.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/_session_stats.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/_version.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/app/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/app/_app.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/app/_commands.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/app/_execution.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/app/_history.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/app/_messages_mixin.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/app/_model.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/app/_module_init.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/app/_startup.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/app/_ui.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/app/app.tcss +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/command_registry.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/config.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/daemon_session.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/file_ops.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/formatting.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/hooks.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/input.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/media_utils.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/message_display_filter.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/model_config.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/output.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/preview_limits.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/project_utils.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/sessions.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/skills/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/skills/invocation.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/skills/load.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/textual_adapter/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/textual_adapter/_adapter.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/textual_adapter/_stream_formatting.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/textual_adapter/_stream_messages.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/textual_adapter/_turn.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/textual_adapter/_turn_helpers.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/theme.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/tool_display.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/unicode_security.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/update_check.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/__init__.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/_links.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/approval.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/ask_user.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/autocomplete.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/autopilot_dashboard.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/autopilot_screen.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/chat_input.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/clipboard.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/diff.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/editor.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/history.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/loading.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/loop_selector.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/mcp_viewer.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/message_store.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/model_selector.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/notification_settings.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/status.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/theme_selector.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/tool_renderers.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/tool_widgets.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/tools.py +0 -0
- {soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/widgets/welcome.py +0 -0
|
@@ -94,11 +94,7 @@ ipython_config.py
|
|
|
94
94
|
# install all needed dependencies.
|
|
95
95
|
#Pipfile.lock
|
|
96
96
|
|
|
97
|
-
# UV
|
|
98
|
-
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
99
|
-
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
-
# commonly ignored for libraries.
|
|
101
|
-
uv.lock
|
|
97
|
+
# UV — lockfile is committed for reproducible installs (Docker `uv sync --frozen`, CI).
|
|
102
98
|
.uv/
|
|
103
99
|
|
|
104
100
|
# poetry
|
|
@@ -1090,9 +1090,7 @@ class ToolCallMessage(Vertical):
|
|
|
1090
1090
|
Must stay aligned with :meth:`on_click` (whole-card toggle branch).
|
|
1091
1091
|
"""
|
|
1092
1092
|
return bool(
|
|
1093
|
-
self._activity
|
|
1094
|
-
or (self._output or "").strip()
|
|
1095
|
-
or self._status in ("success", "error")
|
|
1093
|
+
self._activity or (self._output or "").strip() or self._status in ("success", "error")
|
|
1096
1094
|
)
|
|
1097
1095
|
|
|
1098
1096
|
def _maybe_auto_collapse_task_card(self) -> None:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/rendering/async_renderer_protocol.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/execution.py
RENAMED
|
File without changes
|
{soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/fallback.py
RENAMED
|
File without changes
|
{soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/file_ops.py
RENAMED
|
File without changes
|
{soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/goal_formatter.py
RENAMED
|
File without changes
|
|
File without changes
|
{soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/structured.py
RENAMED
|
File without changes
|
{soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/shared/tools/tool_formatters/subagent.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/textual_adapter/_stream_formatting.py
RENAMED
|
File without changes
|
{soothe_cli-0.5.3 → soothe_cli-0.5.5}/src/soothe_cli/tui/textual_adapter/_stream_messages.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|