tunacode-cli 0.0.55__py3-none-any.whl → 0.0.78.6__py3-none-any.whl

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.

Potentially problematic release.


This version of tunacode-cli might be problematic. Click here for more details.

Files changed (114) hide show
  1. tunacode/cli/commands/__init__.py +2 -2
  2. tunacode/cli/commands/implementations/__init__.py +2 -3
  3. tunacode/cli/commands/implementations/command_reload.py +48 -0
  4. tunacode/cli/commands/implementations/debug.py +2 -2
  5. tunacode/cli/commands/implementations/development.py +10 -8
  6. tunacode/cli/commands/implementations/model.py +357 -29
  7. tunacode/cli/commands/implementations/quickstart.py +43 -0
  8. tunacode/cli/commands/implementations/system.py +96 -3
  9. tunacode/cli/commands/implementations/template.py +0 -2
  10. tunacode/cli/commands/registry.py +139 -5
  11. tunacode/cli/commands/slash/__init__.py +32 -0
  12. tunacode/cli/commands/slash/command.py +157 -0
  13. tunacode/cli/commands/slash/loader.py +135 -0
  14. tunacode/cli/commands/slash/processor.py +294 -0
  15. tunacode/cli/commands/slash/types.py +93 -0
  16. tunacode/cli/commands/slash/validator.py +400 -0
  17. tunacode/cli/main.py +23 -2
  18. tunacode/cli/repl.py +217 -190
  19. tunacode/cli/repl_components/command_parser.py +38 -4
  20. tunacode/cli/repl_components/error_recovery.py +85 -4
  21. tunacode/cli/repl_components/output_display.py +12 -1
  22. tunacode/cli/repl_components/tool_executor.py +1 -1
  23. tunacode/configuration/defaults.py +12 -3
  24. tunacode/configuration/key_descriptions.py +284 -0
  25. tunacode/configuration/settings.py +0 -1
  26. tunacode/constants.py +12 -40
  27. tunacode/core/agents/__init__.py +43 -2
  28. tunacode/core/agents/agent_components/__init__.py +7 -0
  29. tunacode/core/agents/agent_components/agent_config.py +249 -55
  30. tunacode/core/agents/agent_components/agent_helpers.py +43 -13
  31. tunacode/core/agents/agent_components/node_processor.py +179 -139
  32. tunacode/core/agents/agent_components/response_state.py +123 -6
  33. tunacode/core/agents/agent_components/state_transition.py +116 -0
  34. tunacode/core/agents/agent_components/streaming.py +296 -0
  35. tunacode/core/agents/agent_components/task_completion.py +19 -6
  36. tunacode/core/agents/agent_components/tool_buffer.py +21 -1
  37. tunacode/core/agents/agent_components/tool_executor.py +10 -0
  38. tunacode/core/agents/main.py +522 -370
  39. tunacode/core/agents/main_legact.py +538 -0
  40. tunacode/core/agents/prompts.py +66 -0
  41. tunacode/core/agents/utils.py +29 -121
  42. tunacode/core/code_index.py +83 -29
  43. tunacode/core/setup/__init__.py +0 -2
  44. tunacode/core/setup/config_setup.py +110 -20
  45. tunacode/core/setup/config_wizard.py +230 -0
  46. tunacode/core/setup/coordinator.py +14 -5
  47. tunacode/core/state.py +16 -20
  48. tunacode/core/token_usage/usage_tracker.py +5 -3
  49. tunacode/core/tool_authorization.py +352 -0
  50. tunacode/core/tool_handler.py +67 -40
  51. tunacode/exceptions.py +119 -5
  52. tunacode/prompts/system.xml +751 -0
  53. tunacode/services/mcp.py +125 -7
  54. tunacode/setup.py +5 -25
  55. tunacode/tools/base.py +163 -0
  56. tunacode/tools/bash.py +110 -1
  57. tunacode/tools/glob.py +332 -34
  58. tunacode/tools/grep.py +179 -82
  59. tunacode/tools/grep_components/result_formatter.py +98 -4
  60. tunacode/tools/list_dir.py +132 -2
  61. tunacode/tools/prompts/bash_prompt.xml +72 -0
  62. tunacode/tools/prompts/glob_prompt.xml +45 -0
  63. tunacode/tools/prompts/grep_prompt.xml +98 -0
  64. tunacode/tools/prompts/list_dir_prompt.xml +31 -0
  65. tunacode/tools/prompts/react_prompt.xml +23 -0
  66. tunacode/tools/prompts/read_file_prompt.xml +54 -0
  67. tunacode/tools/prompts/run_command_prompt.xml +64 -0
  68. tunacode/tools/prompts/update_file_prompt.xml +53 -0
  69. tunacode/tools/prompts/write_file_prompt.xml +37 -0
  70. tunacode/tools/react.py +153 -0
  71. tunacode/tools/read_file.py +91 -0
  72. tunacode/tools/run_command.py +114 -0
  73. tunacode/tools/schema_assembler.py +167 -0
  74. tunacode/tools/update_file.py +94 -0
  75. tunacode/tools/write_file.py +86 -0
  76. tunacode/tools/xml_helper.py +83 -0
  77. tunacode/tutorial/__init__.py +9 -0
  78. tunacode/tutorial/content.py +98 -0
  79. tunacode/tutorial/manager.py +182 -0
  80. tunacode/tutorial/steps.py +124 -0
  81. tunacode/types.py +20 -27
  82. tunacode/ui/completers.py +434 -50
  83. tunacode/ui/config_dashboard.py +585 -0
  84. tunacode/ui/console.py +63 -11
  85. tunacode/ui/input.py +20 -3
  86. tunacode/ui/keybindings.py +7 -4
  87. tunacode/ui/model_selector.py +395 -0
  88. tunacode/ui/output.py +40 -19
  89. tunacode/ui/panels.py +212 -43
  90. tunacode/ui/path_heuristics.py +91 -0
  91. tunacode/ui/prompt_manager.py +5 -1
  92. tunacode/ui/tool_ui.py +33 -10
  93. tunacode/utils/api_key_validation.py +93 -0
  94. tunacode/utils/config_comparator.py +340 -0
  95. tunacode/utils/json_utils.py +206 -0
  96. tunacode/utils/message_utils.py +14 -4
  97. tunacode/utils/models_registry.py +593 -0
  98. tunacode/utils/ripgrep.py +332 -9
  99. tunacode/utils/text_utils.py +18 -1
  100. tunacode/utils/user_configuration.py +45 -0
  101. tunacode_cli-0.0.78.6.dist-info/METADATA +260 -0
  102. tunacode_cli-0.0.78.6.dist-info/RECORD +158 -0
  103. {tunacode_cli-0.0.55.dist-info → tunacode_cli-0.0.78.6.dist-info}/WHEEL +1 -2
  104. tunacode/cli/commands/implementations/todo.py +0 -217
  105. tunacode/context.py +0 -71
  106. tunacode/core/setup/git_safety_setup.py +0 -182
  107. tunacode/prompts/system.md +0 -731
  108. tunacode/tools/read_file_async_poc.py +0 -196
  109. tunacode/tools/todo.py +0 -349
  110. tunacode_cli-0.0.55.dist-info/METADATA +0 -322
  111. tunacode_cli-0.0.55.dist-info/RECORD +0 -126
  112. tunacode_cli-0.0.55.dist-info/top_level.txt +0 -1
  113. {tunacode_cli-0.0.55.dist-info → tunacode_cli-0.0.78.6.dist-info}/entry_points.txt +0 -0
  114. {tunacode_cli-0.0.55.dist-info → tunacode_cli-0.0.78.6.dist-info}/licenses/LICENSE +0 -0
