soothe-cli 0.1.0__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.
Files changed (107) hide show
  1. soothe_cli-0.1.0/.gitignore +219 -0
  2. soothe_cli-0.1.0/PKG-INFO +100 -0
  3. soothe_cli-0.1.0/README.md +65 -0
  4. soothe_cli-0.1.0/pyproject.toml +78 -0
  5. soothe_cli-0.1.0/src/soothe_cli/__init__.py +5 -0
  6. soothe_cli-0.1.0/src/soothe_cli/cli/__init__.py +1 -0
  7. soothe_cli-0.1.0/src/soothe_cli/cli/commands/__init__.py +1 -0
  8. soothe_cli-0.1.0/src/soothe_cli/cli/commands/autopilot_cmd.py +410 -0
  9. soothe_cli-0.1.0/src/soothe_cli/cli/commands/config_cmd.py +277 -0
  10. soothe_cli-0.1.0/src/soothe_cli/cli/commands/run_cmd.py +87 -0
  11. soothe_cli-0.1.0/src/soothe_cli/cli/commands/status_cmd.py +121 -0
  12. soothe_cli-0.1.0/src/soothe_cli/cli/commands/subagent_names.py +17 -0
  13. soothe_cli-0.1.0/src/soothe_cli/cli/commands/thread_cmd.py +657 -0
  14. soothe_cli-0.1.0/src/soothe_cli/cli/execution/__init__.py +6 -0
  15. soothe_cli-0.1.0/src/soothe_cli/cli/execution/daemon.py +194 -0
  16. soothe_cli-0.1.0/src/soothe_cli/cli/execution/headless.py +99 -0
  17. soothe_cli-0.1.0/src/soothe_cli/cli/execution/launcher.py +31 -0
  18. soothe_cli-0.1.0/src/soothe_cli/cli/main.py +509 -0
  19. soothe_cli-0.1.0/src/soothe_cli/cli/renderer.py +444 -0
  20. soothe_cli-0.1.0/src/soothe_cli/cli/stream/__init__.py +17 -0
  21. soothe_cli-0.1.0/src/soothe_cli/cli/stream/context.py +138 -0
  22. soothe_cli-0.1.0/src/soothe_cli/cli/stream/display_line.py +83 -0
  23. soothe_cli-0.1.0/src/soothe_cli/cli/stream/formatter.py +412 -0
  24. soothe_cli-0.1.0/src/soothe_cli/cli/stream/pipeline.py +521 -0
  25. soothe_cli-0.1.0/src/soothe_cli/cli/utils.py +46 -0
  26. soothe_cli-0.1.0/src/soothe_cli/config/__init__.py +5 -0
  27. soothe_cli-0.1.0/src/soothe_cli/config/cli_config.py +155 -0
  28. soothe_cli-0.1.0/src/soothe_cli/plan/__init__.py +5 -0
  29. soothe_cli-0.1.0/src/soothe_cli/plan/rich_tree.py +54 -0
  30. soothe_cli-0.1.0/src/soothe_cli/shared/__init__.py +107 -0
  31. soothe_cli-0.1.0/src/soothe_cli/shared/command_router.py +246 -0
  32. soothe_cli-0.1.0/src/soothe_cli/shared/config_loader.py +68 -0
  33. soothe_cli-0.1.0/src/soothe_cli/shared/display_policy.py +413 -0
  34. soothe_cli-0.1.0/src/soothe_cli/shared/essential_events.py +68 -0
  35. soothe_cli-0.1.0/src/soothe_cli/shared/event_processor.py +823 -0
  36. soothe_cli-0.1.0/src/soothe_cli/shared/message_processing.py +393 -0
  37. soothe_cli-0.1.0/src/soothe_cli/shared/presentation_engine.py +173 -0
  38. soothe_cli-0.1.0/src/soothe_cli/shared/processor_state.py +80 -0
  39. soothe_cli-0.1.0/src/soothe_cli/shared/renderer_protocol.py +158 -0
  40. soothe_cli-0.1.0/src/soothe_cli/shared/rendering.py +43 -0
  41. soothe_cli-0.1.0/src/soothe_cli/shared/slash_commands.py +354 -0
  42. soothe_cli-0.1.0/src/soothe_cli/shared/subagent_routing.py +63 -0
  43. soothe_cli-0.1.0/src/soothe_cli/shared/suppression_state.py +188 -0
  44. soothe_cli-0.1.0/src/soothe_cli/shared/tool_formatters/__init__.py +27 -0
  45. soothe_cli-0.1.0/src/soothe_cli/shared/tool_formatters/base.py +109 -0
  46. soothe_cli-0.1.0/src/soothe_cli/shared/tool_formatters/execution.py +297 -0
  47. soothe_cli-0.1.0/src/soothe_cli/shared/tool_formatters/fallback.py +128 -0
  48. soothe_cli-0.1.0/src/soothe_cli/shared/tool_formatters/file_ops.py +299 -0
  49. soothe_cli-0.1.0/src/soothe_cli/shared/tool_formatters/goal_formatter.py +331 -0
  50. soothe_cli-0.1.0/src/soothe_cli/shared/tool_formatters/media.py +291 -0
  51. soothe_cli-0.1.0/src/soothe_cli/shared/tool_formatters/structured.py +202 -0
  52. soothe_cli-0.1.0/src/soothe_cli/shared/tool_formatters/web.py +143 -0
  53. soothe_cli-0.1.0/src/soothe_cli/shared/tool_output_formatter.py +227 -0
  54. soothe_cli-0.1.0/src/soothe_cli/shared/tui_trace_log.py +40 -0
  55. soothe_cli-0.1.0/src/soothe_cli/tui/__init__.py +5 -0
  56. soothe_cli-0.1.0/src/soothe_cli/tui/_ask_user_types.py +50 -0
  57. soothe_cli-0.1.0/src/soothe_cli/tui/_cli_context.py +27 -0
  58. soothe_cli-0.1.0/src/soothe_cli/tui/_env_vars.py +56 -0
  59. soothe_cli-0.1.0/src/soothe_cli/tui/_session_stats.py +114 -0
  60. soothe_cli-0.1.0/src/soothe_cli/tui/_version.py +21 -0
  61. soothe_cli-0.1.0/src/soothe_cli/tui/app.py +4992 -0
  62. soothe_cli-0.1.0/src/soothe_cli/tui/app.tcss +302 -0
  63. soothe_cli-0.1.0/src/soothe_cli/tui/command_registry.py +310 -0
  64. soothe_cli-0.1.0/src/soothe_cli/tui/config.py +2381 -0
  65. soothe_cli-0.1.0/src/soothe_cli/tui/daemon_session.py +233 -0
  66. soothe_cli-0.1.0/src/soothe_cli/tui/file_ops.py +409 -0
  67. soothe_cli-0.1.0/src/soothe_cli/tui/formatting.py +28 -0
  68. soothe_cli-0.1.0/src/soothe_cli/tui/hooks.py +23 -0
  69. soothe_cli-0.1.0/src/soothe_cli/tui/input.py +782 -0
  70. soothe_cli-0.1.0/src/soothe_cli/tui/media_utils.py +471 -0
  71. soothe_cli-0.1.0/src/soothe_cli/tui/model_config.py +518 -0
  72. soothe_cli-0.1.0/src/soothe_cli/tui/output.py +69 -0
  73. soothe_cli-0.1.0/src/soothe_cli/tui/project_utils.py +188 -0
  74. soothe_cli-0.1.0/src/soothe_cli/tui/sessions.py +1248 -0
  75. soothe_cli-0.1.0/src/soothe_cli/tui/skills/__init__.py +5 -0
  76. soothe_cli-0.1.0/src/soothe_cli/tui/skills/invocation.py +74 -0
  77. soothe_cli-0.1.0/src/soothe_cli/tui/skills/load.py +93 -0
  78. soothe_cli-0.1.0/src/soothe_cli/tui/textual_adapter.py +1430 -0
  79. soothe_cli-0.1.0/src/soothe_cli/tui/theme.py +838 -0
  80. soothe_cli-0.1.0/src/soothe_cli/tui/tool_display.py +297 -0
  81. soothe_cli-0.1.0/src/soothe_cli/tui/unicode_security.py +502 -0
  82. soothe_cli-0.1.0/src/soothe_cli/tui/update_check.py +447 -0
  83. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/__init__.py +9 -0
  84. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/_links.py +63 -0
  85. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/approval.py +430 -0
  86. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/ask_user.py +392 -0
  87. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/autocomplete.py +666 -0
  88. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/autopilot_dashboard.py +308 -0
  89. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/autopilot_screen.py +64 -0
  90. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/chat_input.py +1834 -0
  91. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/clipboard.py +128 -0
  92. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/diff.py +240 -0
  93. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/editor.py +140 -0
  94. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/history.py +221 -0
  95. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/loading.py +194 -0
  96. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/mcp_viewer.py +352 -0
  97. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/message_store.py +693 -0
  98. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/messages.py +1720 -0
  99. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/model_selector.py +988 -0
  100. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/notification_settings.py +155 -0
  101. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/status.py +403 -0
  102. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/theme_selector.py +158 -0
  103. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/thread_selector.py +1865 -0
  104. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/tool_renderers.py +148 -0
  105. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/tool_widgets.py +254 -0
  106. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/tools.py +165 -0
  107. soothe_cli-0.1.0/src/soothe_cli/tui/widgets/welcome.py +330 -0
