tunacode-cli 0.0.67__tar.gz → 0.0.68__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.

Potentially problematic release.


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

Files changed (443) hide show
  1. tunacode_cli-0.0.68/.claude/scratchpad/archived/default_Fix_wizard_UI_-_branch_safety_interference_2025-08-20_222738_scratchpad.md +9 -0
  2. tunacode_cli-0.0.68/.claude/scratchpad/archived/default_slash_command_system_implementation_2025-08-14_034024_scratchpad.md +30 -0
  3. tunacode_cli-0.0.68/.claude/scratchpad/shared/done_tasks/default_Fix_wizard_UI_-_branch_safety_interference_2025-08-20_222738_scratchpad.md +9 -0
  4. tunacode_cli-0.0.68/CHANGELOG.md +35 -0
  5. tunacode_cli-0.0.68/PKG-INFO +192 -0
  6. tunacode_cli-0.0.68/README.md +144 -0
  7. tunacode_cli-0.0.68/TUNACODE.md +73 -0
  8. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/documentation/README.md +13 -5
  9. tunacode_cli-0.0.68/documentation/development/command-system-architecture.md +259 -0
  10. tunacode_cli-0.0.68/documentation/development/creating-custom-commands.md +399 -0
  11. tunacode_cli-0.0.68/documentation/user/commands.md +113 -0
  12. tunacode_cli-0.0.68/documentation/user/getting-started.md +103 -0
  13. tunacode_cli-0.0.68/documentation/user/tools.md +28 -0
  14. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/pyproject.toml +2 -2
  15. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/__init__.py +2 -0
  16. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/__init__.py +2 -0
  17. tunacode_cli-0.0.68/src/tunacode/cli/commands/implementations/command_reload.py +48 -0
  18. tunacode_cli-0.0.68/src/tunacode/cli/commands/implementations/quickstart.py +43 -0
  19. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/registry.py +131 -1
  20. tunacode_cli-0.0.68/src/tunacode/cli/commands/slash/__init__.py +32 -0
  21. tunacode_cli-0.0.68/src/tunacode/cli/commands/slash/command.py +157 -0
  22. tunacode_cli-0.0.68/src/tunacode/cli/commands/slash/loader.py +134 -0
  23. tunacode_cli-0.0.68/src/tunacode/cli/commands/slash/processor.py +294 -0
  24. tunacode_cli-0.0.68/src/tunacode/cli/commands/slash/types.py +93 -0
  25. tunacode_cli-0.0.68/src/tunacode/cli/commands/slash/validator.py +399 -0
  26. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/main.py +4 -1
  27. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/repl.py +25 -0
  28. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/configuration/defaults.py +1 -0
  29. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/constants.py +1 -1
  30. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/agent_helpers.py +14 -13
  31. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/agents/main.py +1 -1
  32. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/agents/utils.py +4 -3
  33. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/setup/config_setup.py +231 -6
  34. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/setup/coordinator.py +13 -5
  35. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/setup/git_safety_setup.py +5 -1
  36. tunacode_cli-0.0.68/src/tunacode/exceptions.py +253 -0
  37. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/setup.py +5 -2
  38. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/glob.py +9 -46
  39. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/grep.py +9 -51
  40. tunacode_cli-0.0.68/src/tunacode/tools/xml_helper.py +83 -0
  41. tunacode_cli-0.0.68/src/tunacode/tutorial/__init__.py +9 -0
  42. tunacode_cli-0.0.68/src/tunacode/tutorial/content.py +98 -0
  43. tunacode_cli-0.0.68/src/tunacode/tutorial/manager.py +182 -0
  44. tunacode_cli-0.0.68/src/tunacode/tutorial/steps.py +124 -0
  45. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/ui/output.py +1 -1
  46. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/utils/user_configuration.py +45 -0
  47. tunacode_cli-0.0.68/tests/test_onboarding_features.py +457 -0
  48. tunacode_cli-0.0.68/tests/test_slash_commands_comprehensive.py +359 -0
  49. tunacode_cli-0.0.68/tests/test_slash_commands_functional.py +457 -0
  50. tunacode_cli-0.0.68/tests/test_slash_commands_integration.py +349 -0
  51. tunacode_cli-0.0.68/tests/test_slash_commands_isolated.py +270 -0
  52. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/test_tool_batching_retry.py +10 -12
  53. tunacode_cli-0.0.67/.claude/scratchpad/agents/default/scratchpad.md +0 -16
  54. tunacode_cli-0.0.67/CHANGELOG.md +0 -264
  55. tunacode_cli-0.0.67/PKG-INFO +0 -327
  56. tunacode_cli-0.0.67/README.md +0 -279
  57. tunacode_cli-0.0.67/src/tunacode/exceptions.py +0 -139
  58. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/MEMORY_ANCHOR_SPEC.md +0 -0
  59. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/NEXT_PR_RULES.md +0 -0
  60. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/README.md +0 -0
  61. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/agents/bug-context-analyzer.md +0 -0
  62. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/agents/code-synthesis-analyzer.md +0 -0
  63. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/agents/documentation-synthesis-qa.md +0 -0
  64. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/agents/expert-debugger.md +0 -0
  65. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/agents/phased-task-processor.md +0 -0
  66. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/agents/prompt-engineer.md +0 -0
  67. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/agents/rapid-code-synthesis-qa.md +0 -0
  68. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/agents/tech-docs-maintainer.md +0 -0
  69. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/anchors.json +0 -0
  70. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/commands/deploy.md +0 -0
  71. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/commands/github-issue.md +0 -0
  72. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/commands/smells.md +0 -0
  73. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/commands/work.md +0 -0
  74. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/commands/workflow.md +0 -0
  75. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/delta/2025-01-05-baseline.yml +0 -0
  76. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/delta/fix-text-alignment-layout-task3.md +0 -0
  77. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/delta/task4_ui_formatting_fix.md +0 -0
  78. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/delta/v0.0.53_to_v0.0.54.diff +0 -0
  79. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/development/always-on-display-implementation.md +0 -0
  80. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/development/cli-json-recovery-incident.md +0 -0
  81. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/development/directory-caching-optimization.md +0 -0
  82. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/development/esc-investigation/ESC_KEY_INVESTIGATION.md +0 -0
  83. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/development/esc-investigation/ESC_KEY_STREAMING_ANALYSIS.md +0 -0
  84. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/development/hatch-commands.md +0 -0
  85. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/development/phase5-prompt-injection-system.md +0 -0
  86. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/development/uv-hatch-setup.md +0 -0
  87. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/development/uv-installer-updates.md +0 -0
  88. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/metadata/components.yml +0 -0
  89. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/metadata/hotspots.txt +0 -0
  90. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/patterns/json_retry_implementation.md +0 -0
  91. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/qa/fix-agent-errors.yml +0 -0
  92. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/qa/fix-publish-script.yml +0 -0
  93. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/qa/fix-runtime-warnings.yml +0 -0
  94. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/README.md +0 -0
  95. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/active/task_json_retry_implementation_summary_2025-07-24_13-05-40.md +0 -0
  96. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/active/task_standardize_ui_formatting_patterns_2025-07-23_20-43-28.md +0 -0
  97. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/agents/default/spinner-enhancement-2025-08-07.md +0 -0
  98. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/agents/esc-investigation/scratchpad.md +0 -0
  99. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/agents/phase5-recovery/scratchpad.md +0 -0
  100. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/agents/tech-docs-maintainer/scratchpad.md +0 -0
  101. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/code-synthesis-analyzer_ESC_Double-Press_REPL_Abort_Analysis_2025-08-06_134859_scratchpad.md +0 -0
  102. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Add_Prompt_Injection_to_Remaining_Tools_-_Continuation_2025-08-13_152542_scratchpad.md +0 -0
  103. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Add_Prompt_Injection_to_Remaining_Tools_2025-08-13_152352_scratchpad.md +0 -0
  104. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_CLI_Agent_JSON_Recovery_Investigation_2025-08-12_124206_scratchpad.md +0 -0
  105. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_CLI_Agent_JSON_Recovery_Investigation_2025-08-12_124727_scratchpad.md +0 -0
  106. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Completely_remove_TUNACODE_TASK_COMPLETE_from_plan_mode_2025-08-09_091836_scratchpad.md +0 -0
  107. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Debug_ESC_key_still_not_working_in_approval_prompt_2025-08-09_033534_scratchpad.md +0 -0
  108. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Debug_persistent_KeyboardInterrupt_in_event_loop_2025-08-09_034136_scratchpad.md +0 -0
  109. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Debug_present_plan_tool_registration_and_model_capability_2025-08-09_092923_scratchpad.md +0 -0
  110. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Debug_stuck_double_escape_in_plan_approval_2025-08-09_033214_scratchpad.md +0 -0
  111. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Fix_Application.exit()_failed_error_in_ESC_keybinding_2025-08-09_075607_scratchpad.md +0 -0
  112. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Fix_ESC_double-tap_and_plan_display_issues_2025-08-09_090055_scratchpad.md +0 -0
  113. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Fix_ESC_exceptions_and_missing_present_plan_tool_2025-08-09_081700_scratchpad.md +0 -0
  114. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Fix_agent_not_calling_present_plan_tool_2025-08-09_090827_scratchpad.md +0 -0
  115. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Fix_double_escape_for_planning_mode_approval_prompt_2025-08-09_032759_scratchpad.md +0 -0
  116. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Fix_unhandled_KeyboardInterrupt_exception_in_event_loop_2025-08-09_033843_scratchpad.md +0 -0
  117. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Fixed_Thinking_dots_animation_2025-08-11_121009_scratchpad.md +0 -0
  118. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Force_agent_to_actually_call_present_plan_tool_2025-08-09_091334_scratchpad.md +0 -0
  119. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_GitHub_Directory_Review_2025-08-11_122451_scratchpad.md +0 -0
  120. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Implementing_ESC_key_double-press_for_REPL_abort_2025-08-06_124754_scratchpad.md +0 -0
  121. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_JSON_Recovery_Implementation_2025-08-12_130251_scratchpad.md +0 -0
  122. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Makefile_to_Hatch_Migration_2025-08-07_192356_scratchpad.md +0 -0
  123. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Performance_Optimization_-_Agent_Initialization_2025-08-13_160447_scratchpad.md +0 -0
  124. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Phase_3_-_Glob_Tool_Optimization_2025-08-13_142601_scratchpad.md +0 -0
  125. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Replace_entire_system_prompt_with_tool-only_instructions_2025-08-09_112839_scratchpad.md +0 -0
  126. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_TunaCode_Search_Enhancement_Implementation_2025-08-13_140905_scratchpad.md +0 -0
  127. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Update_Documentation_for_JSON_Recovery_System_2025-08-12_131127_scratchpad.md +0 -0
  128. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Update_documentation_for_always-on_display_UX_improvements_2025-08-12_154818_scratchpad.md +0 -0
  129. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/phase5-recovery_Phase_5_Recovery_Analysis_2025-08-13_145339_scratchpad.md +0 -0
  130. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/locks/code-synthesis-analyzer.lock +0 -0
  131. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/locks/default.lock +0 -0
  132. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/locks/esc-investigation.lock +0 -0
  133. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/locks/phase5-recovery.lock +0 -0
  134. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/locks/tech-docs-maintainer.lock +0 -0
  135. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/code-synthesis-analyzer_ESC_Double-Press_REPL_Abort_Analysis_2025-08-06_134859_scratchpad.md +0 -0
  136. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Add_Prompt_Injection_to_Remaining_Tools_-_Continuation_2025-08-13_152542_scratchpad.md +0 -0
  137. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Add_Prompt_Injection_to_Remaining_Tools_2025-08-13_152352_scratchpad.md +0 -0
  138. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_CLI_Agent_JSON_Recovery_Investigation_2025-08-12_124206_scratchpad.md +0 -0
  139. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_CLI_Agent_JSON_Recovery_Investigation_2025-08-12_124727_scratchpad.md +0 -0
  140. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Completely_remove_TUNACODE_TASK_COMPLETE_from_plan_mode_2025-08-09_091836_scratchpad.md +0 -0
  141. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Debug_ESC_key_still_not_working_in_approval_prompt_2025-08-09_033534_scratchpad.md +0 -0
  142. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Debug_persistent_KeyboardInterrupt_in_event_loop_2025-08-09_034136_scratchpad.md +0 -0
  143. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Debug_present_plan_tool_registration_and_model_capability_2025-08-09_092923_scratchpad.md +0 -0
  144. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Debug_stuck_double_escape_in_plan_approval_2025-08-09_033214_scratchpad.md +0 -0
  145. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Fix_Application.exit()_failed_error_in_ESC_keybinding_2025-08-09_075607_scratchpad.md +0 -0
  146. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Fix_ESC_double-tap_and_plan_display_issues_2025-08-09_090055_scratchpad.md +0 -0
  147. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Fix_ESC_exceptions_and_missing_present_plan_tool_2025-08-09_081700_scratchpad.md +0 -0
  148. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Fix_agent_not_calling_present_plan_tool_2025-08-09_090827_scratchpad.md +0 -0
  149. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Fix_double_escape_for_planning_mode_approval_prompt_2025-08-09_032759_scratchpad.md +0 -0
  150. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Fix_unhandled_KeyboardInterrupt_exception_in_event_loop_2025-08-09_033843_scratchpad.md +0 -0
  151. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Fixed_Thinking_dots_animation_2025-08-11_121009_scratchpad.md +0 -0
  152. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Force_agent_to_actually_call_present_plan_tool_2025-08-09_091334_scratchpad.md +0 -0
  153. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_GitHub_Directory_Review_2025-08-11_122451_scratchpad.md +0 -0
  154. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Implementing_ESC_key_double-press_for_REPL_abort_2025-08-06_124754_scratchpad.md +0 -0
  155. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_JSON_Recovery_Implementation_2025-08-12_130251_scratchpad.md +0 -0
  156. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Makefile_to_Hatch_Migration_2025-08-07_192356_scratchpad.md +0 -0
  157. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Performance_Optimization_-_Agent_Initialization_2025-08-13_160447_scratchpad.md +0 -0
  158. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Phase_3_-_Glob_Tool_Optimization_2025-08-13_142601_scratchpad.md +0 -0
  159. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Replace_entire_system_prompt_with_tool-only_instructions_2025-08-09_112839_scratchpad.md +0 -0
  160. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_TunaCode_Search_Enhancement_Implementation_2025-08-13_140905_scratchpad.md +0 -0
  161. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Update_Documentation_for_JSON_Recovery_System_2025-08-12_131127_scratchpad.md +0 -0
  162. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Update_documentation_for_always-on_display_UX_improvements_2025-08-12_154818_scratchpad.md +0 -0
  163. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/phase5-recovery_Phase_5_Recovery_Analysis_2025-08-13_145339_scratchpad.md +0 -0
  164. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/settings.local.json +0 -0
  165. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/tech-docs-maintainer.md +0 -0
  166. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.claude/test_suite_issues_resolved.md +0 -0
  167. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.env.example +0 -0
  168. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.github/pull_request_template.md +0 -0
  169. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.github/scripts/check_file_size.py +0 -0
  170. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.github/workflows/lint.yml +0 -0
  171. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.gitignore +0 -0
  172. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.pre-commit-config.yaml +0 -0
  173. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.taskmaster/CLAUDE.md +0 -0
  174. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.taskmaster/config.json +0 -0
  175. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.taskmaster/docs/prd.txt +0 -0
  176. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.taskmaster/state.json +0 -0
  177. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.taskmaster/tasks/task_001.txt +0 -0
  178. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.taskmaster/tasks/task_002.txt +0 -0
  179. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.taskmaster/tasks/task_003.txt +0 -0
  180. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.taskmaster/tasks/task_004.txt +0 -0
  181. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.taskmaster/tasks/task_005.txt +0 -0
  182. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.taskmaster/tasks/task_006.txt +0 -0
  183. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.taskmaster/tasks/tasks.json +0 -0
  184. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/.taskmaster/templates/example_prd.txt +0 -0
  185. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/CLAUDE.md +0 -0
  186. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/LICENSE +0 -0
  187. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/MANIFEST.in +0 -0
  188. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/SEARCH_ENHANCEMENT_PLAN.md +0 -0
  189. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/assets/tunacode_example.png +0 -0
  190. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/documentation/agent/TOOLS_WORKFLOW.md +0 -0
  191. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/documentation/agent/agent-inspo.md +0 -0
  192. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/documentation/agent/how-tunacode-agent-works.md +0 -0
  193. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/documentation/agent/main-agent-architecture.md +0 -0
  194. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/documentation/agent/swepmini-example.md +0 -0
  195. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/documentation/configuration/config-file-example.md +0 -0
  196. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/documentation/configuration/logging-configuration.md +0 -0
  197. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/documentation/development/codebase-hygiene.md +0 -0
  198. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/documentation/development/hatch-build-system.md +0 -0
  199. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/documentation/development/performance-optimizations.md +0 -0
  200. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/documentation/development/prompt-principles.md +0 -0
  201. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/documentation/ui/ui-architecture.md +0 -0
  202. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/example.md +0 -0
  203. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/activeContext.md +0 -0
  204. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/locks/claude.lock +0 -0
  205. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/locks/default.lock +0 -0
  206. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/locks/main.lock +0 -0
  207. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/locks/task-15.lock +0 -0
  208. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/locks/task17.lock +0 -0
  209. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/locks/tunacode.lock +0 -0
  210. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/locks/workflow.lock +0 -0
  211. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/memory-bank.md +0 -0
  212. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/productContext.md +0 -0
  213. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/progress.md +0 -0
  214. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/projectbrief.md +0 -0
  215. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/shared/done_tasks/claude_Task_18:_Create_comprehensive_test_suite_for_multi-turn_retry_bug_fix_2025-07-29_153844_scratchpad.md +0 -0
  216. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/shared/done_tasks/default_Task_11:_Create_template_directory_structure_for_TunaCode_2025-08-02_132101_scratchpad.md +0 -0
  217. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/shared/done_tasks/default_Task_11:_Update_setup_dev_env.sh_script_-_COMPLETED_2025-07-29_111547_scratchpad.md +0 -0
  218. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/shared/done_tasks/default_Task_12:_Create_Template_dataclass_and_TemplateLoader_class_2025-08-02_132215_scratchpad.md +0 -0
  219. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/shared/done_tasks/default_Task_12:_pyproject.toml_updates_2025-07-29_112303_scratchpad.md +0 -0
  220. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/shared/done_tasks/default_Task_13:_Add_active_template_property_to_ToolHandler_2025-08-02_132326_scratchpad.md +0 -0
  221. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/shared/done_tasks/default_Task_14:_Create_TemplateCommand_class_with_subcommands_2025-08-02_132621_scratchpad.md +0 -0
  222. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/shared/done_tasks/default_Task_15:_Create_example_JSON_templates_2025-08-02_132813_scratchpad.md +0 -0
  223. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/shared/done_tasks/default_Tasks_11-13:_Setup_robustness_and_documentation_2025-07-29_113044_scratchpad.md +0 -0
  224. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/shared/done_tasks/main_Task_16:_Error_synthesis_system_implementation_complete_2025-07-29_150745_scratchpad.md +0 -0
  225. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/shared/done_tasks/task-15_Task_15:_Implement_retry_limit_mechanism_2025-07-29_145737_scratchpad.md +0 -0
  226. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/shared/done_tasks/task17_Task_17:_Fix_message_history_cleanup_in_patch_tool_messages()_2025-07-29_152006_scratchpad.md +0 -0
  227. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/shared/done_tasks/tunacode_Task_14_Completed:_Defensive_Type_Checking_in__attempt_tool_recovery()_2025-07-29_144542_scratchpad.md +0 -0
  228. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/shared/done_tasks/workflow_Task_6:_Implement_Multi-Turn_Recursive_Loop_for_Complex_Task_Decomposition_2025-07-23_213518_scratchpad.md +0 -0
  229. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/systemPatterns.md +0 -0
  230. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/memory-bank/techContext.md +0 -0
  231. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/pytest.ini +0 -0
  232. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/scripts/check-file-length.sh +0 -0
  233. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/scripts/download_ripgrep.py +0 -0
  234. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/scripts/install_linux.sh +0 -0
  235. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/scripts/playwright_cache.py +0 -0
  236. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/scripts/publish_to_pip.sh +0 -0
  237. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/scripts/setup_dev_env.sh +0 -0
  238. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/scripts/startup_timer.py +0 -0
  239. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/scripts/uninstall.sh +0 -0
  240. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/scripts/utils/vulture_whitelist.py +0 -0
  241. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/scripts/verify_dev_env.sh +0 -0
  242. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/setup.py +0 -0
  243. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/README.md +0 -0
  244. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/__init__.py +0 -0
  245. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/__init__.py +0 -0
  246. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/__init__.py +0 -0
  247. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/base.py +0 -0
  248. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/conversation.py +0 -0
  249. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/debug.py +0 -0
  250. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/development.py +0 -0
  251. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/model.py +0 -0
  252. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/plan.py +0 -0
  253. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/system.py +0 -0
  254. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/template.py +0 -0
  255. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/todo.py +0 -0
  256. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/template_shortcut.py +0 -0
  257. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/repl_components/__init__.py +0 -0
  258. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/repl_components/command_parser.py +0 -0
  259. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/repl_components/error_recovery.py +0 -0
  260. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/repl_components/output_display.py +0 -0
  261. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/cli/repl_components/tool_executor.py +0 -0
  262. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/configuration/__init__.py +0 -0
  263. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/configuration/models.py +0 -0
  264. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/configuration/settings.py +0 -0
  265. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/context.py +0 -0
  266. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/__init__.py +0 -0
  267. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/agents/__init__.py +0 -0
  268. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/__init__.py +0 -0
  269. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/agent_config.py +0 -0
  270. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/json_tool_parser.py +0 -0
  271. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/message_handler.py +0 -0
  272. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/node_processor.py +0 -0
  273. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/response_state.py +0 -0
  274. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/result_wrapper.py +0 -0
  275. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/task_completion.py +0 -0
  276. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/tool_buffer.py +0 -0
  277. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/tool_executor.py +0 -0
  278. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/truncation_checker.py +0 -0
  279. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/background/__init__.py +0 -0
  280. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/background/manager.py +0 -0
  281. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/code_index.py +0 -0
  282. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/llm/__init__.py +0 -0
  283. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/logging/__init__.py +0 -0
  284. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/logging/config.py +0 -0
  285. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/logging/formatters.py +0 -0
  286. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/logging/handlers.py +0 -0
  287. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/logging/logger.py +0 -0
  288. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/setup/__init__.py +0 -0
  289. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/setup/agent_setup.py +0 -0
  290. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/setup/base.py +0 -0
  291. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/setup/environment_setup.py +0 -0
  292. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/setup/template_setup.py +0 -0
  293. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/state.py +0 -0
  294. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/token_usage/api_response_parser.py +0 -0
  295. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/token_usage/cost_calculator.py +0 -0
  296. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/token_usage/usage_tracker.py +0 -0
  297. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/core/tool_handler.py +0 -0
  298. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/prompts/system.md +0 -0
  299. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/prompts/system.md.bak +0 -0
  300. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/py.typed +0 -0
  301. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/services/__init__.py +0 -0
  302. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/services/mcp.py +0 -0
  303. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/templates/__init__.py +0 -0
  304. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/templates/loader.py +0 -0
  305. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/__init__.py +0 -0
  306. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/base.py +0 -0
  307. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/bash.py +0 -0
  308. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/exit_plan_mode.py +0 -0
  309. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/grep_components/__init__.py +0 -0
  310. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/grep_components/file_filter.py +0 -0
  311. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/grep_components/pattern_matcher.py +0 -0
  312. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/grep_components/result_formatter.py +0 -0
  313. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/grep_components/search_result.py +0 -0
  314. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/list_dir.py +0 -0
  315. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/present_plan.py +0 -0
  316. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/bash_prompt.xml +0 -0
  317. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/exit_plan_mode_prompt.xml +0 -0
  318. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/glob_prompt.xml +0 -0
  319. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/grep_prompt.xml +0 -0
  320. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/list_dir_prompt.xml +0 -0
  321. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/present_plan_prompt.xml +0 -0
  322. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/read_file_prompt.xml +0 -0
  323. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/run_command_prompt.xml +0 -0
  324. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/todo_prompt.xml +0 -0
  325. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/update_file_prompt.xml +0 -0
  326. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/write_file_prompt.xml +0 -0
  327. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/read_file.py +0 -0
  328. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/run_command.py +0 -0
  329. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/schema_assembler.py +0 -0
  330. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/todo.py +0 -0
  331. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/update_file.py +0 -0
  332. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/tools/write_file.py +0 -0
  333. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/types.py +0 -0
  334. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/ui/__init__.py +0 -0
  335. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/ui/completers.py +0 -0
  336. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/ui/console.py +0 -0
  337. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/ui/constants.py +0 -0
  338. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/ui/decorators.py +0 -0
  339. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/ui/input.py +0 -0
  340. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/ui/keybindings.py +0 -0
  341. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/ui/lexers.py +0 -0
  342. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/ui/logging_compat.py +0 -0
  343. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/ui/panels.py +0 -0
  344. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/ui/prompt_manager.py +0 -0
  345. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/ui/tool_descriptions.py +0 -0
  346. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/ui/tool_ui.py +0 -0
  347. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/ui/utils.py +0 -0
  348. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/ui/validators.py +0 -0
  349. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/utils/__init__.py +0 -0
  350. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/utils/bm25.py +0 -0
  351. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/utils/diff_utils.py +0 -0
  352. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/utils/file_utils.py +0 -0
  353. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/utils/import_cache.py +0 -0
  354. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/utils/json_utils.py +0 -0
  355. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/utils/message_utils.py +0 -0
  356. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/utils/retry.py +0 -0
  357. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/utils/ripgrep.py +0 -0
  358. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/utils/security.py +0 -0
  359. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/utils/system.py +0 -0
  360. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/utils/text_utils.py +0 -0
  361. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/src/tunacode/utils/token_counter.py +0 -0
  362. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/CHARACTERIZATION_README.md +0 -0
  363. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/CHARACTERIZATION_TEST_PLAN.md +0 -0
  364. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/CHARACTERIZATION_TEST_PLAN_AGENT_MAIN.md +0 -0
  365. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/CHARACTERIZATION_TEST_PLAN_COMMANDS.md +0 -0
  366. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/FILE_OPERATIONS_TEST_GUIDE.md +0 -0
  367. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/__init__.py +0 -0
  368. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/agent/__init__.py +0 -0
  369. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/agent/conftest.py +0 -0
  370. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/agent/test_agent_creation.py +0 -0
  371. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/agent/test_json_tool_parsing.py +0 -0
  372. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/agent/test_process_node.py +0 -0
  373. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/agent/test_process_request.py +0 -0
  374. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/agent/test_tool_message_patching.py +0 -0
  375. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/background/test_background_edge_cases.py +0 -0
  376. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/background/test_cleanup.py +0 -0
  377. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/background/test_task_cancellation.py +0 -0
  378. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/background/test_task_creation.py +0 -0
  379. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/background/test_task_execution.py +0 -0
  380. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/code_index/test_cache_management.py +0 -0
  381. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/code_index/test_file_scanning.py +0 -0
  382. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/code_index/test_index_building.py +0 -0
  383. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/code_index/test_search_operations.py +0 -0
  384. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/code_index/test_symbol_extraction.py +0 -0
  385. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/commands/__init__.py +0 -0
  386. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/commands/test_init_command.py +0 -0
  387. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/conftest.py +0 -0
  388. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/context/README.md +0 -0
  389. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/context/__init__.py +0 -0
  390. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/context/test_context_acceptance.py +0 -0
  391. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/context/test_context_integration.py +0 -0
  392. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/context/test_context_loading.py +0 -0
  393. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/context/test_tunacode_logging.py +0 -0
  394. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/repl/test_command_parsing.py +0 -0
  395. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/repl/test_error_handling.py +0 -0
  396. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/repl/test_escape_key_behavior.py +0 -0
  397. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/repl/test_input_handling.py +0 -0
  398. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/repl/test_keyboard_interrupts.py +0 -0
  399. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/repl/test_multiline_input.py +0 -0
  400. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/repl/test_output_display_logic.py +0 -0
  401. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/repl/test_repl_initialization.py +0 -0
  402. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/repl/test_session_flow.py +0 -0
  403. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/services/test_error_recovery.py +0 -0
  404. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/services/test_llm_routing.py +0 -0
  405. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/services/test_mcp_integration.py +0 -0
  406. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/services/test_service_lifecycle.py +0 -0
  407. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/state/test_agent_tracking.py +0 -0
  408. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/state/test_message_history.py +0 -0
  409. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/state/test_permissions.py +0 -0
  410. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/state/test_session_management.py +0 -0
  411. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/state/test_state_initialization.py +0 -0
  412. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/state/test_user_config.py +0 -0
  413. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/test_characterization_commands.py +0 -0
  414. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/test_characterization_grep.py +0 -0
  415. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/test_characterization_main.py +0 -0
  416. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/test_characterization_repl.py +0 -0
  417. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/ui/test_async_ui.py +0 -0
  418. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/ui/test_console_output.py +0 -0
  419. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/ui/test_diff_display.py +0 -0
  420. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/ui/test_prompt_rendering.py +0 -0
  421. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/ui/test_spinner_messages.py +0 -0
  422. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/ui/test_tool_confirmations.py +0 -0
  423. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/utils/test_expand_file_refs.py +0 -0
  424. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/utils/test_file_operations.py +0 -0
  425. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/utils/test_git_commands.py +0 -0
  426. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/utils/test_token_counting.py +0 -0
  427. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/characterization/utils/test_utils_edge_cases.py +0 -0
  428. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/conftest.py +0 -0
  429. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/test_agent_output_formatting.py +0 -0
  430. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/test_command_parser_retry.py +0 -0
  431. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/test_completion_detection.py +0 -0
  432. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/test_glob_phase3.py +0 -0
  433. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/test_json_concatenation_recovery.py +0 -0
  434. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/test_json_retry.py +0 -0
  435. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/test_logging_config.py +0 -0
  436. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/test_phase2_type_hints.py +0 -0
  437. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/test_plan_mode.py +0 -0
  438. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/test_prompt_changes_validation.py +0 -0
  439. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/test_prompt_injection.py +0 -0
  440. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/test_security.py +0 -0
  441. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/test_spinner_updates.py +0 -0
  442. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tests/unit/test_constants_enums.py +0 -0
  443. {tunacode_cli-0.0.67 → tunacode_cli-0.0.68}/tools/emoji_cleaner.py +0 -0