@@ -1,322 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: tunacode-cli
3
- Version: 0.0.55
4
- Summary: Your agentic CLI developer.
5
- Author-email: larock22 <noreply@github.com>
6
- License: MIT
7
- Project-URL: Homepage, https://tunacode.xyz/
8
- Project-URL: Repository, https://github.com/alchemiststudiosDOTai/tunacode
9
- Project-URL: Issues, https://github.com/alchemiststudiosDOTai/tunacode/issues
10
- Project-URL: Documentation, https://github.com/alchemiststudiosDOTai/tunacode#readme
11
- Keywords: cli,agent,development,automation
12
- Classifier: Development Status :: 4 - Beta
13
- Classifier: Intended Audience :: Developers
14
- Classifier: Programming Language :: Python :: 3
15
- Classifier: Programming Language :: Python :: 3.10
16
- Classifier: Programming Language :: Python :: 3.11
17
- Classifier: Programming Language :: Python :: 3.12
18
- Classifier: Programming Language :: Python :: 3.13
19
- Classifier: Topic :: Software Development
20
- Classifier: Topic :: Utilities
21
- Requires-Python: <3.14,>=3.10
22
- Description-Content-Type: text/markdown
23
- License-File: LICENSE
24
- Requires-Dist: typer==0.15.3
25
- Requires-Dist: prompt_toolkit==3.0.51
26
- Requires-Dist: pydantic-ai[logfire]==0.2.6
27
- Requires-Dist: pygments==2.19.1
28
- Requires-Dist: rich==14.0.0
29
- Requires-Dist: tiktoken>=0.5.2
30
- Provides-Extra: dev
31
- Requires-Dist: build; extra == "dev"
32
- Requires-Dist: ruff; extra == "dev"
33
- Requires-Dist: pytest; extra == "dev"
34
- Requires-Dist: pytest-cov; extra == "dev"
35
- Requires-Dist: pytest-asyncio; extra == "dev"
36
- Requires-Dist: textual-dev; extra == "dev"
37
- Requires-Dist: pre-commit; extra == "dev"
38
- Requires-Dist: vulture>=2.7; extra == "dev"
39
- Requires-Dist: unimport>=1.0.0; extra == "dev"
40
- Requires-Dist: autoflake>=2.0.0; extra == "dev"
41
- Requires-Dist: dead>=1.5.0; extra == "dev"
42
- Dynamic: license-file
43
-
44
- # TunaCode CLI
45
-
46
- <div align="center">
47
-
48
- [![PyPI version](https://badge.fury.io/py/tunacode-cli.svg)](https://badge.fury.io/py/tunacode-cli)
49
- [![Downloads](https://pepy.tech/badge/tunacode-cli)](https://pepy.tech/project/tunacode-cli)
50
- [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
51
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
52
-
53
- **AI-powered CLI coding assistant**
54
-
55
- ![TunaCode Example](assets/tunacode_example.png)
56
-
57
- </div>
58
-
59
- ---
60
-
61
- ## Quick Install
62
-
63
- ```bash
64
- # Option 1: One-line install (Linux/macOS)
65
- wget -qO- https://raw.githubusercontent.com/alchemiststudiosDOTai/tunacode/master/scripts/install_linux.sh | bash
66
-
67
- # Option 2: pip install
68
- pip install tunacode-cli
69
- ```
70
-
71
- ## Development Installation
72
-
73
- For contributors and developers who want to work on TunaCode:
74
-
75
- ```bash
76
- # Clone the repository
77
- git clone https://github.com/alchemiststudiosDOTai/tunacode.git
78
- cd tunacode
79
-
80
- # Quick setup (recommended)
81
- ./scripts/setup_dev_env.sh
82
-
83
- # Or manual setup
84
- python3 -m venv venv
85
- source venv/bin/activate # On Windows: venv\Scripts\activate
86
- pip install -e ".[dev]"
87
-
88
- # Verify installation
89
- python -m tunacode --version
90
- ```
91
-
92
- See [Development Guide](docs/DEVELOPMENT.md) for detailed instructions.
93
-
94
- ## Configuration
95
-
96
- Choose your AI provider and set your API key:
97
-
98
- ```bash
99
- # OpenAI
100
- tunacode --model "openai:gpt-4o" --key "sk-your-openai-key"
101
-
102
- # Anthropic Claude
103
- tunacode --model "anthropic:claude-3.5-sonnet" --key "sk-ant-your-anthropic-key"
104
-
105
- # OpenRouter (100+ models)
106
- tunacode --model "openrouter:openai/gpt-4o" --key "sk-or-your-openrouter-key"
107
- ```
108
-
109
- Your config is saved to `~/.config/tunacode.json` (edit directly with `nvim ~/.config/tunacode.json`)
110
-
111
- ### Recommended Models
112
-
113
- Based on extensive testing, these models provide the best performance:
114
-
115
- - `google/gemini-2.5-pro` - Excellent for complex reasoning
116
- - `openai/gpt-4.1` - Strong general-purpose model
117
- - `deepseek/deepseek-r1-0528` - Great for code generation
118
- - `openai/gpt-4.1-mini` - Fast and cost-effective
119
- - `anthropic/claude-4-sonnet-20250522` - Superior context handling
120
-
121
- _Note: Formal evaluations coming soon. Any model can work, but these have shown the best results in practice._
122
-
123
- ## Start Coding
124
-
125
- ```bash
126
- tunacode
127
- ```
128
-
129
- ## Basic Commands
130
-
131
- | Command | Description |
132
- | ------------------------ | ---------------------- |
133
- | `/help` | Show all commands |
134
- | `/model <provider:name>` | Switch model |
135
- | `/clear` | Clear message history |
136
- | `/compact` | Summarize conversation |
137
- | `/branch <name>` | Create Git branch |
138
- | `/yolo` | Skip confirmations |
139
- | `!<command>` | Run shell command |
140
- | `exit` | Exit TunaCode |
141
-
142
- ## Performance
143
-
144
- TunaCode leverages parallel execution for read-only operations, achieving **3x faster** file operations:
145
-
146
- ![Parallel Execution Performance](docs/assets/parrelel_work_3x.png)
147
-
148
- Multiple file reads, directory listings, and searches execute concurrently using async I/O, making code exploration significantly faster.
149
-
150
- ## Features in Development
151
-
152
- - **Streaming UI**: Currently working on implementing streaming responses for better user experience
153
- - **Bug Fixes**: Actively addressing issues - please report any bugs you encounter!
154
-
155
- _Note: While the tool is fully functional, we're focusing on stability and core features before optimizing for speed._
156
-
157
- ## Safety First
158
-
159
- ⚠️ **Important**: TunaCode can modify your codebase. Always:
160
-
161
- - Use Git branches before making changes
162
- - Review file modifications before confirming
163
- - Keep backups of important work
164
-
165
- ## Documentation
166
-
167
- - [**Features**](docs/FEATURES.md) - All features, tools, and commands
168
- - [**Advanced Configuration**](docs/ADVANCED-CONFIG.md) - Provider setup, MCP, customization
169
- - [**Architecture**](docs/ARCHITECTURE.md) - Source code organization and design
170
- - [**Development**](docs/DEVELOPMENT.md) - Contributing and development setup
171
- - [**Troubleshooting**](docs/TROUBLESHOOTING.md) - Common issues and solutions
172
-
173
- ## Links
174
-
175
- - [PyPI Package](https://pypi.org/project/tunacode-cli/)
176
- - [GitHub Repository](https://github.com/alchemiststudiosDOTai/tunacode)
177
- - [Report Issues](https://github.com/alchemiststudiosDOTai/tunacode/issues)
178
-
179
- ---
180
-
181
- MIT License - see [LICENSE](LICENSE) file
182
-
183
- hello from tuna world
184
-
185
- hello world
186
-
187
- ## Getting Started
188
-
189
- ### Prerequisites
190
-
191
- Before you begin, ensure you have the following installed:
192
-
193
- - Python 3.10 or higher
194
- - Git
195
-
196
- ### Installation
197
-
198
- To install TunaCode, you can use one of the following methods:
199
-
200
- ```bash
201
- # Option 1: One-line install (Linux/macOS)
202
- wget -qO- https://raw.githubusercontent.com/alchemiststudiosDOTai/tunacode/master/scripts/install_linux.sh | bash
203
-
204
- # Option 2: pip install
205
- pip install tunacode-cli
206
- ```
207
-
208
- ### Development Installation
209
-
210
- For developers who want to contribute to TunaCode:
211
-
212
- ```bash
213
- # Clone the repository
214
- git clone https://github.com/alchemiststudiosDOTai/tunacode.git
215
- cd tunacode
216
-
217
- # Quick setup (recommended)
218
- ./scripts/setup_dev_env.sh
219
-
220
- # Or manual setup
221
- python3 -m venv venv
222
- source venv/bin/activate # On Windows: venv\Scripts\activate
223
- pip install -e ".[dev]"
224
-
225
- # Verify installation
226
- python -m tunacode --version
227
- ```
228
-
229
- See [Development Guide](docs/DEVELOPMENT.md) for detailed instructions.
230
-
231
- ### Configuration
232
-
233
- Choose your AI provider and set your API key:
234
-
235
- ```bash
236
- # OpenAI
237
- tunacode --model "openai:gpt-4o" --key "sk-your-openai-key"
238
-
239
- # Anthropic Claude
240
- tunacode --model "anthropic:claude-3.5-sonnet" --key "sk-ant-your-anthropic-key"
241
-
242
- # OpenRouter (100+ models)
243
- tunacode --model "openrouter:openai/gpt-4o" --key "sk-or-your-openrouter-key"
244
- ```
245
-
246
- Your config is saved to `~/.config/tunacode.json` (edit directly with `nvim ~/.config/tunacode.json`)
247
-
248
- ### Recommended Models
249
-
250
- Based on extensive testing, these models provide the best performance:
251
-
252
- - `google/gemini-2.5-pro` - Excellent for complex reasoning
253
- - `openai/gpt-4.1` - Strong general-purpose model
254
- - `deepseek/deepseek-r1-0528` - Great for code generation
255
- - `openai/gpt-4.1-mini` - Fast and cost-effective
256
- - `anthropic/claude-4-sonnet-20250522` - Superior context handling
257
-
258
- _Note: Formal evaluations coming soon. Any model can work, but these have shown the best results in practice._
259
-
260
- ## Usage
261
-
262
- ### Starting TunaCode
263
-
264
- ```bash
265
- tunacode
266
- ```
267
-
268
- ### Basic Commands
269
-
270
- | Command | Description |
271
- | ------------------------ | ---------------------- |
272
- | `/help` | Show all commands |
273
- | `/model <provider:name>` | Switch model |
274
- | `/clear` | Clear message history |
275
- | `/compact` | Summarize conversation |
276
- | `/branch <name>` | Create Git branch |
277
- | `/yolo` | Skip confirmations |
278
- | `!<command>` | Run shell command |
279
- | `exit` | Exit TunaCode |
280
-
281
- ## Performance
282
-
283
- TunaCode leverages parallel execution for read-only operations, achieving **3x faster** file operations:
284
-
285
- ![Parallel Execution Performance](docs/assets/parrelel_work_3x.png)
286
-
287
- Multiple file reads, directory listings, and searches execute concurrently using async I/O, making code exploration significantly faster.
288
-
289
- ## Features in Development
290
-
291
- - **Streaming UI**: Currently working on implementing streaming responses for better user experience
292
- - **Bug Fixes**: Actively addressing issues - please report any bugs you encounter!
293
-
294
- _Note: While the tool is fully functional, we're focusing on stability and core features before optimizing for speed._
295
-
296
- ## Safety First
297
-
298
- ⚠️ **Important**: TunaCode can modify your codebase. Always:
299
-
300
- - Use Git branches before making changes
301
- - Review file modifications before confirming
302
- - Keep backups of important work
303
-
304
- ## Documentation
305
-
306
- - [**Features**](docs/FEATURES.md) - All features, tools, and commands
307
- - [**Advanced Configuration**](docs/ADVANCED-CONFIG.md) - Provider setup, MCP, customization
308
- - [**Architecture**](docs/ARCHITECTURE.md) - Source code organization and design
309
- - [**Development**](docs/DEVELOPMENT.md) - Contributing and development setup
310
- - [**Troubleshooting**](docs/TROUBLESHOOTING.md) - Common issues and solutions
311
-
312
- ## Links
313
-
314
- - [PyPI Package](https://pypi.org/project/tunacode-cli/)
315
- - [GitHub Repository](https://github.com/alchemiststudiosDOTai/tunacode)
316
- - [Report Issues](https://github.com/alchemiststudiosDOTai/tunacode/issues)
317
-
318
- ---
319
-
320
- MIT License - see [LICENSE](LICENSE) file
321
- # Test
322
- # Test
@@ -1,126 +0,0 @@
1
- tunacode/__init__.py,sha256=yUul8igNYMfUrHnYfioIGAqvrH8b5BKiO_pt1wVnmd0,119
2
- tunacode/constants.py,sha256=nNS_4fOgxWjzUxnCm-FBXgfVRifwFytkt7yICn7eL1I,5968
3
- tunacode/context.py,sha256=YtfRjUiqsSkk2k9Nn_pjb_m-AXyh6XcOBOJWtFI0wVw,2405
4
- tunacode/exceptions.py,sha256=oDO1SVKOgjcKIylwqdbqh_g5my4roU5mB9Nv4n_Vb0s,3877
5
- tunacode/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- tunacode/setup.py,sha256=a5S-uGkVYoBTvH9nsqMBgAFoH4CILOgfKvgS30qGnoU,1978
7
- tunacode/types.py,sha256=bCJ0mq1iQKa42fhBN5Pimkx0FV0f2J3-qRzbMzFhmBw,8499
8
- tunacode/cli/__init__.py,sha256=zgs0UbAck8hfvhYsWhWOfBe5oK09ug2De1r4RuQZREA,55
9
- tunacode/cli/main.py,sha256=4MF4nGEU-CB83ckIl85AY-015EeUJHrE_UdbuSa9wCU,2968
10
- tunacode/cli/repl.py,sha256=GMEvDW8LP1iM-bwOY83BviYk0fMngDJiZiI3f28CHwo,16327
11
- tunacode/cli/commands/__init__.py,sha256=7rPwGkdYbPUgf__cPVX9oQUJOPQ18MdxDT_I64crdak,1740
12
- tunacode/cli/commands/base.py,sha256=Ge_lNQA-GDfcb1Ap1oznCH3UrifBiHH3bA9DNL-tCDw,2519
13
- tunacode/cli/commands/registry.py,sha256=Xmfb4qRZ1wvT-3OggGsuDxpXlCykuhOkSBberysj1SE,9345
14
- tunacode/cli/commands/template_shortcut.py,sha256=ApYTPkDVBRaLxa7rWaPrsGcJdkR7eg09k18KyTjYg_E,3447
15
- tunacode/cli/commands/implementations/__init__.py,sha256=DHjQm1f14OV1go0ZyqacFa3yfnGWH7LZFbZVVQZ5Iw0,1011
16
- tunacode/cli/commands/implementations/conversation.py,sha256=ZijCNaRi1p5v1Q-IaVHtU2_BripSW3JCVKTtqFkOUjg,4676
17
- tunacode/cli/commands/implementations/debug.py,sha256=ornvceGF4GbJd2OJXnnT9i9KpHBAMJUYNs9wNhzViGM,6764
18
- tunacode/cli/commands/implementations/development.py,sha256=I8jHgYY3VgjTU8its0D0ysruuVqKbNTBur0JjPIUIZA,2844
19
- tunacode/cli/commands/implementations/model.py,sha256=uthx6IX9KwgwywNTDklkJpqCbaTX9h1_p-eVmqL73WQ,2245
20
- tunacode/cli/commands/implementations/system.py,sha256=2cGw5iCJO3aNhXTFF28CgAIyLgslvHmpfyL2ZHVB6oQ,7903
21
- tunacode/cli/commands/implementations/template.py,sha256=YeFOjbKKfPswPCHPvlDUwXvg6J0MesyAyVsujiIgPbU,5482
22
- tunacode/cli/commands/implementations/todo.py,sha256=Dtz5bgcuK2VXGPWEBBZQgnWUMYkRXNzTGf_qkVPLF2U,8125
23
- tunacode/cli/repl_components/__init__.py,sha256=5ZjPJ3yUvZ5x6Vg9EYJ03-tdxfEEdmfradCmwSlVY3E,334
24
- tunacode/cli/repl_components/command_parser.py,sha256=SuDRP-nt8Sq5klI4-tXkllN_4nVzji5VJ-dQvbxDmDw,880
25
- tunacode/cli/repl_components/error_recovery.py,sha256=yPoWXzuMi6B_Pwlm1wnFIJV55lJEOChvHGDca4XtoVI,3064
26
- tunacode/cli/repl_components/output_display.py,sha256=SGhP7Hc1ymfZf-AvrkELgdJCZ3UVEzTx2Y6W737zdoY,816
27
- tunacode/cli/repl_components/tool_executor.py,sha256=p5oSpoO0qkiKr9fsgIQVSXCv6ZiSWk8QtPb_x7IpKhE,3147
28
- tunacode/configuration/__init__.py,sha256=MbVXy8bGu0yKehzgdgZ_mfWlYGvIdb1dY2Ly75nfuPE,17
29
- tunacode/configuration/defaults.py,sha256=5TUeSqMTeA7kW7gz9hND_H4s9Key0_khPvc6mNFMlZc,838
30
- tunacode/configuration/models.py,sha256=buH8ZquvcYI3OQBDIZeJ08cu00rSCeNABtUwl3VQS0E,4103
31
- tunacode/configuration/settings.py,sha256=9wtIWBlLhW_ZBlLx-GA4XDfVZyGj2Gs6Zk49vk-nHq0,1047
32
- tunacode/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
- tunacode/core/code_index.py,sha256=jgAx3lSWP_DwnyiP5Jkm1YvX4JJyI4teMzlNrJSpEOA,15661
34
- tunacode/core/state.py,sha256=RGBTOHTpe4z42MbIjRKhGNz9MIGyY0QbpdDJMldm53o,6284
35
- tunacode/core/tool_handler.py,sha256=FqA3w8M_fhpyOQKJIgl_8MAhSFVEguufbZH6gm_b7NI,2932
36
- tunacode/core/agents/__init__.py,sha256=UUJiPYb91arwziSpjd7vIk7XNGA_4HQbsOIbskSqevA,149
37
- tunacode/core/agents/main.py,sha256=myz_K2lxqYH8pQdbw8n8bai8F40Mqfj-kTLagPR1dP4,18253
38
- tunacode/core/agents/utils.py,sha256=dJsdbvWs48vxQpwAtUjJLMj7_huv12Mx3E2CEgwoK94,14467
39
- tunacode/core/agents/agent_components/__init__.py,sha256=CL4XH47T6v_iYy7xCPYjyiEFNOFnkcKwbTuKw6IjKTs,1474
40
- tunacode/core/agents/agent_components/agent_config.py,sha256=6m2RBZ7Y-0p_KFBVmfPW4ZGLGzTAw3YFQ4i94qsqEpM,4373
41
- tunacode/core/agents/agent_components/agent_helpers.py,sha256=G3zF5GPRzBhA3yOcsXf8gar892ackGDcwFk9wM6FA9s,8119
42
- tunacode/core/agents/agent_components/json_tool_parser.py,sha256=HuyNT0rs-ppx_gLAI2e0XMVGbR_F0WXZfP3sx38VoMg,3447
43
- tunacode/core/agents/agent_components/message_handler.py,sha256=KJGOtb9VhumgZpxxwO45HrKLhU9_MwuoWRsSQwJviNU,3704
44
- tunacode/core/agents/agent_components/node_processor.py,sha256=FmjIEJWkqc0uzRfgTINv8uJwKG7-w00mV5lgOS4Jcd8,20426
45
- tunacode/core/agents/agent_components/response_state.py,sha256=_C2loLeyZHMFHwjGny4h0dI02UoFJcJAVaabkh9H9JQ,343
46
- tunacode/core/agents/agent_components/result_wrapper.py,sha256=9CFK0wpsfZx2WT4PBHfkSv22GxL1gAQuUYVMlmYtCJU,1761
47
- tunacode/core/agents/agent_components/task_completion.py,sha256=BSnjNEFbxlzgzcXdjdTVGeCr1RpCiAaEp_D7f5FXa5Q,819
48
- tunacode/core/agents/agent_components/tool_buffer.py,sha256=09FNtC6zTjiJOL_2CY0b7KDgwdNayGPV6jbENKH6Unc,766
49
- tunacode/core/agents/agent_components/tool_executor.py,sha256=LlzDwgSLLawwPZQqJ4vfLf-16nhwIiuN8zm8iCeBf1Y,1849
50
- tunacode/core/agents/agent_components/truncation_checker.py,sha256=XbJ3wwtdC4NhgIMIvFR0z_cfNnYMkiYAZo9zGDBPU8Y,2685
51
- tunacode/core/background/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
- tunacode/core/background/manager.py,sha256=AxNcuuE7T2pqeI2lLIGJgaS_jEw60YzBfZY9EOY54fc,1160
53
- tunacode/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- tunacode/core/logging/__init__.py,sha256=vykmcZPOo_FhIPJvPuH0gbUqprpGp9Sbrj13X0iOil4,709
55
- tunacode/core/logging/config.py,sha256=bhJ6KYrEliKC5BehXKXZHHPBJUBX0g5O3uxbr8qUKQ0,2515
56
- tunacode/core/logging/formatters.py,sha256=uWx-M0jSvsAVo5JVdCK1VIVawXNONjJ2CvMwPuuUTg8,1236
57
- tunacode/core/logging/handlers.py,sha256=lkLczpcI6kSammSdjrCccosGMrRdcAA_3UmuTOiPnxg,3788
58
- tunacode/core/logging/logger.py,sha256=9RjRuX0GoUojRJ8WnJGQPFdXiluiJMCoFmvc8xEioB8,142
59
- tunacode/core/setup/__init__.py,sha256=seoWYpRonptxNyApapS-yGz4o3jTj8vLsRPCTUO4siM,439
60
- tunacode/core/setup/agent_setup.py,sha256=tpOIW85C6o1m8pwAZQBIMKxKIyBUOpHHn4JJmDBFH3Q,1403
61
- tunacode/core/setup/base.py,sha256=FMjBQQS_q3KOxHqfg7NJGmKq-1nxC40htiPZprzTu7I,970
62
- tunacode/core/setup/config_setup.py,sha256=G6ByWXQNc8UszwnYfFKHsufw4ja8yLCU769y_cq5FZ8,14838
63
- tunacode/core/setup/coordinator.py,sha256=oVTN2xIeJERXitVJpkIk9tDGLs1D1bxIRmaogJwZJFI,2049
64
- tunacode/core/setup/environment_setup.py,sha256=n3IrObKEynHZSwtUJ1FddMg2C4sHz7ca42awemImV8s,2225
65
- tunacode/core/setup/git_safety_setup.py,sha256=uBvcvw3THfduGUW51rprFt13Qw3HoekWe_2jTcpK3no,7187
66
- tunacode/core/setup/template_setup.py,sha256=0lDGhNVCvGN7ykqHnl3pj4CONH3I2PvMzkmIZibfSoc,2640
67
- tunacode/core/token_usage/api_response_parser.py,sha256=plLltHg4zGVzxjv3MFj45bbd-NOJeT_v3P0Ki4zlvn4,1831
68
- tunacode/core/token_usage/cost_calculator.py,sha256=RjO-O0JENBuGOrWP7QgBZlZxeXC-PAIr8tj_9p_BxOU,2058
69
- tunacode/core/token_usage/usage_tracker.py,sha256=G6lt9VXnS3JcXsiPTwuS3v1YptI_7gfV78f08jX22yU,5932
70
- tunacode/prompts/system.md,sha256=jrPtKFLu2CD6WpNNFgN1nc0p3mec4En9VYmpRQxyZi8,24080
71
- tunacode/services/__init__.py,sha256=w_E8QK6RnvKSvU866eDe8BCRV26rAm4d3R-Yg06OWCU,19
72
- tunacode/services/mcp.py,sha256=R48X73KQjQ9vwhBrtbWHSBl-4K99QXmbIhh5J_1Gezo,3046
73
- tunacode/templates/__init__.py,sha256=ssEOPrPjyCywtKI-QFcoqcWhMjlfI5TbI8Ip0_wyqGM,241
74
- tunacode/templates/loader.py,sha256=6_Dk4jX47_GKUAWxlHG2Mzkl9lkXFUOiAdlcJqb6rBA,6765
75
- tunacode/tools/__init__.py,sha256=ECBuUWWF1JjHW42CCceaPKgVTQyuljbz3RlhuA2fe2s,314
76
- tunacode/tools/base.py,sha256=DhlanZZZxU2JJaBOwwyGFKMUcoCWR_CzLuwVeSXC0Go,7297
77
- tunacode/tools/bash.py,sha256=mgZqugfDFevZ4BETuUv90pzXvtq7qKGUGFiuDxzmytk,8766
78
- tunacode/tools/glob.py,sha256=mQwVGC8dfvzwzUOeTikfnHhExnLcYnGQwDoHOWrt_fE,10342
79
- tunacode/tools/grep.py,sha256=SfpLazOMbizganPO16w7v6iHRcUn0cD6-6lyUwrl-3U,17834
80
- tunacode/tools/list_dir.py,sha256=1kNqzYCNlcA5rqXIEVqcjQy6QxlLZLj5AG6YIECfwio,7217
81
- tunacode/tools/read_file.py,sha256=z2omev9xzj4-0GG9mRssD13rj-Aa1c-pszFi2Z7Hxvk,3268
82
- tunacode/tools/read_file_async_poc.py,sha256=2v2ckLQlwahgPGWGdE2c5Es37B35Y7zWdseZwT46E1E,6453
83
- tunacode/tools/run_command.py,sha256=7UvXjFQI1Av4vceXx48MbQCTrsFNj4PlygTAAhNDYIA,4376
84
- tunacode/tools/todo.py,sha256=kHYtipmPBxBURrBMbyH92yjOE6cKvrQuq9w-gSrOaLI,13179
85
- tunacode/tools/update_file.py,sha256=bW1MhTzRjBDjJzqQ6A1yCVEbkr1oIqtEC8uqcg_rfY4,3957
86
- tunacode/tools/write_file.py,sha256=prL6u8XOi9ZyPU-YNlG9YMLbSLrDJXDRuDX73ncXh-k,2699
87
- tunacode/tools/grep_components/__init__.py,sha256=qy3kwzxOiE6ydlRzpCC39TaIp5BJc5X_bRfXukiu4eM,266
88
- tunacode/tools/grep_components/file_filter.py,sha256=-XYlmVLOipjuAGdLhHDApLMKZJ1qtlzRUXvOvHc7VYU,3152
89
- tunacode/tools/grep_components/pattern_matcher.py,sha256=ZvEUqBZ6UWf9wZzb1DIRGSTFQuJCBV0GJG3DVG4r4Ss,5177
90
- tunacode/tools/grep_components/result_formatter.py,sha256=aa0tJitbG9IalWYWKG0nInRmZnp8HtBREOeMpAireVg,1641
91
- tunacode/tools/grep_components/search_result.py,sha256=xzb_htSANuPIPVWViPAqIMsCCWVA8loxWdaZOA8RqMs,869
92
- tunacode/ui/__init__.py,sha256=aRNE2pS50nFAX6y--rSGMNYwhz905g14gRd6g4BolYU,13
93
- tunacode/ui/completers.py,sha256=18f1Im5210-b-qNKyCoOMnSjW99FXNoF0DtgRvEWTm0,4901
94
- tunacode/ui/console.py,sha256=HfE30vUy8ebXCobP7psFNJc17-dvH6APChg2tbi7aTw,2632
95
- tunacode/ui/constants.py,sha256=A76B_KpM8jCuBYRg4cPmhi8_j6LLyWttO7_jjv47r3w,421
96
- tunacode/ui/decorators.py,sha256=jJDNztO8MyX_IG1nqXAL8-sQUFjaAzBnc5BsM3ioX24,1955
97
- tunacode/ui/input.py,sha256=NCZlj5qzNPy0gsSeGKeDNdAOMKZVGph8Z-UBXhX-Sbk,3020
98
- tunacode/ui/keybindings.py,sha256=YUyi6I0xXs9mNjT0qnKh_SXsfSYb6eNUD44pV_q5TVI,1685
99
- tunacode/ui/lexers.py,sha256=tmg4ic1enyTRLzanN5QPP7D_0n12YjX_8ZhsffzhXA4,1340
100
- tunacode/ui/logging_compat.py,sha256=5v6lcjVaG1CxdY1Zm9FAGr9H7Sy-tP6ihGfhP-5YvAY,1406
101
- tunacode/ui/output.py,sha256=C2LHKAZxBySsIfk9saJ-jZrsZBE7f3WeP-RHpn5TChQ,6808
102
- tunacode/ui/panels.py,sha256=wccIQ-exLs5oBedFZRU1lsY69fRqf-em_5gTTRM0Luc,11527
103
- tunacode/ui/prompt_manager.py,sha256=489r-WtuR3gdaugEr1lSV7SvtmXF2IlhDQckvzjYG2c,4676
104
- tunacode/ui/tool_descriptions.py,sha256=vk61JPIXy7gHNfJ--77maXgK6WwNwxqY47QYsw_a2uw,4126
105
- tunacode/ui/tool_ui.py,sha256=bLydo5Y42b2gbUMP2kM6m_stIkj4Q1wbwaqO-1P6O1g,7198
106
- tunacode/ui/utils.py,sha256=yvoCTz8AOdRfV0XIqUX3sgg88g_wntV9yhnQP6WzAVs,114
107
- tunacode/ui/validators.py,sha256=MMIMT1I2v0l2jIy-gxX_4GSApvUTi8XWIOACr_dmoBA,758
108
- tunacode/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
- tunacode/utils/bm25.py,sha256=fd59YQXovC8rXwZrdoqIAfFrLn_WCVjzCh0pkU22APE,1966
110
- tunacode/utils/diff_utils.py,sha256=V9QqQ0q4MfabVTnWptF3IXDp3estnfOKcJtDe_Sj14I,2372
111
- tunacode/utils/file_utils.py,sha256=84g-MQRzmBI2aG_CuXsDl2OhvvWoSL7YdL5Kz_UKSwk,979
112
- tunacode/utils/import_cache.py,sha256=q_xjJbtju05YbFopLDSkIo1hOtCx3DOTl3GQE5FFDgs,295
113
- tunacode/utils/message_utils.py,sha256=qb_EgPRq5a4pbQNcCLhmfcQVQ6vjekjsfgKrhIiszGQ,610
114
- tunacode/utils/retry.py,sha256=AHdUzY6m-mwlT4OPXdtWWMAafL_NeS7JAMORGyM8c5k,4931
115
- tunacode/utils/ripgrep.py,sha256=AXUs2FFt0A7KBV996deS8wreIlUzKOlAHJmwrcAr4No,583
116
- tunacode/utils/security.py,sha256=i3eGKg4o-qY2S_ObTlEaHO93q14iBfiPXR5O7srHn58,6579
117
- tunacode/utils/system.py,sha256=J8KqJ4ZqQrNSnM5rrJxPeMk9z2xQQp6dWtI1SKBY1-0,11121
118
- tunacode/utils/text_utils.py,sha256=HAwlT4QMy41hr53cDbbNeNo05MI461TpI9b_xdIv8EY,7288
119
- tunacode/utils/token_counter.py,sha256=dmFuqVz4ywGFdLfAi5Mg9bAGf8v87Ek-mHU-R3fsYjI,2711
120
- tunacode/utils/user_configuration.py,sha256=Ilz8dpGVJDBE2iLWHAPT0xR8D51VRKV3kIbsAz8Bboc,3275
121
- tunacode_cli-0.0.55.dist-info/licenses/LICENSE,sha256=Btzdu2kIoMbdSp6OyCLupB1aRgpTCJ_szMimgEnpkkE,1056
122
- tunacode_cli-0.0.55.dist-info/METADATA,sha256=nB8M3oUVfbFFUBxldQFl86PjnnuxhhL6KGeal1iE88g,10193
123
- tunacode_cli-0.0.55.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
124
- tunacode_cli-0.0.55.dist-info/entry_points.txt,sha256=hbkytikj4dGu6rizPuAd_DGUPBGF191RTnhr9wdhORY,51
125
- tunacode_cli-0.0.55.dist-info/top_level.txt,sha256=lKy2P6BWNi5XSA4DHFvyjQ14V26lDZctwdmhEJrxQbU,9
126
- tunacode_cli-0.0.55.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- tunacode