tunacode-cli 0.0.16__py3-none-any.whl → 0.0.17__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.

tunacode/constants.py CHANGED
@@ -7,7 +7,7 @@ Centralizes all magic strings, UI text, error messages, and application constant
7
7
 
8
8
  # Application info
9
9
  APP_NAME = "TunaCode"
10
- APP_VERSION = "0.0.16"
10
+ APP_VERSION = "0.0.17"
11
11
 
12
12
  # File patterns
13
13
  GUIDE_FILE_PATTERN = "{name}.md"
tunacode/ui/console.py CHANGED
@@ -9,8 +9,8 @@ from rich.markdown import Markdown
9
9
  # Import and re-export all functions from specialized modules
10
10
  from .input import formatted_text, input, multiline_input
11
11
  from .keybindings import create_key_bindings
12
- from .output import (banner, clear, info, line, muted, print, spinner, success, sync_print,
13
- update_available, usage, version, warning)
12
+ from .output import (banner, clear, info, line, muted, print, show_update_message, spinner, success,
13
+ sync_print, update_available, usage, version, warning)
14
14
  from .panels import (agent, dump_messages, error, help, models, panel, sync_panel,
15
15
  sync_tool_confirm, tool_confirm)
16
16
  from .prompt_manager import PromptConfig, PromptManager
