tunacode-cli 0.0.66__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.
- tunacode_cli-0.0.68/.claude/scratchpad/archived/default_Fix_wizard_UI_-_branch_safety_interference_2025-08-20_222738_scratchpad.md +9 -0
- tunacode_cli-0.0.68/.claude/scratchpad/archived/default_slash_command_system_implementation_2025-08-14_034024_scratchpad.md +30 -0
- 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
- tunacode_cli-0.0.68/CHANGELOG.md +35 -0
- tunacode_cli-0.0.68/PKG-INFO +192 -0
- tunacode_cli-0.0.68/README.md +144 -0
- tunacode_cli-0.0.68/TUNACODE.md +73 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/documentation/README.md +13 -5
- tunacode_cli-0.0.68/documentation/development/command-system-architecture.md +259 -0
- tunacode_cli-0.0.68/documentation/development/creating-custom-commands.md +399 -0
- tunacode_cli-0.0.68/documentation/user/commands.md +113 -0
- tunacode_cli-0.0.68/documentation/user/getting-started.md +103 -0
- tunacode_cli-0.0.68/documentation/user/tools.md +28 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/pyproject.toml +2 -2
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/__init__.py +2 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/__init__.py +2 -0
- tunacode_cli-0.0.68/src/tunacode/cli/commands/implementations/command_reload.py +48 -0
- tunacode_cli-0.0.68/src/tunacode/cli/commands/implementations/quickstart.py +43 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/system.py +27 -3
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/registry.py +131 -1
- tunacode_cli-0.0.68/src/tunacode/cli/commands/slash/__init__.py +32 -0
- tunacode_cli-0.0.68/src/tunacode/cli/commands/slash/command.py +157 -0
- tunacode_cli-0.0.68/src/tunacode/cli/commands/slash/loader.py +134 -0
- tunacode_cli-0.0.68/src/tunacode/cli/commands/slash/processor.py +294 -0
- tunacode_cli-0.0.68/src/tunacode/cli/commands/slash/types.py +93 -0
- tunacode_cli-0.0.68/src/tunacode/cli/commands/slash/validator.py +399 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/main.py +4 -1
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/repl.py +25 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/configuration/defaults.py +1 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/constants.py +1 -1
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/agent_helpers.py +14 -13
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/agents/main.py +1 -1
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/agents/utils.py +4 -3
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/setup/config_setup.py +231 -6
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/setup/coordinator.py +13 -5
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/setup/git_safety_setup.py +5 -1
- tunacode_cli-0.0.68/src/tunacode/exceptions.py +253 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/setup.py +5 -2
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/glob.py +9 -46
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/grep.py +9 -51
- tunacode_cli-0.0.68/src/tunacode/tools/xml_helper.py +83 -0
- tunacode_cli-0.0.68/src/tunacode/tutorial/__init__.py +9 -0
- tunacode_cli-0.0.68/src/tunacode/tutorial/content.py +98 -0
- tunacode_cli-0.0.68/src/tunacode/tutorial/manager.py +182 -0
- tunacode_cli-0.0.68/src/tunacode/tutorial/steps.py +124 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/ui/output.py +1 -1
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/utils/user_configuration.py +45 -0
- tunacode_cli-0.0.68/tests/test_onboarding_features.py +457 -0
- tunacode_cli-0.0.68/tests/test_slash_commands_comprehensive.py +359 -0
- tunacode_cli-0.0.68/tests/test_slash_commands_functional.py +457 -0
- tunacode_cli-0.0.68/tests/test_slash_commands_integration.py +349 -0
- tunacode_cli-0.0.68/tests/test_slash_commands_isolated.py +270 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/test_tool_batching_retry.py +10 -12
- tunacode_cli-0.0.66/.claude/scratchpad/agents/default/scratchpad.md +0 -16
- tunacode_cli-0.0.66/CHANGELOG.md +0 -264
- tunacode_cli-0.0.66/PKG-INFO +0 -327
- tunacode_cli-0.0.66/README.md +0 -279
- tunacode_cli-0.0.66/src/tunacode/exceptions.py +0 -139
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/MEMORY_ANCHOR_SPEC.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/NEXT_PR_RULES.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/README.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/agents/bug-context-analyzer.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/agents/code-synthesis-analyzer.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/agents/documentation-synthesis-qa.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/agents/expert-debugger.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/agents/phased-task-processor.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/agents/prompt-engineer.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/agents/rapid-code-synthesis-qa.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/agents/tech-docs-maintainer.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/anchors.json +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/commands/deploy.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/commands/github-issue.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/commands/smells.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/commands/work.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/commands/workflow.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/delta/2025-01-05-baseline.yml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/delta/fix-text-alignment-layout-task3.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/delta/task4_ui_formatting_fix.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/delta/v0.0.53_to_v0.0.54.diff +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/development/always-on-display-implementation.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/development/cli-json-recovery-incident.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/development/directory-caching-optimization.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/development/esc-investigation/ESC_KEY_INVESTIGATION.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/development/esc-investigation/ESC_KEY_STREAMING_ANALYSIS.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/development/hatch-commands.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/development/phase5-prompt-injection-system.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/development/uv-hatch-setup.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/development/uv-installer-updates.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/metadata/components.yml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/metadata/hotspots.txt +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/patterns/json_retry_implementation.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/qa/fix-agent-errors.yml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/qa/fix-publish-script.yml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/qa/fix-runtime-warnings.yml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/README.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/active/task_json_retry_implementation_summary_2025-07-24_13-05-40.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/active/task_standardize_ui_formatting_patterns_2025-07-23_20-43-28.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/agents/default/spinner-enhancement-2025-08-07.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/agents/esc-investigation/scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/agents/phase5-recovery/scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/agents/tech-docs-maintainer/scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Add_Prompt_Injection_to_Remaining_Tools_-_Continuation_2025-08-13_152542_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Add_Prompt_Injection_to_Remaining_Tools_2025-08-13_152352_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_CLI_Agent_JSON_Recovery_Investigation_2025-08-12_124206_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_CLI_Agent_JSON_Recovery_Investigation_2025-08-12_124727_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Debug_persistent_KeyboardInterrupt_in_event_loop_2025-08-09_034136_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Debug_stuck_double_escape_in_plan_approval_2025-08-09_033214_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Fix_agent_not_calling_present_plan_tool_2025-08-09_090827_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Fix_unhandled_KeyboardInterrupt_exception_in_event_loop_2025-08-09_033843_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Fixed_Thinking_dots_animation_2025-08-11_121009_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_GitHub_Directory_Review_2025-08-11_122451_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_JSON_Recovery_Implementation_2025-08-12_130251_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Makefile_to_Hatch_Migration_2025-08-07_192356_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Performance_Optimization_-_Agent_Initialization_2025-08-13_160447_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Phase_3_-_Glob_Tool_Optimization_2025-08-13_142601_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_TunaCode_Search_Enhancement_Implementation_2025-08-13_140905_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/default_Update_Documentation_for_JSON_Recovery_System_2025-08-12_131127_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/archived/phase5-recovery_Phase_5_Recovery_Analysis_2025-08-13_145339_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/locks/code-synthesis-analyzer.lock +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/locks/default.lock +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/locks/esc-investigation.lock +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/locks/phase5-recovery.lock +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/locks/tech-docs-maintainer.lock +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_CLI_Agent_JSON_Recovery_Investigation_2025-08-12_124206_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_CLI_Agent_JSON_Recovery_Investigation_2025-08-12_124727_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Fixed_Thinking_dots_animation_2025-08-11_121009_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_GitHub_Directory_Review_2025-08-11_122451_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_JSON_Recovery_Implementation_2025-08-12_130251_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Makefile_to_Hatch_Migration_2025-08-07_192356_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Performance_Optimization_-_Agent_Initialization_2025-08-13_160447_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_Phase_3_-_Glob_Tool_Optimization_2025-08-13_142601_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/default_TunaCode_Search_Enhancement_Implementation_2025-08-13_140905_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/scratchpad/shared/done_tasks/phase5-recovery_Phase_5_Recovery_Analysis_2025-08-13_145339_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/settings.local.json +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/tech-docs-maintainer.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.claude/test_suite_issues_resolved.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.env.example +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.github/pull_request_template.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.github/scripts/check_file_size.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.github/workflows/lint.yml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.gitignore +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.pre-commit-config.yaml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.taskmaster/CLAUDE.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.taskmaster/config.json +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.taskmaster/docs/prd.txt +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.taskmaster/state.json +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.taskmaster/tasks/task_001.txt +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.taskmaster/tasks/task_002.txt +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.taskmaster/tasks/task_003.txt +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.taskmaster/tasks/task_004.txt +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.taskmaster/tasks/task_005.txt +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.taskmaster/tasks/task_006.txt +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.taskmaster/tasks/tasks.json +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/.taskmaster/templates/example_prd.txt +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/CLAUDE.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/LICENSE +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/MANIFEST.in +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/SEARCH_ENHANCEMENT_PLAN.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/assets/tunacode_example.png +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/documentation/agent/TOOLS_WORKFLOW.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/documentation/agent/agent-inspo.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/documentation/agent/how-tunacode-agent-works.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/documentation/agent/main-agent-architecture.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/documentation/agent/swepmini-example.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/documentation/configuration/config-file-example.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/documentation/configuration/logging-configuration.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/documentation/development/codebase-hygiene.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/documentation/development/hatch-build-system.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/documentation/development/performance-optimizations.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/documentation/development/prompt-principles.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/documentation/ui/ui-architecture.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/example.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/memory-bank/activeContext.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/memory-bank/locks/claude.lock +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/memory-bank/locks/default.lock +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/memory-bank/locks/main.lock +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/memory-bank/locks/task-15.lock +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/memory-bank/locks/task17.lock +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/memory-bank/locks/tunacode.lock +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/memory-bank/locks/workflow.lock +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/memory-bank/memory-bank.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/memory-bank/productContext.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/memory-bank/progress.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/memory-bank/projectbrief.md +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/memory-bank/shared/done_tasks/default_Task_12:_pyproject.toml_updates_2025-07-29_112303_scratchpad.md +0 -0
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → 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
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/memory-bank/systemPatterns.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/memory-bank/techContext.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/pytest.ini +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/scripts/check-file-length.sh +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/scripts/download_ripgrep.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/scripts/install_linux.sh +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/scripts/playwright_cache.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/scripts/publish_to_pip.sh +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/scripts/setup_dev_env.sh +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/scripts/startup_timer.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/scripts/uninstall.sh +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/scripts/utils/vulture_whitelist.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/scripts/verify_dev_env.sh +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/setup.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/README.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/base.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/conversation.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/debug.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/development.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/model.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/plan.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/template.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/implementations/todo.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/commands/template_shortcut.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/repl_components/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/repl_components/command_parser.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/repl_components/error_recovery.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/repl_components/output_display.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/cli/repl_components/tool_executor.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/configuration/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/configuration/models.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/configuration/settings.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/context.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/agents/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/agent_config.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/json_tool_parser.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/message_handler.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/node_processor.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/response_state.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/result_wrapper.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/task_completion.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/tool_buffer.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/tool_executor.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/agents/agent_components/truncation_checker.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/background/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/background/manager.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/code_index.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/llm/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/logging/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/logging/config.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/logging/formatters.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/logging/handlers.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/logging/logger.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/setup/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/setup/agent_setup.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/setup/base.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/setup/environment_setup.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/setup/template_setup.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/state.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/token_usage/api_response_parser.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/token_usage/cost_calculator.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/token_usage/usage_tracker.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/core/tool_handler.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/prompts/system.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/prompts/system.md.bak +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/py.typed +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/services/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/services/mcp.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/templates/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/templates/loader.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/base.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/bash.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/exit_plan_mode.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/grep_components/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/grep_components/file_filter.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/grep_components/pattern_matcher.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/grep_components/result_formatter.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/grep_components/search_result.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/list_dir.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/present_plan.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/bash_prompt.xml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/exit_plan_mode_prompt.xml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/glob_prompt.xml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/grep_prompt.xml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/list_dir_prompt.xml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/present_plan_prompt.xml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/read_file_prompt.xml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/run_command_prompt.xml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/todo_prompt.xml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/update_file_prompt.xml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/prompts/write_file_prompt.xml +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/read_file.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/run_command.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/schema_assembler.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/todo.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/update_file.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/tools/write_file.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/types.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/ui/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/ui/completers.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/ui/console.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/ui/constants.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/ui/decorators.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/ui/input.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/ui/keybindings.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/ui/lexers.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/ui/logging_compat.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/ui/panels.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/ui/prompt_manager.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/ui/tool_descriptions.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/ui/tool_ui.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/ui/utils.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/ui/validators.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/utils/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/utils/bm25.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/utils/diff_utils.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/utils/file_utils.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/utils/import_cache.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/utils/json_utils.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/utils/message_utils.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/utils/retry.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/utils/ripgrep.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/utils/security.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/utils/system.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/utils/text_utils.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/src/tunacode/utils/token_counter.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/CHARACTERIZATION_README.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/CHARACTERIZATION_TEST_PLAN.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/CHARACTERIZATION_TEST_PLAN_AGENT_MAIN.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/CHARACTERIZATION_TEST_PLAN_COMMANDS.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/FILE_OPERATIONS_TEST_GUIDE.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/agent/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/agent/conftest.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/agent/test_agent_creation.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/agent/test_json_tool_parsing.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/agent/test_process_node.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/agent/test_process_request.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/agent/test_tool_message_patching.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/background/test_background_edge_cases.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/background/test_cleanup.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/background/test_task_cancellation.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/background/test_task_creation.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/background/test_task_execution.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/code_index/test_cache_management.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/code_index/test_file_scanning.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/code_index/test_index_building.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/code_index/test_search_operations.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/code_index/test_symbol_extraction.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/commands/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/commands/test_init_command.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/conftest.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/context/README.md +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/context/__init__.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/context/test_context_acceptance.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/context/test_context_integration.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/context/test_context_loading.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/context/test_tunacode_logging.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/repl/test_command_parsing.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/repl/test_error_handling.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/repl/test_escape_key_behavior.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/repl/test_input_handling.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/repl/test_keyboard_interrupts.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/repl/test_multiline_input.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/repl/test_output_display_logic.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/repl/test_repl_initialization.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/repl/test_session_flow.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/services/test_error_recovery.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/services/test_llm_routing.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/services/test_mcp_integration.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/services/test_service_lifecycle.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/state/test_agent_tracking.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/state/test_message_history.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/state/test_permissions.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/state/test_session_management.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/state/test_state_initialization.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/state/test_user_config.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/test_characterization_commands.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/test_characterization_grep.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/test_characterization_main.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/test_characterization_repl.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/ui/test_async_ui.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/ui/test_console_output.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/ui/test_diff_display.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/ui/test_prompt_rendering.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/ui/test_spinner_messages.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/ui/test_tool_confirmations.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/utils/test_expand_file_refs.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/utils/test_file_operations.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/utils/test_git_commands.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/utils/test_token_counting.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/characterization/utils/test_utils_edge_cases.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/conftest.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/test_agent_output_formatting.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/test_command_parser_retry.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/test_completion_detection.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/test_glob_phase3.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/test_json_concatenation_recovery.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/test_json_retry.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/test_logging_config.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/test_phase2_type_hints.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/test_plan_mode.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/test_prompt_changes_validation.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/test_prompt_injection.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/test_security.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/test_spinner_updates.py +0 -0
- {tunacode_cli-0.0.66 → tunacode_cli-0.0.68}/tests/unit/test_constants_enums.py +0 -0
- {tunacode_cli-0.0.66 → 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
|
+
[](https://badge.fury.io/py/tunacode-cli)
|
|
54
|
+
[](https://pepy.tech/project/tunacode-cli)
|
|
55
|
+
[](https://www.python.org/downloads/)
|
|
56
|
+
[](https://opensource.org/licenses/MIT)
|
|
57
|
+
|
|
58
|
+
**AI-powered CLI coding assistant**
|
|
59
|
+
|
|
60
|
+

|
|
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
|
+

|
|
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
|
+
[](https://badge.fury.io/py/tunacode-cli)
|
|
6
|
+
[](https://pepy.tech/project/tunacode-cli)
|
|
7
|
+
[](https://www.python.org/downloads/)
|
|
8
|
+
[](https://opensource.org/licenses/MIT)
|
|
9
|
+
|
|
10
|
+
**AI-powered CLI coding assistant**
|
|
11
|
+
|
|
12
|
+

|
|
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
|
+

|
|
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
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
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.
|