tunacode-cli 0.1.21__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tunacode-cli might be problematic. Click here for more details.
- tunacode/__init__.py +0 -0
- tunacode/cli/textual_repl.tcss +283 -0
- tunacode/configuration/__init__.py +1 -0
- tunacode/configuration/defaults.py +45 -0
- tunacode/configuration/models.py +147 -0
- tunacode/configuration/models_registry.json +1 -0
- tunacode/configuration/pricing.py +74 -0
- tunacode/configuration/settings.py +35 -0
- tunacode/constants.py +227 -0
- tunacode/core/__init__.py +6 -0
- tunacode/core/agents/__init__.py +39 -0
- tunacode/core/agents/agent_components/__init__.py +48 -0
- tunacode/core/agents/agent_components/agent_config.py +441 -0
- tunacode/core/agents/agent_components/agent_helpers.py +290 -0
- tunacode/core/agents/agent_components/message_handler.py +99 -0
- tunacode/core/agents/agent_components/node_processor.py +477 -0
- tunacode/core/agents/agent_components/response_state.py +129 -0
- tunacode/core/agents/agent_components/result_wrapper.py +51 -0
- tunacode/core/agents/agent_components/state_transition.py +112 -0
- tunacode/core/agents/agent_components/streaming.py +271 -0
- tunacode/core/agents/agent_components/task_completion.py +40 -0
- tunacode/core/agents/agent_components/tool_buffer.py +44 -0
- tunacode/core/agents/agent_components/tool_executor.py +101 -0
- tunacode/core/agents/agent_components/truncation_checker.py +37 -0
- tunacode/core/agents/delegation_tools.py +109 -0
- tunacode/core/agents/main.py +545 -0
- tunacode/core/agents/prompts.py +66 -0
- tunacode/core/agents/research_agent.py +231 -0
- tunacode/core/compaction.py +218 -0
- tunacode/core/prompting/__init__.py +27 -0
- tunacode/core/prompting/loader.py +66 -0
- tunacode/core/prompting/prompting_engine.py +98 -0
- tunacode/core/prompting/sections.py +50 -0
- tunacode/core/prompting/templates.py +69 -0
- tunacode/core/state.py +409 -0
- tunacode/exceptions.py +313 -0
- tunacode/indexing/__init__.py +5 -0
- tunacode/indexing/code_index.py +432 -0
- tunacode/indexing/constants.py +86 -0
- tunacode/lsp/__init__.py +112 -0
- tunacode/lsp/client.py +351 -0
- tunacode/lsp/diagnostics.py +19 -0
- tunacode/lsp/servers.py +101 -0
- tunacode/prompts/default_prompt.md +952 -0
- tunacode/prompts/research/sections/agent_role.xml +5 -0
- tunacode/prompts/research/sections/constraints.xml +14 -0
- tunacode/prompts/research/sections/output_format.xml +57 -0
- tunacode/prompts/research/sections/tool_use.xml +23 -0
- tunacode/prompts/sections/advanced_patterns.xml +255 -0
- tunacode/prompts/sections/agent_role.xml +8 -0
- tunacode/prompts/sections/completion.xml +10 -0
- tunacode/prompts/sections/critical_rules.xml +37 -0
- tunacode/prompts/sections/examples.xml +220 -0
- tunacode/prompts/sections/output_style.xml +94 -0
- tunacode/prompts/sections/parallel_exec.xml +105 -0
- tunacode/prompts/sections/search_pattern.xml +100 -0
- tunacode/prompts/sections/system_info.xml +6 -0
- tunacode/prompts/sections/tool_use.xml +84 -0
- tunacode/prompts/sections/user_instructions.xml +3 -0
- tunacode/py.typed +0 -0
- tunacode/templates/__init__.py +5 -0
- tunacode/templates/loader.py +15 -0
- tunacode/tools/__init__.py +10 -0
- tunacode/tools/authorization/__init__.py +29 -0
- tunacode/tools/authorization/context.py +32 -0
- tunacode/tools/authorization/factory.py +20 -0
- tunacode/tools/authorization/handler.py +58 -0
- tunacode/tools/authorization/notifier.py +35 -0
- tunacode/tools/authorization/policy.py +19 -0
- tunacode/tools/authorization/requests.py +119 -0
- tunacode/tools/authorization/rules.py +72 -0
- tunacode/tools/bash.py +222 -0
- tunacode/tools/decorators.py +213 -0
- tunacode/tools/glob.py +353 -0
- tunacode/tools/grep.py +468 -0
- tunacode/tools/grep_components/__init__.py +9 -0
- tunacode/tools/grep_components/file_filter.py +93 -0
- tunacode/tools/grep_components/pattern_matcher.py +158 -0
- tunacode/tools/grep_components/result_formatter.py +87 -0
- tunacode/tools/grep_components/search_result.py +34 -0
- tunacode/tools/list_dir.py +205 -0
- tunacode/tools/prompts/bash_prompt.xml +10 -0
- tunacode/tools/prompts/glob_prompt.xml +7 -0
- tunacode/tools/prompts/grep_prompt.xml +10 -0
- tunacode/tools/prompts/list_dir_prompt.xml +7 -0
- tunacode/tools/prompts/read_file_prompt.xml +9 -0
- tunacode/tools/prompts/todoclear_prompt.xml +12 -0
- tunacode/tools/prompts/todoread_prompt.xml +16 -0
- tunacode/tools/prompts/todowrite_prompt.xml +28 -0
- tunacode/tools/prompts/update_file_prompt.xml +9 -0
- tunacode/tools/prompts/web_fetch_prompt.xml +11 -0
- tunacode/tools/prompts/write_file_prompt.xml +7 -0
- tunacode/tools/react.py +111 -0
- tunacode/tools/read_file.py +68 -0
- tunacode/tools/todo.py +222 -0
- tunacode/tools/update_file.py +62 -0
- tunacode/tools/utils/__init__.py +1 -0
- tunacode/tools/utils/ripgrep.py +311 -0
- tunacode/tools/utils/text_match.py +352 -0
- tunacode/tools/web_fetch.py +245 -0
- tunacode/tools/write_file.py +34 -0
- tunacode/tools/xml_helper.py +34 -0
- tunacode/types/__init__.py +166 -0
- tunacode/types/base.py +94 -0
- tunacode/types/callbacks.py +53 -0
- tunacode/types/dataclasses.py +121 -0
- tunacode/types/pydantic_ai.py +31 -0
- tunacode/types/state.py +122 -0
- tunacode/ui/__init__.py +6 -0
- tunacode/ui/app.py +542 -0
- tunacode/ui/commands/__init__.py +430 -0
- tunacode/ui/components/__init__.py +1 -0
- tunacode/ui/headless/__init__.py +5 -0
- tunacode/ui/headless/output.py +72 -0
- tunacode/ui/main.py +252 -0
- tunacode/ui/renderers/__init__.py +41 -0
- tunacode/ui/renderers/errors.py +197 -0
- tunacode/ui/renderers/panels.py +550 -0
- tunacode/ui/renderers/search.py +314 -0
- tunacode/ui/renderers/tools/__init__.py +21 -0
- tunacode/ui/renderers/tools/bash.py +247 -0
- tunacode/ui/renderers/tools/diagnostics.py +186 -0
- tunacode/ui/renderers/tools/glob.py +226 -0
- tunacode/ui/renderers/tools/grep.py +228 -0
- tunacode/ui/renderers/tools/list_dir.py +198 -0
- tunacode/ui/renderers/tools/read_file.py +226 -0
- tunacode/ui/renderers/tools/research.py +294 -0
- tunacode/ui/renderers/tools/update_file.py +237 -0
- tunacode/ui/renderers/tools/web_fetch.py +182 -0
- tunacode/ui/repl_support.py +226 -0
- tunacode/ui/screens/__init__.py +16 -0
- tunacode/ui/screens/model_picker.py +303 -0
- tunacode/ui/screens/session_picker.py +181 -0
- tunacode/ui/screens/setup.py +218 -0
- tunacode/ui/screens/theme_picker.py +90 -0
- tunacode/ui/screens/update_confirm.py +69 -0
- tunacode/ui/shell_runner.py +129 -0
- tunacode/ui/styles/layout.tcss +98 -0
- tunacode/ui/styles/modals.tcss +38 -0
- tunacode/ui/styles/panels.tcss +81 -0
- tunacode/ui/styles/theme-nextstep.tcss +303 -0
- tunacode/ui/styles/widgets.tcss +33 -0
- tunacode/ui/styles.py +18 -0
- tunacode/ui/widgets/__init__.py +23 -0
- tunacode/ui/widgets/command_autocomplete.py +62 -0
- tunacode/ui/widgets/editor.py +402 -0
- tunacode/ui/widgets/file_autocomplete.py +47 -0
- tunacode/ui/widgets/messages.py +46 -0
- tunacode/ui/widgets/resource_bar.py +182 -0
- tunacode/ui/widgets/status_bar.py +98 -0
- tunacode/utils/__init__.py +0 -0
- tunacode/utils/config/__init__.py +13 -0
- tunacode/utils/config/user_configuration.py +91 -0
- tunacode/utils/messaging/__init__.py +10 -0
- tunacode/utils/messaging/message_utils.py +34 -0
- tunacode/utils/messaging/token_counter.py +77 -0
- tunacode/utils/parsing/__init__.py +13 -0
- tunacode/utils/parsing/command_parser.py +55 -0
- tunacode/utils/parsing/json_utils.py +188 -0
- tunacode/utils/parsing/retry.py +146 -0
- tunacode/utils/parsing/tool_parser.py +267 -0
- tunacode/utils/security/__init__.py +15 -0
- tunacode/utils/security/command.py +106 -0
- tunacode/utils/system/__init__.py +25 -0
- tunacode/utils/system/gitignore.py +155 -0
- tunacode/utils/system/paths.py +190 -0
- tunacode/utils/ui/__init__.py +9 -0
- tunacode/utils/ui/file_filter.py +135 -0
- tunacode/utils/ui/helpers.py +24 -0
- tunacode_cli-0.1.21.dist-info/METADATA +170 -0
- tunacode_cli-0.1.21.dist-info/RECORD +174 -0
- tunacode_cli-0.1.21.dist-info/WHEEL +4 -0
- tunacode_cli-0.1.21.dist-info/entry_points.txt +2 -0
- tunacode_cli-0.1.21.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
tunacode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
tunacode/constants.py,sha256=BoRbr8KF6D0LJYEVFFNRJHAQbMipCWi3DuIJ6UQhtTg,6221
|
|
3
|
+
tunacode/exceptions.py,sha256=9QgK4pc57lzjsJ4vaSWYB9ruOUMFtJcK6A5y7DTi4ik,10011
|
|
4
|
+
tunacode/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
tunacode/cli/textual_repl.tcss,sha256=Zi4Bo8YVv8nWYemOrf_zPIjBovA-CfHoncZqjS7fPrI,6095
|
|
6
|
+
tunacode/configuration/__init__.py,sha256=MbVXy8bGu0yKehzgdgZ_mfWlYGvIdb1dY2Ly75nfuPE,17
|
|
7
|
+
tunacode/configuration/defaults.py,sha256=uI8w4lGz8Sh9ZeYuvSnSb_TNmy3AZuzX_s9vf-cnqeg,1644
|
|
8
|
+
tunacode/configuration/models.py,sha256=uk-fRhS6wezlhy7chT3IQareNqV0T_humtxPzLadAq8,4222
|
|
9
|
+
tunacode/configuration/models_registry.json,sha256=P-ZmwLf2EFc8-pz65KUlkVxquhV433pl9r3fZj6WK40,848632
|
|
10
|
+
tunacode/configuration/pricing.py,sha256=lsmDRcL-cLR1SEURsUyJfhqOMh_MQRV2aRBsAF-_LEE,2252
|
|
11
|
+
tunacode/configuration/settings.py,sha256=2Au6U9DusgVSBCPP0i5B5sXtVRC5SeApXkze713gtFY,1026
|
|
12
|
+
tunacode/core/__init__.py,sha256=X_qrgtH_2D3d7XyTFQHAL74uOu3Ud8uynt1ikYKCIi4,167
|
|
13
|
+
tunacode/core/compaction.py,sha256=vD653-KbgKE71KAdw8PJqxCG3O_-wUcvfKxlPvaCP68,6620
|
|
14
|
+
tunacode/core/state.py,sha256=EWKPl8xZNHL_gEETpv6ydc-LzH8tJLSotlqxQ8id6_k,15805
|
|
15
|
+
tunacode/core/agents/__init__.py,sha256=B3ksbaNAyrlTHN2onDn_83wncj5WBlhj1V2r6FvqsoI,831
|
|
16
|
+
tunacode/core/agents/delegation_tools.py,sha256=o1t9BCmrSlNajY4aN0shuuAmCcmhY2xsTOgzjiO6jj4,4165
|
|
17
|
+
tunacode/core/agents/main.py,sha256=WRdv5BuTyUm4u1UDGQWRbQeIrfHlXqOIKDhyMSj8ubU,20408
|
|
18
|
+
tunacode/core/agents/prompts.py,sha256=Eps3qQm8zdgPnyYOvRYwINMGVa71ttuqGlgtH17-3ag,2357
|
|
19
|
+
tunacode/core/agents/research_agent.py,sha256=7vno4jVUCvZV5nqI_VCg74Ooi6chj3w1_2CQQayrUZw,8395
|
|
20
|
+
tunacode/core/agents/agent_components/__init__.py,sha256=FDw5nF_t6RmVwkY99e3Jopgc9OyRGLuJkuLA2JQhSTg,1461
|
|
21
|
+
tunacode/core/agents/agent_components/agent_config.py,sha256=g_zAmj-5aEoIqjIFdGFVA7AQ7dXGGx_QUmy10tu-iPI,17038
|
|
22
|
+
tunacode/core/agents/agent_components/agent_helpers.py,sha256=KVD9VgUwI2L6fWRlAP9_RuDgdF6XZKCZpRXsUXFCa3A,10500
|
|
23
|
+
tunacode/core/agents/agent_components/message_handler.py,sha256=RswLyhtA2Zx7XxtbdqZGXsNSDMPw9FPJwXxgdaPqPXI,3624
|
|
24
|
+
tunacode/core/agents/agent_components/node_processor.py,sha256=lik0iSjRNbOILpb3y6mbtHas3MMBD4ln_TznwBO9VpQ,18597
|
|
25
|
+
tunacode/core/agents/agent_components/response_state.py,sha256=gnnYGl6WtOEDgY_FjTWbNH_hTQlADf8UI1_Z5XeDlD0,5030
|
|
26
|
+
tunacode/core/agents/agent_components/result_wrapper.py,sha256=GsyzxhxVjme6TCn6eXzxS9df7lKdh_PMB2tCbcTrwDk,1793
|
|
27
|
+
tunacode/core/agents/agent_components/state_transition.py,sha256=reI4DUwxCYzWaMmkxIkuC_bHhripb9SnKn0gnE_dT5c,4012
|
|
28
|
+
tunacode/core/agents/agent_components/streaming.py,sha256=hW_Y2YS6U2e3XmwVlP_Hf_pT2UUvojALfki3pxyiPto,13619
|
|
29
|
+
tunacode/core/agents/agent_components/task_completion.py,sha256=_ugLdm1kqU0Vlj0sHsodcRSvLYE027Ej_Wqs5dv0oG0,1168
|
|
30
|
+
tunacode/core/agents/agent_components/tool_buffer.py,sha256=k-4C0IG2pUD7-Kn8cPOl7Ez7guMgMk6YZAhAujV7NSg,1501
|
|
31
|
+
tunacode/core/agents/agent_components/tool_executor.py,sha256=oaqcqNrnSwQvyErZuCni-fjhO0MrKBoKnGc0HaeRJ7s,3231
|
|
32
|
+
tunacode/core/agents/agent_components/truncation_checker.py,sha256=1sM1p8dJay0NrWkSMLcoLvs-E-U7cQzosVVGZAUgKKg,1282
|
|
33
|
+
tunacode/core/prompting/__init__.py,sha256=hJcuUxhSJNMLtl7lS0thRc3q0c0dfe9z726TPJqUzIA,696
|
|
34
|
+
tunacode/core/prompting/loader.py,sha256=VN7y1siL92H5JbvlrUCq4zYmyvOND4twpvIAftdfp6k,1856
|
|
35
|
+
tunacode/core/prompting/prompting_engine.py,sha256=Vdc31Y7PYIj-J5VsaS3q-MilCEdTE9_ZyEc7WNq8vnc,3022
|
|
36
|
+
tunacode/core/prompting/sections.py,sha256=so8MzmZvgGXq4KhZG-VoFIz-v1TOq8AxK9iWqjHPB_U,1355
|
|
37
|
+
tunacode/core/prompting/templates.py,sha256=hE0jcLqeldaa3t3ct7C8G08A3S9s8DIzkLZoSooOWgM,907
|
|
38
|
+
tunacode/indexing/__init__.py,sha256=ws31piHtlTY9EJzyThlULq4XKs-ZmpiDibrizjeKfMI,126
|
|
39
|
+
tunacode/indexing/code_index.py,sha256=uT0PR5WSy5ucqqwnnaqz49jH6q_vZHAX10JPuEtEN9A,15219
|
|
40
|
+
tunacode/indexing/constants.py,sha256=4HsLNoBRsHx7HWVkH4TyMpESCeboqeboSknrx44iyoE,1214
|
|
41
|
+
tunacode/lsp/__init__.py,sha256=m9VP1zkbJ5n-aFGaoem8VEb-x0-jG-d9yMe350zwpkc,3066
|
|
42
|
+
tunacode/lsp/client.py,sha256=t6citu1jBCfHvFlneRxabtsKbIoXdtLCYXTKMgS5Sk4,11170
|
|
43
|
+
tunacode/lsp/diagnostics.py,sha256=YY79q5zaoGkslOZMIzvf5Z5n3hHrGPeZOiCSlTAsaUc,634
|
|
44
|
+
tunacode/lsp/servers.py,sha256=QBn7AMcr8_YoWxdrH0wIdat9Zp1mYlvP2Nih5vkwZHQ,2082
|
|
45
|
+
tunacode/prompts/default_prompt.md,sha256=72TUTbxFs6HpaEtJp-cVMZAIiugcnchkaieXTwgqMuM,34340
|
|
46
|
+
tunacode/prompts/research/sections/agent_role.xml,sha256=FcNdeBRx7QfeAIeu-hfdUpw5HWFf9U08SDIn9nuUKS0,423
|
|
47
|
+
tunacode/prompts/research/sections/constraints.xml,sha256=MKKRvdWjRmFBPTy5QLFH5heMtA3tyU-N_dYdF3MSfhg,777
|
|
48
|
+
tunacode/prompts/research/sections/output_format.xml,sha256=wSrbO81TtvaLe0t-bCC4FyzfwaEjwrYiIZTHOoZTHY0,2239
|
|
49
|
+
tunacode/prompts/research/sections/tool_use.xml,sha256=tc58J71fTqAS_Pmu7vzt-WJQV4YnrsZJvXGhG7kgnJQ,1175
|
|
50
|
+
tunacode/prompts/sections/advanced_patterns.xml,sha256=iwwBXVnurfDrtxwVX8LiJhf2iWIld7LhWKfyBlbLr-4,8130
|
|
51
|
+
tunacode/prompts/sections/agent_role.xml,sha256=SacYuKORHLSOSz0BIQJdyNYzFEgj9x_OQnyfsou1q7Y,383
|
|
52
|
+
tunacode/prompts/sections/completion.xml,sha256=4I90ADqrPVhmFiVqOoV5oq70-uGunDmassEEUQPTzIg,467
|
|
53
|
+
tunacode/prompts/sections/critical_rules.xml,sha256=uF1aBGmVgQWtN4-tqCh5mf4yxhPoEhPkPTW0ON9abuk,3053
|
|
54
|
+
tunacode/prompts/sections/examples.xml,sha256=EEsqoxmjvGuo8jgXbGgCI_4cV3XeJeZNfJia6mOc15I,6178
|
|
55
|
+
tunacode/prompts/sections/output_style.xml,sha256=ffqooedFIbdWjldi-xnTJP7kgcTuG8jdDdx3arZt-Cw,4689
|
|
56
|
+
tunacode/prompts/sections/parallel_exec.xml,sha256=HTBTtZsmwdg18tKnF4xaMJEn-7y98HKnZJD0JJuGJfM,3408
|
|
57
|
+
tunacode/prompts/sections/search_pattern.xml,sha256=25ce2gDsFiV9s-0B3urU2VxcU31us8TMtl110oNqzNE,3221
|
|
58
|
+
tunacode/prompts/sections/system_info.xml,sha256=7ofyv9Gy-CJNYFIATzIsdWI7nfBH-9QdYpI3OdEmPcc,132
|
|
59
|
+
tunacode/prompts/sections/tool_use.xml,sha256=G5nbcYpofEzrb6WB8FNMVuv66VMLgEM3riSEJsV9aIQ,4498
|
|
60
|
+
tunacode/prompts/sections/user_instructions.xml,sha256=jDFH9aN1IV-Uo4pfPSdnk4xHl-Bnc9ggCQ9g3eXuD70,116
|
|
61
|
+
tunacode/templates/__init__.py,sha256=_slUrclbuWms5b72rA9NaV6W-cb7oy0DFLEJQ3pbbOU,90
|
|
62
|
+
tunacode/templates/loader.py,sha256=WxAHMLCclRgxxYB_3hiUmK8YhT0Wh7-DLmKU-Mbyqok,358
|
|
63
|
+
tunacode/tools/__init__.py,sha256=ECBuUWWF1JjHW42CCceaPKgVTQyuljbz3RlhuA2fe2s,314
|
|
64
|
+
tunacode/tools/bash.py,sha256=Glt20YyDK1Epuid01GQ4lC-PF7WtAa0tojAWxxkXfdk,7583
|
|
65
|
+
tunacode/tools/decorators.py,sha256=oiSqjNmvrkXELueWvPtBgGTW0hxLwC-hgBKwIEWveh4,6825
|
|
66
|
+
tunacode/tools/glob.py,sha256=sUSvbXWltKMY8ulZ2fGGOs3iE482IEc01bqJPx9j3xg,11511
|
|
67
|
+
tunacode/tools/grep.py,sha256=Gy_cSQ6y9iW_txQHR220VoyQ3by6rD8cPawX_UJJkS4,18596
|
|
68
|
+
tunacode/tools/list_dir.py,sha256=WnBFWN-EfzTsXiLy7ghZC7yjrsY9JY7_66lJKpsidU8,5933
|
|
69
|
+
tunacode/tools/react.py,sha256=dz0EB7_ml60wnBtChGyeCvQQAjS_SgeQ6px6VR7ChBA,3643
|
|
70
|
+
tunacode/tools/read_file.py,sha256=834pBbOKDTxrkr7V5fj5oW8sqrf_CnE3vfkgJ-k2Skc,2077
|
|
71
|
+
tunacode/tools/todo.py,sha256=gOEE6wJPfusrfTeAq6eZygwU5cK1Gp6qgX835NQ7_hY,7024
|
|
72
|
+
tunacode/tools/update_file.py,sha256=jHgjSi3BPZwDwTEfHMCbGmZrz1WAKciDQ3wRVn0MGQw,2010
|
|
73
|
+
tunacode/tools/web_fetch.py,sha256=mQqBbJYBWIMiicoeVtUh7g45dGOrlkMbT7o0L1EF00Y,7923
|
|
74
|
+
tunacode/tools/write_file.py,sha256=C_gNr6xl9S6lHk_THvzV8A4sxJFw9bpyOVjkWNZef9c,963
|
|
75
|
+
tunacode/tools/xml_helper.py,sha256=_l9FrD7bJKKCHR6hpmLikA6G5Xj63VuJ5wSW-jLarkI,922
|
|
76
|
+
tunacode/tools/authorization/__init__.py,sha256=MsJMtK5MDcIuX36X54nk9Bg_LsB-2-UFYvkQHizXjI4,757
|
|
77
|
+
tunacode/tools/authorization/context.py,sha256=oSlRsowY5XjDbJo1fFqFuL99JPcSI4ZAU0okd4EYCuc,966
|
|
78
|
+
tunacode/tools/authorization/factory.py,sha256=szFMCc6GZGRrgtv0hnedC_f8cKSezhkxgEIoPv-8tZs,485
|
|
79
|
+
tunacode/tools/authorization/handler.py,sha256=f1Sdq2cbEW2PWulDwXESa9-3nWin9Cdj0MDb2Phg9sE,2012
|
|
80
|
+
tunacode/tools/authorization/notifier.py,sha256=c53VOMTug2N3CgmIUvX4_JGcCZ6tIniBdIq1_NXgGTY,1088
|
|
81
|
+
tunacode/tools/authorization/policy.py,sha256=EcMqhYqKFXNfYV3ScSzVgh-aRQYp0DB46hEuRFbr1GM,616
|
|
82
|
+
tunacode/tools/authorization/requests.py,sha256=fTyUwYWCX7zFqHzKTMbGI_H0uk9qrSRg1A8RPwVmYVY,4015
|
|
83
|
+
tunacode/tools/authorization/rules.py,sha256=Zk6wbnehjvj4MDFKMFQiFrBV8vYCu1FCajBXIfFIbbg,1963
|
|
84
|
+
tunacode/tools/grep_components/__init__.py,sha256=qy3kwzxOiE6ydlRzpCC39TaIp5BJc5X_bRfXukiu4eM,266
|
|
85
|
+
tunacode/tools/grep_components/file_filter.py,sha256=tUE3ZLIxEJpFNw_LOOEYYpYfU_zPY5nXnBe9li0Gb5M,3143
|
|
86
|
+
tunacode/tools/grep_components/pattern_matcher.py,sha256=Y0HSX09yku-Kqj2Ecek5pGKTV34Ax2wV-ASeqj18wn4,5210
|
|
87
|
+
tunacode/tools/grep_components/result_formatter.py,sha256=ggduGIsdwBjmKXMxbQRP94WnDcopQwO9YzldCv5GYQo,3223
|
|
88
|
+
tunacode/tools/grep_components/search_result.py,sha256=DsmvcOziOiToSNQJLcTrJLTi3mQ3vmNJcW9LHyflziU,829
|
|
89
|
+
tunacode/tools/prompts/bash_prompt.xml,sha256=ijqyBhslC6Pnne6FZ7-3Gk5oFau5SVqdouv6ExsL_0E,387
|
|
90
|
+
tunacode/tools/prompts/glob_prompt.xml,sha256=3OYKLjTNWFtPU0C4tmJdle-SVXw_Obkqvg8G3ggGOmY,246
|
|
91
|
+
tunacode/tools/prompts/grep_prompt.xml,sha256=YJGFSQBAYtE4u2Bjkb73R5YialHwEIO0at6ctsXaafo,384
|
|
92
|
+
tunacode/tools/prompts/list_dir_prompt.xml,sha256=zewt2bUr52KykBIW_UQQV1BZStOC0jpEUMB8u5rXjuA,208
|
|
93
|
+
tunacode/tools/prompts/read_file_prompt.xml,sha256=QGZDcoK6M9oM4s8NpJLLAM41HheQsskW0nSGo6-satw,251
|
|
94
|
+
tunacode/tools/prompts/todoclear_prompt.xml,sha256=TVOPszPZ7wehg_uqUavof5LrJzINiyL3BvBaEWdQc7E,303
|
|
95
|
+
tunacode/tools/prompts/todoread_prompt.xml,sha256=VE1E7uWWzPQbbp8R2s1lyttCBI4ZBIYr88vajDpHpSA,422
|
|
96
|
+
tunacode/tools/prompts/todowrite_prompt.xml,sha256=vc-Y11646O2EOKue_Dbxtf1MTHR5Zrua_jBH3Tf_ZNQ,926
|
|
97
|
+
tunacode/tools/prompts/update_file_prompt.xml,sha256=nSafD-z3TkK_g-n71WjwxuWgjCEifjZlJCtMjoBnOto,309
|
|
98
|
+
tunacode/tools/prompts/web_fetch_prompt.xml,sha256=o6IKjY2UiJ2kGivS_8-a0h1SsXoFc0urymgIR3wqM7w,399
|
|
99
|
+
tunacode/tools/prompts/write_file_prompt.xml,sha256=oGy3h7EeGsQEAYwmoeEmb7usesO55nEKaMaf-yVCScA,227
|
|
100
|
+
tunacode/tools/utils/__init__.py,sha256=pSmvJoDh9aaD1m9b5uvsmqztnhPJshVqjTW0Yb9jAnU,33
|
|
101
|
+
tunacode/tools/utils/ripgrep.py,sha256=qyrasQGg4fbl6UpJnHZlYkWBOSmmIHTsJpxnJxxxhBM,9648
|
|
102
|
+
tunacode/tools/utils/text_match.py,sha256=Ona7mbgFyhuB8kjJGeLaU-jrTIkh2YmnaKkGUVaxxQE,12368
|
|
103
|
+
tunacode/types/__init__.py,sha256=HJIwwxhrPNcZgbJzO_zzCIAmFXtvnGb6X-x9mK9Xm64,3227
|
|
104
|
+
tunacode/types/base.py,sha256=DSlpFLr4_U2p9WmPQnNGwI5SJZOuiWr5iZVvv79qQHs,1760
|
|
105
|
+
tunacode/types/callbacks.py,sha256=IUujr36tORNCb1pf1qXBx4PZn9SxmT7fu8CEysAOs5o,1371
|
|
106
|
+
tunacode/types/dataclasses.py,sha256=guG8feEhmrYNraECmqu-1ILIvI-9gRCPyPp3m5Ru9Aw,2417
|
|
107
|
+
tunacode/types/pydantic_ai.py,sha256=xbR0CLNDAoS72_mcBHvnrOdhkY9kXGdKnnTMvQUJ4co,722
|
|
108
|
+
tunacode/types/state.py,sha256=oZPE4eic3A6Ge7FcRdhMgfCK-CKzbto2nEQ9y5dkw0E,3248
|
|
109
|
+
tunacode/ui/__init__.py,sha256=XFReo3Sa2Sszr88e4MIRi6Gesav1DWf53q532HHF3jk,171
|
|
110
|
+
tunacode/ui/app.py,sha256=p4BsdukVMqplqV0rEUJ9dp0R0WED_Wlsk-L6V5pWZ2U,20463
|
|
111
|
+
tunacode/ui/main.py,sha256=HFPo8Jg1MMXXveTKf-Pvr__iqRDjDbT4SWrX2ITbV30,8707
|
|
112
|
+
tunacode/ui/repl_support.py,sha256=AVNr4a_WDY2_v7HYiLynjmG_JC4fZBQLBa9fVVV3jM8,7692
|
|
113
|
+
tunacode/ui/shell_runner.py,sha256=HtgoMcJaGkvBKP6qkeTB_Wyt2Csqa6qeyG_VH3Ss-2M,3895
|
|
114
|
+
tunacode/ui/styles.py,sha256=ReMk0b2NZMueuLhswvPwuZRtQhlTipr0-KrW3aL8f3w,522
|
|
115
|
+
tunacode/ui/commands/__init__.py,sha256=erSHwWapN60wiHyynir1Db9T_hoqDoKEuJCf3IrjLVQ,14939
|
|
116
|
+
tunacode/ui/components/__init__.py,sha256=HebseD9L9wNRANA5XOXVuQmSC3jh3spXJjn5RsK7RCo,49
|
|
117
|
+
tunacode/ui/headless/__init__.py,sha256=yKIiFdJqdgDb4xr9eJlflKgfZ_q5-yCzkyJckjOe9PE,117
|
|
118
|
+
tunacode/ui/headless/output.py,sha256=PKf4wg21QF1d9FOcEqnVeAA_FpChi2kARcngMtN6FOk,2003
|
|
119
|
+
tunacode/ui/renderers/__init__.py,sha256=rx-_Cdq1-JraQ-sy98Z6T1VVXv_7Sc69FQ5344vwgW0,881
|
|
120
|
+
tunacode/ui/renderers/errors.py,sha256=aiRoURoavYWEpLrt2ZIZY-o7am5UPmbmP5Er_aPFtaY,5618
|
|
121
|
+
tunacode/ui/renderers/panels.py,sha256=-6RbFRsWK-Ieb8La_ldVxjehyjUh_Bs6iVcocVQtM64,17207
|
|
122
|
+
tunacode/ui/renderers/search.py,sha256=bEQOOr5YFTQr4giA9P2qdotsxN4ww-NsOiuGEE71Xlc,10025
|
|
123
|
+
tunacode/ui/renderers/tools/__init__.py,sha256=72g4U6s6i9bakrvEssou1AtAF6ncjW5DRtRoffO7yLg,787
|
|
124
|
+
tunacode/ui/renderers/tools/bash.py,sha256=QsqL74eEfGhdGBM3lQFJyWVa9EKB9dChRzpmeyof2wM,6763
|
|
125
|
+
tunacode/ui/renderers/tools/diagnostics.py,sha256=JcpUUs8b0gOWpGROnRorGlk7eyEVZgLxj98aNCujtqM,5608
|
|
126
|
+
tunacode/ui/renderers/tools/glob.py,sha256=fIk5FTzVhDR_mxSYHiFD-880dgKkV4x0SmB2sjw13uk,6092
|
|
127
|
+
tunacode/ui/renderers/tools/grep.py,sha256=wtVQzxtK5IvWJaAusw7Y_obdmqfUJSvnwKuIAYmmZJs,6749
|
|
128
|
+
tunacode/ui/renderers/tools/list_dir.py,sha256=r3oMNXv3vFNj-GstXdvE3FH3Lb4xYgvSVllFrWX0OLQ,5624
|
|
129
|
+
tunacode/ui/renderers/tools/read_file.py,sha256=umuR292gW5IS07k4H3_AcjztzTCQpUimUVVeoY-LRXc,6163
|
|
130
|
+
tunacode/ui/renderers/tools/research.py,sha256=bLQejtDZEsZOh2QXVHyUKdC4YUbGeAmTzT0oV7GBZiA,9390
|
|
131
|
+
tunacode/ui/renderers/tools/update_file.py,sha256=ZAJn38lb6X2txxsodAeZ0mQVJgqmlL-YCbqzvkybcuY,6618
|
|
132
|
+
tunacode/ui/renderers/tools/web_fetch.py,sha256=iOZEnrZVCj4TRLL9F7V2DM3FaD8hCv3nOOqq_yiCflM,4806
|
|
133
|
+
tunacode/ui/screens/__init__.py,sha256=H939DEqsG3P9F_jm7XFg4pZP_A-RZNDg5EOmNJd1fdk,540
|
|
134
|
+
tunacode/ui/screens/model_picker.py,sha256=mEOsi3wUuExxzR_IFoJttafuzONXBzowFMqcp3i0LIQ,9637
|
|
135
|
+
tunacode/ui/screens/session_picker.py,sha256=0mHOjyfQAQr1fypGKiqoAJAoMp-_U1x1py2aI0VO4dU,5524
|
|
136
|
+
tunacode/ui/screens/setup.py,sha256=2MCRr8LrMRx6EPTwIrnTRvaJPH69cns0cJAVVlrbH4A,6249
|
|
137
|
+
tunacode/ui/screens/theme_picker.py,sha256=BS6BUy1TQ6rgXFFpryeMhoMeKa9eTqLlYtjLpI1yudw,2524
|
|
138
|
+
tunacode/ui/screens/update_confirm.py,sha256=fJ5Bx1NW8YLLTnZ_-DuIZJzg_dQl9zZGl4ZkJ6owTTU,1776
|
|
139
|
+
tunacode/ui/styles/layout.tcss,sha256=3krjfAkm2V11udnq4zqe0LrGllMJp07x-nE0nF9_PNw,2982
|
|
140
|
+
tunacode/ui/styles/modals.tcss,sha256=t1u3vkb4y8Yl6H4hKBWtYIdeFwawvPleq2PBqitd15o,634
|
|
141
|
+
tunacode/ui/styles/panels.tcss,sha256=T3SH7bj6MD2FPxbxdZkCAsLO779h-UyHsIaQiXzBAQc,1447
|
|
142
|
+
tunacode/ui/styles/theme-nextstep.tcss,sha256=P-c5sFVA9WSDL5_qTcRYwbetu1hSnGMHHH5LO4ZeXIo,6381
|
|
143
|
+
tunacode/ui/styles/widgets.tcss,sha256=Ks4aag6El085lunTL8p7aW0g7BRsfEbM6pNYbaFzImU,598
|
|
144
|
+
tunacode/ui/widgets/__init__.py,sha256=LHLyge7I3ZFHVfcU2KvkAolz0ATlsYFrwaEYJ3TbRSY,555
|
|
145
|
+
tunacode/ui/widgets/command_autocomplete.py,sha256=a-nKdGt5iZ_IFr_EJRGmnCL92IxbPdY5JXRzYKsjXYU,2431
|
|
146
|
+
tunacode/ui/widgets/editor.py,sha256=Ng5Bbw93i9tQfAYfKhtxmFBK6BFOSCDpZOucpNN2mPc,14750
|
|
147
|
+
tunacode/ui/widgets/file_autocomplete.py,sha256=iai3d-jQL7eXnL_J2c2luCxp5zjtZYlInkfaWpV52ME,1751
|
|
148
|
+
tunacode/ui/widgets/messages.py,sha256=-j5AatrE18kUAdwBJFboG1iMeWowUNt1tf--O4yDdEA,1235
|
|
149
|
+
tunacode/ui/widgets/resource_bar.py,sha256=xJPEoUZx3ijaIzp4weOROyL5S995c-jKWA6KhNdhW2k,5602
|
|
150
|
+
tunacode/ui/widgets/status_bar.py,sha256=5NixsXYjIk6WjanHQHvkMMVKszdhWhzvYCS_DMM1830,3396
|
|
151
|
+
tunacode/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
152
|
+
tunacode/utils/config/__init__.py,sha256=dYseNcTfldFF2Tt00ZWmi5iY0PZHTZPRYjUeL1_pxa4,249
|
|
153
|
+
tunacode/utils/config/user_configuration.py,sha256=6htoDD7X7-zBM6iHtq3XGGWRHxQePKP12ZcTAbxoOdI,3201
|
|
154
|
+
tunacode/utils/messaging/__init__.py,sha256=O7o_DF_wku0tKy7VzIC0-HtXOJIyOHEZmb5dB4rkT8I,304
|
|
155
|
+
tunacode/utils/messaging/message_utils.py,sha256=nrRIuSE0ngrXxvhY3Y6CqbHlTysdSYCZva_4M0hEvA0,1265
|
|
156
|
+
tunacode/utils/messaging/token_counter.py,sha256=-Jnx7WawUO2sT6-JSNH9icSoYmW4lq-ORCvB7F4NxZU,2150
|
|
157
|
+
tunacode/utils/parsing/__init__.py,sha256=XfNU9oy4bxL2okSzgNpbS5gQSW-4B_Z5KSyzh0Z89B8,269
|
|
158
|
+
tunacode/utils/parsing/command_parser.py,sha256=gpQwQnrmfux-OZNXWfhU7vFRHXpHo9jwWUVpGcIB2nk,1721
|
|
159
|
+
tunacode/utils/parsing/json_utils.py,sha256=sUoPfcA-ZjuFHOZO_hs1wpw7YYvyBkFoigGue3OvZS8,5374
|
|
160
|
+
tunacode/utils/parsing/retry.py,sha256=kO6U5yVmPFJKsLd1F2r09wj5Adeh42DhgSFrlf8OElE,4068
|
|
161
|
+
tunacode/utils/parsing/tool_parser.py,sha256=KJ7RxTP8xhdYnVcr-EMOo29bqTUMXY10M9OuOTTrWos,7257
|
|
162
|
+
tunacode/utils/security/__init__.py,sha256=JpkDBrD3xKlEROzHygmwkqnOi4-u1Yhx4Wmyxsd6SXQ,355
|
|
163
|
+
tunacode/utils/security/command.py,sha256=xpILa0sEbFcVVCmFy8x6moP-jgVEH8cEWRRPGT4dGKY,3561
|
|
164
|
+
tunacode/utils/system/__init__.py,sha256=vhZKX62YzHbJkRG7TN0EkKh3mQOiunONFCT1IEg783Y,509
|
|
165
|
+
tunacode/utils/system/gitignore.py,sha256=Kcc6d9WZabT7xojmj2eca-333JtC5ruLPRULnGkV2VU,4418
|
|
166
|
+
tunacode/utils/system/paths.py,sha256=NqrVZAtiuayLjkHpOXHhoFK3tvlCaCcaoYGG_kjkbks,5272
|
|
167
|
+
tunacode/utils/ui/__init__.py,sha256=3weQWW9YYZDhZz-f6wM_ekhJiIjQcMigXeAZAqiiIAM,208
|
|
168
|
+
tunacode/utils/ui/file_filter.py,sha256=048k1WmufkzKKSOSxT519_j9dcTBxS1yv-Qr4nkbZWM,3972
|
|
169
|
+
tunacode/utils/ui/helpers.py,sha256=ec5WYbhx-P6Zh47LL6ltyaHPJK9abA5UsWFmY5CF2pA,615
|
|
170
|
+
tunacode_cli-0.1.21.dist-info/METADATA,sha256=XuHZ1nMveMt2_YbjjbMVktLvXOZmoUbbG725GQbeHpI,5604
|
|
171
|
+
tunacode_cli-0.1.21.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
172
|
+
tunacode_cli-0.1.21.dist-info/entry_points.txt,sha256=pBNNa1Ikbt8pXk39eaj78hUIGx6noRGkOvpWuJ58szQ,50
|
|
173
|
+
tunacode_cli-0.1.21.dist-info/licenses/LICENSE,sha256=Btzdu2kIoMbdSp6OyCLupB1aRgpTCJ_szMimgEnpkkE,1056
|
|
174
|
+
tunacode_cli-0.1.21.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|