@@ -0,0 +1,9 @@
1
+ # Fix wizard UI - branch safety interference
2
+ _Started: 2025-08-20 22:22:27_
3
+ _Agent: default
4
+
5
+ [1] Found git_safety_setup.py - it prompts user to create safety branch (line 114)
6
+ [2] GitSafetySetup registered in setup.py line 42, runs during wizard
7
+ [3] Coordinator passes wizard_mode to steps that support it (line 49-52)
8
+ [4] Creating fix: GitSafetySetup should skip prompt in wizard mode
9
+ [5] Modified git_safety_setup.py execute() to accept wizard_mode and skip when True
@@ -0,0 +1,30 @@
1
+ # slash_command_system_implementation
2
+ _Started: 2025-08-14 01:56:07_
3
+ _Agent: default
4
+
5
+ [1] Analyzed existing command architecture - found CommandRegistry class with discover_commands() method and factory pattern
6
+ [2] Found existing .claude/commands with example markdown files using YAML frontmatter and special syntax (!command, )
7
+ [3] Located CommandRegistry initialization in repl.py - global variable with discover_commands method
8
+ [4] Designing SlashCommandLoader architecture - will extend existing CommandRegistry.discover_commands to include markdown-based commands
9
+ [5] Starting implementation design - creating SlashCommandLoader class and SlashCommand implementation
10
+ [6] Examining existing template system to understand patterns - found TemplateLoader, Template class with shortcuts, and tool restrictions
11
+ [7] Now designing the SlashCommand architecture - will use similar pattern to Template but for markdown-based commands with frontmatter parsing
12
+ [8] Planning detailed implementation steps - creating slash command module structure and file organization
13
+ [9] Defining data structures for SlashCommandMetadata, precedence handling, and command parsing
14
+ [10] Designing template processor for , !command execution, @file inclusion, and YAML frontmatter parsing
15
+ [11] Planning CommandRegistry integration - extending discover_commands method and help system updates
16
+ [12] Completing comprehensive implementation plan - defining all components, test strategy, and rollout phases
17
+ [13] Implementation plan complete - comprehensive slash command system designed with security, performance, and user experience considerations
18
+ [14] Reviewing context injection implementation - checking if @file, @@glob, and !command patterns are fully specified
19
+ [15] Enhanced context injection with size limits, circular inclusion detection, comprehensive tracking, and security validation
20
+ [16] Continuing planning for remaining tasks: CommandRegistry integration, security validation, test suite, and documentation
21
+ [17] Planning comprehensive security validation - command whitelisting, sandboxing, tool restrictions, and audit logging
22
+ [18] Planning comprehensive test suite - unit tests, integration tests, security tests, performance tests, and fixtures
23
+ [19] Planning comprehensive documentation - user guides, API docs, examples, migration guides, and troubleshooting
24
+ [20] PLANNING COMPLETE - Comprehensive slash command system fully designed with all components, security, testing, and documentation
25
+ [21] IMPLEMENTATION PHASE STARTED - Creating rollback point and beginning module structure creation
26
+ [22] Created types.py with core data structures - CommandSource, SecurityLevel, SlashCommandMetadata, etc.
27
+ [23] Implemented CommandValidator and MarkdownTemplateProcessor - need to fix import errors and add CommandContext type
28
+ [24] Implemented all core slash command components - now fixing circular import issues in the module structure
29
+ [25] Extended CommandRegistry with slash command discovery - now adding utility methods and completing integration
30
+ [26] IMPLEMENTATION COMPLETE - All core components implemented and integrated with CommandRegistry
@@ -0,0 +1,9 @@
1
+ # Fix wizard UI - branch safety interference
2
+ _Started: 2025-08-20 22:22:27_
3
+ _Agent: default
4
+
5
+ [1] Found git_safety_setup.py - it prompts user to create safety branch (line 114)
6
+ [2] GitSafetySetup registered in setup.py line 42, runs during wizard
7
+ [3] Coordinator passes wizard_mode to steps that support it (line 49-52)
8
+ [4] Creating fix: GitSafetySetup should skip prompt in wizard mode
9
+ [5] Modified git_safety_setup.py execute() to accept wizard_mode and skip when True
@@ -0,0 +1,35 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased] - 2025-08-20
9
+
10
+ ### Added
11
+
12
+ - **Comprehensive Onboarding Experience Improvements** (#88) - Thanks to **@ryumacodes**!
13
+ - Enhanced user onboarding flow and setup experience
14
+ - Improved first-time user guidance and documentation
15
+ - Streamlined installation and configuration process
16
+ - Resolved issue #55
17
+
18
+ ### Recent Pull Requests
19
+
20
+ - **Slash Command System for Custom Automation Workflows** (#85) - Thanks to **@Lftobs**!
21
+ - Implemented flexible slash command infrastructure
22
+ - Enabled custom automation workflows
23
+ - Extended CLI capabilities with user-defined commands
24
+
25
+ - **User Documentation and README Index** (#83) - Thanks to **@MclPio**!
26
+ - Added comprehensive user documentation
27
+ - Updated main README with organized index
28
+ - Improved documentation structure and accessibility
29
+
30
+ ### Contributors
31
+
32
+ Special thanks to our recent contributors:
33
+ - **@ryumacodes** - Onboarding improvements and multiple feature implementations
34
+ - **@Lftobs** - Slash command system and workflow automation
35
+ - **@MclPio** - Documentation improvements and organization
@@ -0,0 +1,192 @@
1
+ Metadata-Version: 2.4
2
+ Name: tunacode-cli
3
+ Version: 0.0.68
4
+ Summary: Your agentic CLI developer.
5
+ Project-URL: Homepage, https://tunacode.xyz/
6
+ Project-URL: Repository, https://github.com/alchemiststudiosDOTai/tunacode
7
+ Project-URL: Issues, https://github.com/alchemiststudiosDOTai/tunacode/issues
8
+ Project-URL: Documentation, https://github.com/alchemiststudiosDOTai/tunacode#readme
9
+ Author-email: larock22 <noreply@github.com>
10
+ License: MIT
11
+ License-File: LICENSE
12
+ Keywords: agent,automation,cli,development
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Topic :: Software Development
21
+ Classifier: Topic :: Utilities
22
+ Requires-Python: <3.14,>=3.10
23
+ Requires-Dist: click<8.2.0,>=8.0.0
24
+ Requires-Dist: defusedxml
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
+ Requires-Dist: typer<0.10.0,>=0.9.0
31
+ Provides-Extra: dev
32
+ Requires-Dist: autoflake>=2.0.0; extra == 'dev'
33
+ Requires-Dist: bandit; extra == 'dev'
34
+ Requires-Dist: build; extra == 'dev'
35
+ Requires-Dist: dead>=1.5.0; extra == 'dev'
36
+ Requires-Dist: hatch>=1.6.0; extra == 'dev'
37
+ Requires-Dist: mypy; extra == 'dev'
38
+ Requires-Dist: pre-commit; extra == 'dev'
39
+ Requires-Dist: pytest; extra == 'dev'
40
+ Requires-Dist: pytest-asyncio; extra == 'dev'
41
+ Requires-Dist: pytest-cov; extra == 'dev'
42
+ Requires-Dist: ruff; extra == 'dev'
43
+ Requires-Dist: textual-dev; extra == 'dev'
44
+ Requires-Dist: twine; extra == 'dev'
45
+ Requires-Dist: unimport>=1.0.0; extra == 'dev'
46
+ Requires-Dist: vulture>=2.7; extra == 'dev'
47
+ Description-Content-Type: text/markdown
48
+
49
+ # TunaCode CLI
50
+
51
+ <div align="center">
52
+
53
+ [![PyPI version](https://badge.fury.io/py/tunacode-cli.svg)](https://badge.fury.io/py/tunacode-cli)
54
+ [![Downloads](https://pepy.tech/badge/tunacode-cli)](https://pepy.tech/project/tunacode-cli)
55
+ [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
56
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
57
+
58
+ **AI-powered CLI coding assistant**
59
+
60
+ ![TunaCode Example](assets/tunacode_example.png)
61
+
62
+ </div>
63
+
64
+ ---
65
+
66
+ ## Quick Install
67
+
68
+ ```bash
69
+ # Option 1: One-line install (Linux/macOS)
70
+ wget -qO- https://raw.githubusercontent.com/alchemiststudiosDOTai/tunacode/master/scripts/install_linux.sh | bash
71
+
72
+ # Option 2: pip install
73
+ pip install tunacode-cli
74
+ ```
75
+
76
+ For detailed installation and configuration instructions, see the [**Getting Started Guide**](documentation/user/getting-started.md).
77
+
78
+ ## Development Installation
79
+
80
+ For contributors and developers who want to work on TunaCode:
81
+
82
+ ```bash
83
+ # Clone the repository
84
+ git clone https://github.com/alchemiststudiosDOTai/tunacode.git
85
+ cd tunacode
86
+
87
+ # Quick setup (recommended)
88
+ ./scripts/setup_dev_env.sh
89
+
90
+ # Or manual setup
91
+ python3 -m venv venv
92
+ source venv/bin/activate # On Windows: venv\Scripts\activate
93
+ pip install -e ".[dev]"
94
+
95
+ # Verify installation
96
+ python -m tunacode --version
97
+ ```
98
+
99
+ See the [Hatch Build System Guide](documentation/development/hatch-build-system.md) for detailed instructions on the development environment.
100
+
101
+ ## Configuration
102
+
103
+ Choose your AI provider and set your API key. For more details, see the [Configuration Section](documentation/user/getting-started.md#2-configuration) in the Getting Started Guide.
104
+
105
+ ### Recommended Models
106
+
107
+ Based on extensive testing, these models provide the best performance:
108
+
109
+ - `google/gemini-2.5-pro` - Excellent for complex reasoning
110
+ - `openai/gpt-4.1` - Strong general-purpose model
111
+ - `deepseek/deepseek-r1-0528` - Great for code generation
112
+ - `openai/gpt-4.1-mini` - Fast and cost-effective
113
+ - `anthropic/claude-4-sonnet-20250522` - Superior context handling
114
+
115
+ _Note: Formal evaluations coming soon. Any model can work, but these have shown the best results in practice._
116
+
117
+ ## Start Coding
118
+
119
+ ```bash
120
+ tunacode
121
+ ```
122
+
123
+ ## Basic Commands
124
+
125
+ | Command | Description |
126
+ | ------------------------ | ---------------------- |
127
+ | `/help` | Show all commands |
128
+ | `/model <provider:name>` | Switch model |
129
+ | `/clear` | Clear message history |
130
+ | `/compact` | Summarize conversation |
131
+ | `/branch <name>` | Create Git branch |
132
+ | `/yolo` | Skip confirmations |
133
+ | `!<command>` | Run shell command |
134
+ | `exit` | Exit TunaCode |
135
+
136
+ ## Performance
137
+
138
+ TunaCode leverages parallel execution for read-only operations, achieving **3x faster** file operations:
139
+
140
+ ![Parallel Execution Performance](docs/assets/parrelel_work_3x.png)
141
+
142
+ Multiple file reads, directory listings, and searches execute concurrently using async I/O, making code exploration significantly faster.
143
+
144
+ ## Features in Development
145
+
146
+ - **Bug Fixes**: Actively addressing issues - please report any bugs you encounter!
147
+
148
+ _Note: While the tool is fully functional, we're focusing on stability and core features before optimizing for speed._
149
+
150
+ ## Safety First
151
+
152
+ ⚠️ **Important**: TunaCode can modify your codebase. Always:
153
+
154
+ - Use Git branches before making changes
155
+ - Review file modifications before confirming
156
+ - Keep backups of important work
157
+
158
+ ## Documentation
159
+
160
+ For a complete overview of the documentation, see the [**Documentation Hub**](documentation/README.md).
161
+
162
+ ### User Documentation
163
+
164
+ - [**Getting Started**](documentation/user/getting-started.md) - How to install, configure, and use TunaCode.
165
+ - [**Commands**](documentation/user/commands.md) - A complete list of all available commands.
166
+
167
+ ### Developer Documentation
168
+
169
+ - **Architecture** (planned) - The overall architecture of the TunaCode application.
170
+ - **Contributing** (planned) - Guidelines for contributing to the project.
171
+ - **Tools** (planned) - How to create and use custom tools.
172
+ - **Testing** (planned) - Information on the testing philosophy and how to run tests.
173
+
174
+ ### Guides
175
+
176
+ - [**Advanced Configuration**](documentation/configuration/config-file-example.md) - An example of an advanced configuration file.
177
+
178
+ ### Reference
179
+
180
+ - **Changelog** (planned) - A history of changes to the application.
181
+ - **Roadmap** (planned) - The future direction of the project.
182
+ - **Security** (planned) - Information about the security of the application.
183
+
184
+ ## Links
185
+
186
+ - [PyPI Package](https://pypi.org/project/tunacode-cli/)
187
+ - [GitHub Repository](https://github.com/alchemiststudiosDOTai/tunacode)
188
+ - [Report Issues](https://github.com/alchemiststudiosDOTai/tunacode/issues)
189
+
190
+ ---
191
+
192
+ MIT License - see [LICENSE](LICENSE) file
@@ -0,0 +1,144 @@
1
+ # TunaCode CLI
2
+
3
+ <div align="center">
4
+
5
+ [![PyPI version](https://badge.fury.io/py/tunacode-cli.svg)](https://badge.fury.io/py/tunacode-cli)
6
+ [![Downloads](https://pepy.tech/badge/tunacode-cli)](https://pepy.tech/project/tunacode-cli)
7
+ [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
8
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
9
+
10
+ **AI-powered CLI coding assistant**
11
+
12
+ ![TunaCode Example](assets/tunacode_example.png)
13
+
14
+ </div>
15
+
16
+ ---
17
+
18
+ ## Quick Install
19
+
20
+ ```bash
21
+ # Option 1: One-line install (Linux/macOS)
22
+ wget -qO- https://raw.githubusercontent.com/alchemiststudiosDOTai/tunacode/master/scripts/install_linux.sh | bash
23
+
24
+ # Option 2: pip install
25
+ pip install tunacode-cli
26
+ ```
27
+
28
+ For detailed installation and configuration instructions, see the [**Getting Started Guide**](documentation/user/getting-started.md).
29
+
30
+ ## Development Installation
31
+
32
+ For contributors and developers who want to work on TunaCode:
33
+
34
+ ```bash
35
+ # Clone the repository
36
+ git clone https://github.com/alchemiststudiosDOTai/tunacode.git
37
+ cd tunacode
38
+
39
+ # Quick setup (recommended)
40
+ ./scripts/setup_dev_env.sh
41
+
42
+ # Or manual setup
43
+ python3 -m venv venv
44
+ source venv/bin/activate # On Windows: venv\Scripts\activate
45
+ pip install -e ".[dev]"
46
+
47
+ # Verify installation
48
+ python -m tunacode --version
49
+ ```
50
+
51
+ See the [Hatch Build System Guide](documentation/development/hatch-build-system.md) for detailed instructions on the development environment.
52
+
53
+ ## Configuration
54
+
55
+ Choose your AI provider and set your API key. For more details, see the [Configuration Section](documentation/user/getting-started.md#2-configuration) in the Getting Started Guide.
56
+
57
+ ### Recommended Models
58
+
59
+ Based on extensive testing, these models provide the best performance:
60
+
61
+ - `google/gemini-2.5-pro` - Excellent for complex reasoning
62
+ - `openai/gpt-4.1` - Strong general-purpose model
63
+ - `deepseek/deepseek-r1-0528` - Great for code generation
64
+ - `openai/gpt-4.1-mini` - Fast and cost-effective
65
+ - `anthropic/claude-4-sonnet-20250522` - Superior context handling
66
+
67
+ _Note: Formal evaluations coming soon. Any model can work, but these have shown the best results in practice._
68
+
69
+ ## Start Coding
70
+
71
+ ```bash
72
+ tunacode
73
+ ```
74
+
75
+ ## Basic Commands
76
+
77
+ | Command | Description |
78
+ | ------------------------ | ---------------------- |
79
+ | `/help` | Show all commands |
80
+ | `/model <provider:name>` | Switch model |
81
+ | `/clear` | Clear message history |
82
+ | `/compact` | Summarize conversation |
83
+ | `/branch <name>` | Create Git branch |
84
+ | `/yolo` | Skip confirmations |
85
+ | `!<command>` | Run shell command |
86
+ | `exit` | Exit TunaCode |
87
+
88
+ ## Performance
89
+
90
+ TunaCode leverages parallel execution for read-only operations, achieving **3x faster** file operations:
91
+
92
+ ![Parallel Execution Performance](docs/assets/parrelel_work_3x.png)
93
+
94
+ Multiple file reads, directory listings, and searches execute concurrently using async I/O, making code exploration significantly faster.
95
+
96
+ ## Features in Development
97
+
98
+ - **Bug Fixes**: Actively addressing issues - please report any bugs you encounter!
99
+
100
+ _Note: While the tool is fully functional, we're focusing on stability and core features before optimizing for speed._
101
+
102
+ ## Safety First
103
+
104
+ ⚠️ **Important**: TunaCode can modify your codebase. Always:
105
+
106
+ - Use Git branches before making changes
107
+ - Review file modifications before confirming
108
+ - Keep backups of important work
109
+
110
+ ## Documentation
111
+
112
+ For a complete overview of the documentation, see the [**Documentation Hub**](documentation/README.md).
113
+
114
+ ### User Documentation
115
+
116
+ - [**Getting Started**](documentation/user/getting-started.md) - How to install, configure, and use TunaCode.
117
+ - [**Commands**](documentation/user/commands.md) - A complete list of all available commands.
118
+
119
+ ### Developer Documentation
120
+
121
+ - **Architecture** (planned) - The overall architecture of the TunaCode application.
122
+ - **Contributing** (planned) - Guidelines for contributing to the project.
123
+ - **Tools** (planned) - How to create and use custom tools.
124
+ - **Testing** (planned) - Information on the testing philosophy and how to run tests.
125
+
126
+ ### Guides
127
+
128
+ - [**Advanced Configuration**](documentation/configuration/config-file-example.md) - An example of an advanced configuration file.
129
+
130
+ ### Reference
131
+
132
+ - **Changelog** (planned) - A history of changes to the application.
133
+ - **Roadmap** (planned) - The future direction of the project.
134
+ - **Security** (planned) - Information about the security of the application.
135
+
136
+ ## Links
137
+
138
+ - [PyPI Package](https://pypi.org/project/tunacode-cli/)
139
+ - [GitHub Repository](https://github.com/alchemiststudiosDOTai/tunacode)
140
+ - [Report Issues](https://github.com/alchemiststudiosDOTai/tunacode/issues)
141
+
142
+ ---
143
+
144
+ MIT License - see [LICENSE](LICENSE) file
@@ -0,0 +1,73 @@
1
+ ### Workflow
2
+
3
+ - **CRITICAL: WORKTREE REQUIREMENT** - When user requests a worktree, you MUST:
4
+ 1. Create the worktree with `git worktree add -b branch-name ../dirname`
5
+ 2. If access is blocked, immediately ask: "I cannot access the worktree directory. Should I: a) Work in a subdirectory instead, b) Use a branch in the main directory, or c) Another solution?"
6
+ 3. NEVER proceed without a worktree if user specifically requested one
7
+
8
+ - before any updates make a git commit rollback point, clearly labeled for future agents
9
+
10
+ - the clear outline of the objective MUST be established before we begin ANY coding, do not under any circumstance begin any updates untill this is clearly understood, if you have any ambiuguity or quesiton, the user can be brought in or use best practises
11
+
12
+ - use scratchpad-multi.sh as you work, after the MD file is done being used sort it to the approate directory
13
+ - To use `llm-agent-tools/scratchpad-multi.sh`, start a task with `./llm-agent-tools/scratchpad-multi.sh --agent <name> start "Task Title"` and record updates using `step`, `revise <N>`, and `branch <N>`. When complete, run `finish` to interactively archive the scratchpad to `documentation/` and/or `.claude/` (a backup is stored under `.claude/scratchpad/shared/done_tasks/`).
14
+
15
+ - the MD file created by the bash file MUST be used for the duiration of the task you will be PUNISHED if you do not update this file as you work.
16
+
17
+ - any key logic or file's must be inlcuded here in the following format if this format is not followed you will STOP reasses, and begin again
18
+
19
+ - pre-commit hooks can NOT be skipped, you will be punished for skipping the,
20
+
21
+ ```
22
+ # Implementing Authentication Module
23
+ _Started: 2025-08-06 10:00:00_
24
+ _Agent: default_
25
+
26
+ [1] Found auth logic in src/auth/handler.py:45
27
+ [2] Key dependencies: jwt, bcrypt, session_manager
28
+ [3] Modified login function to add rate limiting
29
+ [3~1] Fixed edge case for empty passwords
30
+ ```
31
+
32
+ - General documentation → archive to @documentation/
33
+ - Developer/tunacode-specific → archive to @ .claude
34
+ - Organize archives by category (agent/development/ etc)
35
+ - In general the scratchpad should never go in any other dirs ececpt the two above
36
+
37
+ - if a task at hand is to big to handle as a one off use the taskmaster MCP but in general this should only be used as needed, usually it will not be needed
38
+
39
+ - grep documentation and .claude as needed BOTH of these have a README.md that ahs a direcoty map, you MUST read these before any bigger grep or context searches
40
+
41
+ - in general gather as much context as needed, unless specified by the user
42
+
43
+ - this is the most important part of this prompt: Synthesis context aggressively and heuristically AS NEEDED ONLY You can deploy the appropriate subagent for complex tasks agents list below
44
+
45
+ ### Documentation
46
+
47
+ - update the documents @documentation and in .claude after any update.
48
+
49
+ - use the subagent tech-docs-maintainer to update the documentation you MUST instruct the subagent to keep doc updates short you will be PUNISHED for not telling the documentation agent to keep it to only the most distilled information
50
+
51
+ - always follow best practices with git commits naming and gh cli workflows
52
+
53
+ - commit frequently
54
+
55
+ - always be on the side of safety, if you have any question consult the user
56
+
57
+ ### Python Coding Standards
58
+
59
+ - always use the venv
60
+ - Use type hints (PEP 484) for all function signatures
61
+ - Prefer f-strings (PEP 498) over %-formatting or .format()
62
+ - Use pathlib.Path instead of os.path for filesystem operations
63
+ - Structure imports: stdlib → third-party → local (PEP 8)
64
+ - Use dataclasses (PEP 557) for simple data containers
65
+ - Prefer context managers (with) for resource handling
66
+ - Use structural pattern matching (PEP 634) for complex
67
+ - run ruff frequently
68
+
69
+ ### Testing
70
+
71
+ - "hatch run test" command the entire testing suite
72
+
73
+ - anytime a new feature or refactor is done, we MUST find or make the golden/character test FIRST as a baseline standaard BEFORE starting, under no circumstance are you to not follow this pattern
@@ -13,11 +13,17 @@ documentation/
13
13
  ├── configuration/ # System configuration docs
14
14
  │ ├── config-file-example.md
15
15
  │ └── logging-configuration.md
16
- └── development/ # Development practices
17
- ├── codebase-hygiene.md
18
- ├── hatch-build-system.md
19
- ├── performance-optimizations.md
20
- └── prompt-principles.md
16
+ ├── development/ # Development practices
17
+ ├── codebase-hygiene.md
18
+ ├── command-system-architecture.md
19
+ ├── creating-custom-commands.md
20
+ │ ├── hatch-build-system.md
21
+ | ├── performance-optimizations.md
22
+ │ └── prompt-principles.md
23
+ │── user/ # user guides
24
+ │── getting-started.md
25
+ │── commands.md
26
+ │── tools.md
21
27
  ```
22
28
 
23
29
  ## Purpose
@@ -26,6 +32,8 @@ General project documentation for features, architecture, and best practices.
26
32
 
27
33
  ## Quick Links
28
34
 
35
+ - [Command System Architecture](development/command-system-architecture.md) - Technical overview of the command system design and components.
36
+ - [Creating Custom Commands](development/creating-custom-commands.md) - Step-by-step guide for creating built-in and slash commands.
29
37
  - [Hatch Build System](development/hatch-build-system.md) - Complete guide to using Hatch for development and building.
30
38
  - [Configuration File Example](configuration/config-file-example.md) - Complete example of `~/.config/tunacode.json` with all available settings.
31
39
  - [Performance Optimizations](development/performance-optimizations.md) - Major performance improvements and optimization strategies.