@@ -46,6 +46,7 @@ __all__ = [
46
46
  "line",
47
47
  "muted",
48
48
  "print",
49
+ "show_update_message",
49
50
  "spinner",
50
51
  "success",
51
52
  "sync_print",
tunacode/ui/output.py CHANGED
@@ -89,6 +89,11 @@ async def update_available(latest_version: str) -> None:
89
89
  await muted(MSG_UPDATE_INSTRUCTION)
90
90
 
91
91
 
92
+ async def show_update_message(latest_version: str) -> None:
93
+ """Display update available message (alias for update_available)."""
94
+ await update_available(latest_version)
95
+
96
+
92
97
  async def spinner(show: bool = True, spinner_obj=None, state_manager: StateManager = None):
93
98
  """Manage a spinner display."""
94
99
  icon = SPINNER_TYPE
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tunacode-cli
3
- Version: 0.0.16
3
+ Version: 0.0.17
4
4
  Summary: Your agentic CLI developer.
5
5
  Author-email: larock22 <noreply@github.com>
6
6
  License-Expression: MIT
@@ -475,3 +475,16 @@ MIT License - see [LICENSE](LICENSE) file for details.
475
475
  ## Acknowledgments
476
476
 
477
477
  TunaCode is a fork of [sidekick-cli](https://github.com/geekforbrains/sidekick-cli). Special thanks to the sidekick-cli team for creating the foundation that made TunaCode possible.
478
+
479
+ ### Key Differences from sidekick-cli
480
+
481
+ While TunaCode builds on the foundation of sidekick-cli, we've made several architectural changes for our workflow:
482
+
483
+ - **JSON Tool Parsing Fallback**: Added fallback parsing for when API providers fail with structured tool calling
484
+ - **Parallel Search Tools**: New `bash` and `grep` tools with parallel execution for codebase navigation
485
+ - **ReAct Reasoning**: Implemented ReAct (Reasoning + Acting) patterns with configurable iteration limits
486
+ - **Dynamic Configuration**: Added `/refresh` command and modified configuration management
487
+ - **Safety Changes**: Removed automatic git commits and `/undo` command - requires explicit git usage
488
+ - **Error Recovery**: Multiple fallback mechanisms and orphaned tool call recovery
489
+ - **Tool System Rewrite**: Complete overhaul of internal tools with atomic operations and different confirmation UIs
490
+ - **Debug Commands**: Added `/parsetools`, `/thoughts`, `/iterations` for debugging
@@ -1,5 +1,5 @@
1
1
  tunacode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- tunacode/constants.py,sha256=VSgtLvaGhxIaPDvHx1nVwHxig1K9_R2uSodDt05bJNA,3807
2
+ tunacode/constants.py,sha256=ofR9eETleRVL8lUZMxJXxp7sKXsqbVVpcwqREzA0t3I,3807
3
3
  tunacode/context.py,sha256=0ttsxxLAyD4pSoxw7S-pyzor0JUkhOFZh96aAf4Kqsg,2634
4
4
  tunacode/exceptions.py,sha256=RFUH8wOsWEvSPGIYM2exr4t47YkEyZt4Fr-DfTo6_JY,2647
5
5
  tunacode/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -40,13 +40,13 @@ tunacode/tools/update_file.py,sha256=-kla9849xYPD3GZCBwGeH4e2o_OMGT6A_0zvcPUoso8
40
40
  tunacode/tools/write_file.py,sha256=prL6u8XOi9ZyPU-YNlG9YMLbSLrDJXDRuDX73ncXh-k,2699
41
41
  tunacode/ui/__init__.py,sha256=aRNE2pS50nFAX6y--rSGMNYwhz905g14gRd6g4BolYU,13
42
42
  tunacode/ui/completers.py,sha256=E3dUe3jHsrIwqWWfWQGCHWnnpo6NJAZXBhlzY3yDKPw,5051
43
- tunacode/ui/console.py,sha256=2Su2y9o5zQVmOP-V1SMhTqMjqsiAMXXY-iB9QNHkvxM,1890
43
+ tunacode/ui/console.py,sha256=mu3pvMXOSnwKF6vqYt_RO6d7-UGOKAZUKW0g3QSQhcY,1938
44
44
  tunacode/ui/constants.py,sha256=A76B_KpM8jCuBYRg4cPmhi8_j6LLyWttO7_jjv47r3w,421
45
45
  tunacode/ui/decorators.py,sha256=e2KM-_pI5EKHa2M045IjUe4rPkTboxaKHXJT0K3461g,1914
46
46
  tunacode/ui/input.py,sha256=5jE7k97vEMuEDS4L2nn7DQe_0R5_GJbf-MzHQxXV1GM,2962
47
47
  tunacode/ui/keybindings.py,sha256=SJ4Lbkh2Mi4i9WeTkIizqZXfgUJ89BM2dksK7ne_5IE,701
48
48
  tunacode/ui/lexers.py,sha256=3qFwogyS_3zlS0NDxbc4e_sPvNHylNdCVMjPIIp85go,1507
49
- tunacode/ui/output.py,sha256=ms9pS6noo7i5GAw36fSEwLiGTDH22Fcu3FnwwqWETl8,4259
49
+ tunacode/ui/output.py,sha256=j0UGx44QiIl13S8vRqCBRQ3Obu0hTsHvPHotkrWtvbM,4437
50
50
  tunacode/ui/panels.py,sha256=iDnOho-_ySMQummUEotAnpBqOez6_LFN8zhWAh56f2Y,5952
51
51
  tunacode/ui/prompt_manager.py,sha256=2HBaRQWMOhsk_CmzcwxPN5UMfUPxhf32ZR8fP3KMwBc,4010
52
52
  tunacode/ui/tool_ui.py,sha256=S5-k1HwRlSqiQ8shGQ_QYGXQbuzb6Pg7u3CTqZwffdQ,6533
@@ -59,9 +59,9 @@ tunacode/utils/ripgrep.py,sha256=AXUs2FFt0A7KBV996deS8wreIlUzKOlAHJmwrcAr4No,583
59
59
  tunacode/utils/system.py,sha256=FSoibTIH0eybs4oNzbYyufIiV6gb77QaeY2yGqW39AY,11381
60
60
  tunacode/utils/text_utils.py,sha256=B9M1cuLTm_SSsr15WNHF6j7WdLWPvWzKZV0Lvfgdbjg,2458
61
61
  tunacode/utils/user_configuration.py,sha256=uFrpSRTUf0CijZjw1rOp1sovqy1uyr0UNcn85S6jvdk,1790
62
- tunacode_cli-0.0.16.dist-info/licenses/LICENSE,sha256=Btzdu2kIoMbdSp6OyCLupB1aRgpTCJ_szMimgEnpkkE,1056
63
- tunacode_cli-0.0.16.dist-info/METADATA,sha256=FAJO_sdRmHFOoXjxnWScQk9ueOUP1cFgtv3oopZ7JSQ,14633
64
- tunacode_cli-0.0.16.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
65
- tunacode_cli-0.0.16.dist-info/entry_points.txt,sha256=hbkytikj4dGu6rizPuAd_DGUPBGF191RTnhr9wdhORY,51
66
- tunacode_cli-0.0.16.dist-info/top_level.txt,sha256=lKy2P6BWNi5XSA4DHFvyjQ14V26lDZctwdmhEJrxQbU,9
67
- tunacode_cli-0.0.16.dist-info/RECORD,,
62
+ tunacode_cli-0.0.17.dist-info/licenses/LICENSE,sha256=Btzdu2kIoMbdSp6OyCLupB1aRgpTCJ_szMimgEnpkkE,1056
63
+ tunacode_cli-0.0.17.dist-info/METADATA,sha256=CH8pSHa_2bXQn86wJdGg5bnuXofQjnQqAXL0v1RE-1I,15593
64
+ tunacode_cli-0.0.17.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
65
+ tunacode_cli-0.0.17.dist-info/entry_points.txt,sha256=hbkytikj4dGu6rizPuAd_DGUPBGF191RTnhr9wdhORY,51
66
+ tunacode_cli-0.0.17.dist-info/top_level.txt,sha256=lKy2P6BWNi5XSA4DHFvyjQ14V26lDZctwdmhEJrxQbU,9
67
+ tunacode_cli-0.0.17.dist-info/RECORD,,