@@ -0,0 +1,219 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py.cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
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
102
+ .uv/
103
+
104
+ # poetry
105
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
106
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
107
+ # commonly ignored for libraries.
108
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
109
+ #poetry.lock
110
+ #poetry.toml
111
+
112
+ # pdm
113
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
114
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
115
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
116
+ #pdm.lock
117
+ #pdm.toml
118
+ .pdm-python
119
+ .pdm-build/
120
+
121
+ # pixi
122
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
123
+ #pixi.lock
124
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
125
+ # in the .venv directory. It is recommended not to include this directory in version control.
126
+ .pixi
127
+
128
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
129
+ __pypackages__/
130
+
131
+ # Celery stuff
132
+ celerybeat-schedule
133
+ celerybeat.pid
134
+
135
+ # SageMath parsed files
136
+ *.sage.py
137
+
138
+ # Environments
139
+ .env
140
+ .envrc
141
+ .venv
142
+ env/
143
+ venv/
144
+ ENV/
145
+ env.bak/
146
+ venv.bak/
147
+
148
+ # Spyder project settings
149
+ .spyderproject
150
+ .spyproject
151
+
152
+ # Rope project settings
153
+ .ropeproject
154
+
155
+ # mkdocs documentation
156
+ /site
157
+
158
+ # mypy
159
+ .mypy_cache/
160
+ .dmypy.json
161
+ dmypy.json
162
+
163
+ # Pyre type checker
164
+ .pyre/
165
+
166
+ # pytype static type analyzer
167
+ .pytype/
168
+
169
+ # Cython debug symbols
170
+ cython_debug/
171
+
172
+ # PyCharm
173
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
174
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
175
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
176
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
177
+ #.idea/
178
+
179
+ # Abstra
180
+ # Abstra is an AI-powered process automation framework.
181
+ # Ignore directories containing user credentials, local state, and settings.
182
+ # Learn more at https://abstra.io/docs
183
+ .abstra/
184
+
185
+ # Visual Studio Code
186
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
187
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
188
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
189
+ # you could uncomment the following to ignore the entire vscode folder
190
+ # .vscode/
191
+
192
+ # Ruff stuff:
193
+ .ruff_cache/
194
+
195
+ # PyPI configuration file
196
+ .pypirc
197
+
198
+ # Cursor
199
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
200
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
201
+ # refer to https://docs.cursor.com/context/ignore-files
202
+ .cursorignore
203
+ .cursorindexingignore
204
+
205
+ # Marimo
206
+ marimo/_static/
207
+ marimo/_lsp/
208
+ __marimo__/
209
+
210
+ .python-version
211
+ thirdparty/
212
+ .cursor/
213
+ large_tool_results/
214
+ plot_*
215
+ .claude/
216
+ .DS_Store
217
+
218
+ checkpoint.json
219
+ manifest.json
@@ -0,0 +1,100 @@
1
+ Metadata-Version: 2.4
2
+ Name: soothe-cli
3
+ Version: 0.1.0
4
+ Summary: Soothe CLI client - communicates with daemon via WebSocket
5
+ Project-URL: Homepage, https://github.com/caesar0301/soothe
6
+ Project-URL: Documentation, https://soothe.readthedocs.io
7
+ Project-URL: Repository, https://github.com/caesar0301/soothe
8
+ License: MIT
9
+ Keywords: cli,client,soothe,tui,websocket
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Programming Language :: Python :: 3.14
18
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Requires-Python: <3.15,>=3.11
21
+ Requires-Dist: python-dotenv<2.0.0,>=1.0.0
22
+ Requires-Dist: pyyaml<7.0.0,>=6.0.0
23
+ Requires-Dist: rich>=13.0.0
24
+ Requires-Dist: soothe-sdk<1.0.0,>=0.2.0
25
+ Requires-Dist: textual>=0.40.0
26
+ Requires-Dist: typer<1.0.0,>=0.9.0
27
+ Requires-Dist: websockets>=12.0
28
+ Provides-Extra: dev
29
+ Requires-Dist: mypy>=1.0.0; extra == 'dev'
30
+ Requires-Dist: pytest-asyncio>=1.3.0; extra == 'dev'
31
+ Requires-Dist: pytest-cov; extra == 'dev'
32
+ Requires-Dist: pytest>=8.0.0; extra == 'dev'
33
+ Requires-Dist: ruff>=0.12.0; extra == 'dev'
34
+ Description-Content-Type: text/markdown
35
+
36
+ # Soothe CLI Client
37
+
38
+ WebSocket-based CLI client for Soothe daemon.
39
+
40
+ ## Installation
41
+
42
+ ```bash
43
+ pip install soothe-cli
44
+ ```
45
+
46
+ ## Usage
47
+
48
+ The `soothe` command provides both CLI and TUI interfaces:
49
+
50
+ ```bash
51
+ # Interactive TUI mode
52
+ soothe
53
+
54
+ # Headless single-prompt mode
55
+ soothe -p "Research AI advances"
56
+
57
+ # Thread management
58
+ soothe thread list
59
+ soothe thread continue abc123
60
+
61
+ # Configuration
62
+ soothe config show
63
+ ```
64
+
65
+ ## Architecture
66
+
67
+ This package is the **client** component that communicates with the Soothe daemon via WebSocket.
68
+
69
+ - **No direct dependencies on daemon runtime** - all communication through WebSocket
70
+ - **Lightweight dependencies** - only typer, textual, rich, and SDK
71
+ - **WebSocket-only transport** - bidirectional streaming protocol
72
+
73
+ ## Dependencies
74
+
75
+ - `soothe-sdk>=0.2.0` - WebSocket client, protocol, types
76
+ - `typer>=0.9.0` - CLI framework
77
+ - `textual>=0.40.0` - TUI framework
78
+ - `rich>=13.0.0` - Console output
79
+
80
+ ## Configuration
81
+
82
+ CLI uses `cli_config.yml`:
83
+
84
+ ```yaml
85
+ websocket:
86
+ host: "localhost"
87
+ port: 8765
88
+
89
+ ui:
90
+ verbosity: "normal"
91
+ format: "text"
92
+
93
+ tui:
94
+ theme: "default"
95
+ ```
96
+
97
+ ## Related Packages
98
+
99
+ - **soothe-daemon**: Server package (agent runtime)
100
+ - **soothe-sdk**: Shared SDK (WebSocket client, types)
@@ -0,0 +1,65 @@
1
+ # Soothe CLI Client
2
+
3
+ WebSocket-based CLI client for Soothe daemon.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install soothe-cli
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ The `soothe` command provides both CLI and TUI interfaces:
14
+
15
+ ```bash
16
+ # Interactive TUI mode
17
+ soothe
18
+
19
+ # Headless single-prompt mode
20
+ soothe -p "Research AI advances"
21
+
22
+ # Thread management
23
+ soothe thread list
24
+ soothe thread continue abc123
25
+
26
+ # Configuration
27
+ soothe config show
28
+ ```
29
+
30
+ ## Architecture
31
+
32
+ This package is the **client** component that communicates with the Soothe daemon via WebSocket.
33
+
34
+ - **No direct dependencies on daemon runtime** - all communication through WebSocket
35
+ - **Lightweight dependencies** - only typer, textual, rich, and SDK
36
+ - **WebSocket-only transport** - bidirectional streaming protocol
37
+
38
+ ## Dependencies
39
+
40
+ - `soothe-sdk>=0.2.0` - WebSocket client, protocol, types
41
+ - `typer>=0.9.0` - CLI framework
42
+ - `textual>=0.40.0` - TUI framework
43
+ - `rich>=13.0.0` - Console output
44
+
45
+ ## Configuration
46
+
47
+ CLI uses `cli_config.yml`:
48
+
49
+ ```yaml
50
+ websocket:
51
+ host: "localhost"
52
+ port: 8765
53
+
54
+ ui:
55
+ verbosity: "normal"
56
+ format: "text"
57
+
58
+ tui:
59
+ theme: "default"
60
+ ```
61
+
62
+ ## Related Packages
63
+
64
+ - **soothe-daemon**: Server package (agent runtime)
65
+ - **soothe-sdk**: Shared SDK (WebSocket client, types)
@@ -0,0 +1,78 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "soothe-cli"
7
+ version = "0.1.0"
8
+ description = "Soothe CLI client - communicates with daemon via WebSocket"
9
+ readme = "README.md"
10
+ license = { text = "MIT" }
11
+ requires-python = ">=3.11,<3.15"
12
+ keywords = ["soothe", "cli", "client", "tui", "websocket"]
13
+ classifiers = [
14
+ "Development Status :: 3 - Alpha",
15
+ "Intended Audience :: Developers",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Programming Language :: Python :: 3",
18
+ "Programming Language :: Python :: 3.11",
19
+ "Programming Language :: Python :: 3.12",
20
+ "Programming Language :: Python :: 3.13",
21
+ "Programming Language :: Python :: 3.14",
22
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
23
+ "Topic :: Software Development :: Libraries :: Python Modules",
24
+ ]
25
+ dependencies = [
26
+ "soothe-sdk>=0.2.0,<1.0.0", # WebSocket client, protocol, types
27
+ "typer>=0.9.0,<1.0.0", # CLI framework
28
+ "textual>=0.40.0", # TUI framework
29
+ "rich>=13.0.0", # Console output
30
+ "pyyaml>=6.0.0,<7.0.0", # Config loading
31
+ "python-dotenv>=1.0.0,<2.0.0", # .env loading
32
+ "websockets>=12.0", # WebSocket transport
33
+ ]
34
+
35
+ [project.optional-dependencies]
36
+ dev = [
37
+ "pytest>=8.0.0",
38
+ "pytest-asyncio>=1.3.0",
39
+ "pytest-cov",
40
+ "ruff>=0.12.0",
41
+ "mypy>=1.0.0",
42
+ ]
43
+
44
+ [project.scripts]
45
+ soothe = "soothe_cli.cli.main:app"
46
+
47
+ [project.urls]
48
+ Homepage = "https://github.com/caesar0301/soothe"
49
+ Documentation = "https://soothe.readthedocs.io"
50
+ Repository = "https://github.com/caesar0301/soothe"
51
+
52
+ [tool.hatch.build.targets.wheel]
53
+ packages = ["src/soothe_cli"]
54
+
55
+ [tool.hatch.build.targets.sdist]
56
+ include = ["src/soothe_cli/"]
57
+ exclude = [
58
+ "**/__pycache__",
59
+ "**/*.pyc",
60
+ "**/*.pyo",
61
+ ]
62
+
63
+ [tool.ruff]
64
+ line-length = 100
65
+ target-version = "py311"
66
+
67
+ [tool.ruff.lint]
68
+ select = ["E", "F", "I", "N", "W", "UP"]
69
+ ignore = ["E501"]
70
+
71
+ [tool.ruff.format]
72
+ docstring-code-format = true
73
+
74
+ [tool.mypy]
75
+ python_version = "3.11"
76
+ warn_return_any = true
77
+ warn_unused_configs = true
78
+ disallow_untyped_defs = true
@@ -0,0 +1,5 @@
1
+ """Soothe CLI client - communicates with daemon via WebSocket."""
2
+
3
+ __version__ = "0.1.0"
4
+
5
+ __all__ = []
@@ -0,0 +1 @@
1
+ """Module initialization for UX components."""
@@ -0,0 +1 @@
1
+ """Module initialization for UX components."""