jarvis-ai-assistant 0.1.138__py3-none-any.whl → 0.1.141__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 jarvis-ai-assistant might be problematic. Click here for more details.

Files changed (85) hide show
  1. jarvis/__init__.py +1 -1
  2. jarvis/jarvis_agent/__init__.py +62 -14
  3. jarvis/jarvis_agent/builtin_input_handler.py +4 -14
  4. jarvis/jarvis_agent/main.py +1 -1
  5. jarvis/jarvis_agent/patch.py +37 -40
  6. jarvis/jarvis_agent/shell_input_handler.py +2 -3
  7. jarvis/jarvis_code_agent/code_agent.py +23 -30
  8. jarvis/jarvis_code_analysis/checklists/__init__.py +3 -0
  9. jarvis/jarvis_code_analysis/checklists/c_cpp.py +50 -0
  10. jarvis/jarvis_code_analysis/checklists/csharp.py +75 -0
  11. jarvis/jarvis_code_analysis/checklists/data_format.py +82 -0
  12. jarvis/jarvis_code_analysis/checklists/devops.py +107 -0
  13. jarvis/jarvis_code_analysis/checklists/docs.py +87 -0
  14. jarvis/jarvis_code_analysis/checklists/go.py +52 -0
  15. jarvis/jarvis_code_analysis/checklists/infrastructure.py +98 -0
  16. jarvis/jarvis_code_analysis/checklists/java.py +66 -0
  17. jarvis/jarvis_code_analysis/checklists/javascript.py +73 -0
  18. jarvis/jarvis_code_analysis/checklists/kotlin.py +107 -0
  19. jarvis/jarvis_code_analysis/checklists/loader.py +76 -0
  20. jarvis/jarvis_code_analysis/checklists/php.py +77 -0
  21. jarvis/jarvis_code_analysis/checklists/python.py +56 -0
  22. jarvis/jarvis_code_analysis/checklists/ruby.py +107 -0
  23. jarvis/jarvis_code_analysis/checklists/rust.py +58 -0
  24. jarvis/jarvis_code_analysis/checklists/shell.py +75 -0
  25. jarvis/jarvis_code_analysis/checklists/sql.py +72 -0
  26. jarvis/jarvis_code_analysis/checklists/swift.py +77 -0
  27. jarvis/jarvis_code_analysis/checklists/web.py +97 -0
  28. jarvis/jarvis_code_analysis/code_review.py +660 -0
  29. jarvis/jarvis_dev/main.py +61 -88
  30. jarvis/jarvis_git_squash/main.py +3 -3
  31. jarvis/jarvis_git_utils/git_commiter.py +242 -0
  32. jarvis/jarvis_init/main.py +62 -0
  33. jarvis/jarvis_platform/base.py +4 -0
  34. jarvis/jarvis_platform/kimi.py +173 -5
  35. jarvis/jarvis_platform/openai.py +3 -0
  36. jarvis/jarvis_platform/registry.py +1 -0
  37. jarvis/jarvis_platform/yuanbao.py +275 -5
  38. jarvis/jarvis_tools/ask_codebase.py +6 -9
  39. jarvis/jarvis_tools/ask_user.py +17 -5
  40. jarvis/jarvis_tools/base.py +3 -1
  41. jarvis/jarvis_tools/chdir.py +1 -0
  42. jarvis/jarvis_tools/create_code_agent.py +4 -3
  43. jarvis/jarvis_tools/create_sub_agent.py +1 -0
  44. jarvis/jarvis_tools/execute_script.py +170 -0
  45. jarvis/jarvis_tools/file_analyzer.py +90 -239
  46. jarvis/jarvis_tools/file_operation.py +99 -31
  47. jarvis/jarvis_tools/{find_methodolopy.py → find_methodology.py} +2 -1
  48. jarvis/jarvis_tools/lsp_get_diagnostics.py +2 -0
  49. jarvis/jarvis_tools/methodology.py +11 -11
  50. jarvis/jarvis_tools/read_code.py +2 -0
  51. jarvis/jarvis_tools/read_webpage.py +33 -196
  52. jarvis/jarvis_tools/registry.py +68 -131
  53. jarvis/jarvis_tools/search_web.py +14 -6
  54. jarvis/jarvis_tools/virtual_tty.py +399 -0
  55. jarvis/jarvis_utils/config.py +29 -3
  56. jarvis/jarvis_utils/embedding.py +0 -317
  57. jarvis/jarvis_utils/file_processors.py +343 -0
  58. jarvis/jarvis_utils/input.py +0 -1
  59. jarvis/jarvis_utils/methodology.py +94 -435
  60. jarvis/jarvis_utils/utils.py +207 -9
  61. {jarvis_ai_assistant-0.1.138.dist-info → jarvis_ai_assistant-0.1.141.dist-info}/METADATA +4 -4
  62. jarvis_ai_assistant-0.1.141.dist-info/RECORD +94 -0
  63. {jarvis_ai_assistant-0.1.138.dist-info → jarvis_ai_assistant-0.1.141.dist-info}/entry_points.txt +4 -4
  64. jarvis/jarvis_code_agent/file_select.py +0 -202
  65. jarvis/jarvis_platform/ai8.py +0 -268
  66. jarvis/jarvis_platform/ollama.py +0 -137
  67. jarvis/jarvis_platform/oyi.py +0 -307
  68. jarvis/jarvis_rag/file_processors.py +0 -138
  69. jarvis/jarvis_rag/main.py +0 -1734
  70. jarvis/jarvis_tools/code_review.py +0 -333
  71. jarvis/jarvis_tools/execute_python_script.py +0 -58
  72. jarvis/jarvis_tools/execute_shell.py +0 -97
  73. jarvis/jarvis_tools/execute_shell_script.py +0 -58
  74. jarvis/jarvis_tools/find_caller.py +0 -278
  75. jarvis/jarvis_tools/find_symbol.py +0 -295
  76. jarvis/jarvis_tools/function_analyzer.py +0 -331
  77. jarvis/jarvis_tools/git_commiter.py +0 -167
  78. jarvis/jarvis_tools/project_analyzer.py +0 -304
  79. jarvis/jarvis_tools/rag.py +0 -143
  80. jarvis/jarvis_tools/tool_generator.py +0 -221
  81. jarvis_ai_assistant-0.1.138.dist-info/RECORD +0 -85
  82. /jarvis/{jarvis_rag → jarvis_init}/__init__.py +0 -0
  83. {jarvis_ai_assistant-0.1.138.dist-info → jarvis_ai_assistant-0.1.141.dist-info}/LICENSE +0 -0
  84. {jarvis_ai_assistant-0.1.138.dist-info → jarvis_ai_assistant-0.1.141.dist-info}/WHEEL +0 -0
  85. {jarvis_ai_assistant-0.1.138.dist-info → jarvis_ai_assistant-0.1.141.dist-info}/top_level.txt +0 -0
@@ -1,85 +0,0 @@
1
- jarvis/__init__.py,sha256=pWmblmMIqI04itaFvKT9nNVf1WmTSC_qFSJ1mIDSzNw,50
2
- jarvis/jarvis_agent/__init__.py,sha256=LgZ-YqfdYBbpuxFXpJ0LkfqqD4M5VLbpg3GVGxUyIPM,21527
3
- jarvis/jarvis_agent/builtin_input_handler.py,sha256=ytUyFHsOofP9KMociGYljO6hwN-s8MrbeCf6AO-3Kuw,2784
4
- jarvis/jarvis_agent/file_input_handler.py,sha256=6rIF_FgC9_3UcQhFCmoMoECG4tjKaLBZZ5zDtBl037I,3235
5
- jarvis/jarvis_agent/jarvis.py,sha256=NmxVJ8KwSc4fumntNL1T5TWj-FvcRgssLeBhG4sA3xk,5368
6
- jarvis/jarvis_agent/main.py,sha256=j1hiMRUQiQlf_vIuL1-DGHei69pA8LPyGy8d8VpmsA0,2497
7
- jarvis/jarvis_agent/output_handler.py,sha256=4limQ-Kf-YYvQjT5SMjJIyyvD1DVG8tINv1A_qbv4ho,405
8
- jarvis/jarvis_agent/patch.py,sha256=7JNbzdS3iAI3UjCpg5tSCxcwTa9Dl3MkcVQXb41ojd4,19727
9
- jarvis/jarvis_agent/shell_input_handler.py,sha256=hgdaKyuQIXKjJA77VVEEeiTAqQQDASFSG8DsWeV3yiw,1138
10
- jarvis/jarvis_code_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- jarvis/jarvis_code_agent/code_agent.py,sha256=5Hk7fiovny9HLV3lid2qEd8qDjD7WlrSPlmfmPJAUl0,12876
12
- jarvis/jarvis_code_agent/file_select.py,sha256=tswdpDTHBZnICC0CQE0ROf1ogHDRLi5SKgAKkMHIrnQ,7920
13
- jarvis/jarvis_dev/main.py,sha256=Ieg1eT2x2TaOu7V2mucMfNqVEZKs6OUhV1giNNfqH9U,28956
14
- jarvis/jarvis_git_details/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
- jarvis/jarvis_git_details/main.py,sha256=YowncVxYyJ3y2EvGrZhAJeR4yizXp6aB3dqvoYTepFY,6117
16
- jarvis/jarvis_git_squash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- jarvis/jarvis_git_squash/main.py,sha256=rLMTMw2KpY5JSo55wyrpvw4C75kiLZB4oqt7LNaPPN0,2140
18
- jarvis/jarvis_lsp/base.py,sha256=CWfiqiQ6ZBc_lrW64Y1YAsFQeNPGoWcgTBGKgOrPVQg,2047
19
- jarvis/jarvis_lsp/cpp.py,sha256=SOXFhpipvbdhlwUZ7Rh0hdWGXWnrNOxZVsmTN6ZXoZk,3148
20
- jarvis/jarvis_lsp/go.py,sha256=h7vA0ArGSq9rhLZcrPXg5HdnEbKwnjVr322IkYI1jHw,3465
21
- jarvis/jarvis_lsp/python.py,sha256=xMqSVJn8w6CZEquSIO2I-6TJ7-YOABgpt3SjNOV6UAk,1860
22
- jarvis/jarvis_lsp/registry.py,sha256=LduRCEVH5y75IODdY8lZ3ZB3OHKpgwbZnYNxuhUmA_o,6439
23
- jarvis/jarvis_lsp/rust.py,sha256=9UOiYTUwMwz2raj1G8Uec0aB5Oun7wMiWYGDhC4JMpI,3693
24
- jarvis/jarvis_methodology/main.py,sha256=IBv87UOmdCailgooMtWEcqZcQHmNLhZD-kkGw5jOcVg,3375
25
- jarvis/jarvis_multi_agent/__init__.py,sha256=SX8lBErhltKyYRM-rymrMz3sJ0Zl3hBXrpsPdFgzkQc,4399
26
- jarvis/jarvis_multi_agent/main.py,sha256=aGuUC3YQmahabqwDwZXJjfQLYsZ3KIZdf8DZDlVNMe4,1543
27
- jarvis/jarvis_platform/__init__.py,sha256=WIJtD5J7lOrWLX2bsgZGkmlMcN0NOJsnh_reybmHPjg,58
28
- jarvis/jarvis_platform/ai8.py,sha256=OI1AnU8e5SiUOWSC_eLK6lCO-pNFLwq07hoGgmnYqNc,9154
29
- jarvis/jarvis_platform/base.py,sha256=ZOVVlajgZPZ397MFgW6qD_zDHCNVKWmMA_lShas-iAM,3082
30
- jarvis/jarvis_platform/kimi.py,sha256=ZIrV3qX38HgF6zSd7XAiwnws-VVWZd70TKaQkEQJMdQ,9567
31
- jarvis/jarvis_platform/ollama.py,sha256=Di4ail1qUFjd62denf-kPbo49mltik2jZPpIxP8K5G4,4804
32
- jarvis/jarvis_platform/openai.py,sha256=N0q8S3lnqtUJfhiwcH4LVX4-yJUDxvT5x0rA_B3P1Gc,4035
33
- jarvis/jarvis_platform/oyi.py,sha256=KAdrSuLWFD_xRCQlHCTF7d8hVPsKgvYyVrzBldUZLsw,11131
34
- jarvis/jarvis_platform/registry.py,sha256=fmyNqKgJhN7Lxco6Xu9yClkNkmxKioW57AVPrldSuM8,7575
35
- jarvis/jarvis_platform/yuanbao.py,sha256=-617Vn2YC7GZIkO0YAZgCrDsExuuCl4dM2_uxIvJa7M,10343
36
- jarvis/jarvis_platform_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
- jarvis/jarvis_platform_manager/main.py,sha256=o7UDrcCkLf9dTh2LOO-_bQVHjWf2X6RuSY5XRtCGvZs,20245
38
- jarvis/jarvis_platform_manager/openai_test.py,sha256=8L9Xx-oR82X8l38NsVhkymYucICwMb-6yrH17Usk2TI,4954
39
- jarvis/jarvis_rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
- jarvis/jarvis_rag/file_processors.py,sha256=m9X45EAzxI4n8F1NvE5mJgbowSINu2Hs54Hk7Ly1eCs,4809
41
- jarvis/jarvis_rag/main.py,sha256=2pGyVx0EjJtTYL99oIeu16ZWKXe4V5JMPwxFrgp0vIc,71102
42
- jarvis/jarvis_smart_shell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
- jarvis/jarvis_smart_shell/main.py,sha256=slP_8CwpfMjWFZis0At1ANRlPb3gx1KteAg1B7R7dl4,4546
44
- jarvis/jarvis_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
- jarvis/jarvis_tools/ask_codebase.py,sha256=_UWUQo9gRSY2CVbXL_uLxYJCKVqBHjO2JIahiJJmpqo,10171
46
- jarvis/jarvis_tools/ask_user.py,sha256=XbVSQ-yYGplLNw1d1s7LX54uoQCtmiqZjb7YMvijk-U,1668
47
- jarvis/jarvis_tools/base.py,sha256=29-5giQMz9Bk3vkkYM7Y1uhHUEqgyDDjwluObqQE5gM,1164
48
- jarvis/jarvis_tools/chdir.py,sha256=do_OdtabiH3lZcT_ynjSAX66XgH2gPl9mYiS7dMMDa8,2682
49
- jarvis/jarvis_tools/code_review.py,sha256=4y3huuS_wetvuR2FBE4CZ2-KaCPWBM-e0JAVf8Up2QI,13503
50
- jarvis/jarvis_tools/create_code_agent.py,sha256=ngzD1MKDNf14R1oWG1DYxJ0XYslTMZa2OIIr0Xqy8CA,4127
51
- jarvis/jarvis_tools/create_sub_agent.py,sha256=wGiHukvi58wb1AKW5beP7R8VvApOn8TOeGmtXsmcETE,3001
52
- jarvis/jarvis_tools/execute_python_script.py,sha256=O9ox48N9NfQkwpuNDX-c-OxqHZ0FXzofi1juQ015KD4,2012
53
- jarvis/jarvis_tools/execute_shell.py,sha256=tvEPxexRI5YIyX6VHU4hKkJEOc_bdfhZ3A4kv9mQIhg,3427
54
- jarvis/jarvis_tools/execute_shell_script.py,sha256=HIptXdCOobieWbTzCapZnkzHbeKWNEu3mfwBr1MWZQc,2009
55
- jarvis/jarvis_tools/file_analyzer.py,sha256=xEkvxsMd6i-f9UqCiRwpicnrrViLRx1LNxs1603yfUM,9911
56
- jarvis/jarvis_tools/file_operation.py,sha256=rpdVdB8c7Z0nLnbx9Sltk5XctXgwCryPJWrCgYLjp_8,6948
57
- jarvis/jarvis_tools/find_caller.py,sha256=KjBZJ2uGTQ2mePitCL9RjwMwm1ZpGCzxfG1sYd3l--I,10174
58
- jarvis/jarvis_tools/find_methodolopy.py,sha256=vNPqOyBE_hCBpMiciMWUBo0KuR6KuE6oOQgl2XsO0D8,2215
59
- jarvis/jarvis_tools/find_symbol.py,sha256=S-SatPwH-LzclYM3f4sHpjFdknRUljSnffvu_8x5kco,10240
60
- jarvis/jarvis_tools/function_analyzer.py,sha256=pX1Vl2zVso6IPXWh6fmjvakYRYsqop5pSAR6xunbHvY,12268
61
- jarvis/jarvis_tools/git_commiter.py,sha256=oJT-09TxaQ1U9_kQPeAhvzQISTUKZVkQosrmBLvRcAg,6481
62
- jarvis/jarvis_tools/lsp_get_diagnostics.py,sha256=njFHhL7qF31WC6SU2qjDUjfBHbRUWSGJCCuTf_9drDg,5303
63
- jarvis/jarvis_tools/methodology.py,sha256=dPD7DsfDM6f3x19Qev4z7T_LC6I-8eIwqDIjIRllTRk,5189
64
- jarvis/jarvis_tools/project_analyzer.py,sha256=uFo2GC4lr5KlEbdsjI3xPqpPbmo2LpJueDmnBqHXw0I,11010
65
- jarvis/jarvis_tools/rag.py,sha256=SHFxbZCtWnmjPo09jdT3rn9Nofr3eSLh0douC3f5PoA,4822
66
- jarvis/jarvis_tools/read_code.py,sha256=I-jU7IPD9Us4hArLpu2Yjo-uokoTUJafsceAsJHk2dE,6072
67
- jarvis/jarvis_tools/read_webpage.py,sha256=q3IwcMYHPVkfnmlYJ1AXUzNjitqBm_HlXH5t9FoZEvs,9034
68
- jarvis/jarvis_tools/registry.py,sha256=6pCyHSO0eaakfzvQZlx9m2rwFWowpjqUuoGS9gP5wrg,18948
69
- jarvis/jarvis_tools/search_web.py,sha256=BB_8_LO2ReV-0yY5_zhizdWAqkNIbKBQOkG85H5rKrE,957
70
- jarvis/jarvis_tools/tool_generator.py,sha256=0ENvezvcjJzbRRdmncS05GA3UOUW9DAoq_7Kaal51Bs,7602
71
- jarvis/jarvis_utils/__init__.py,sha256=KMg-KY5rZIhGTeOD5e2Xo5CU7DX1DUz4ULWAaTQ-ZNw,825
72
- jarvis/jarvis_utils/config.py,sha256=8pLdfzehcO2WVJKCBDxKX5-nRHZDmYNY1_WlnFXxQAo,4468
73
- jarvis/jarvis_utils/embedding.py,sha256=XG8Uwzrvt1DRx0F3ssLu17IT2JoKeSZy19y6OLVP_es,18624
74
- jarvis/jarvis_utils/git_utils.py,sha256=rAMXKlAYIvqF64iDFc_FDLxi5SMqEuKYH8GzC7RaZGY,4967
75
- jarvis/jarvis_utils/globals.py,sha256=DaQ-lfLtK8bDyGVlR6jtkenkkgxQVsIkSZCZwklelzc,2769
76
- jarvis/jarvis_utils/input.py,sha256=w_c3mefQ9A1BuJcTIZZfRAq2MckPUlGL60lxbk-NWkg,6633
77
- jarvis/jarvis_utils/methodology.py,sha256=INrw_hvCvUX3Vyl1gFQpowTotmVF72A2xYkzrN37yWA,19534
78
- jarvis/jarvis_utils/output.py,sha256=EUJQ1pnCj7PcD9-gXIXMFNrxAwyZBeUd8X-fNEJYJ1k,8443
79
- jarvis/jarvis_utils/utils.py,sha256=8Bjb38TDhi-RkSZWF5Xn2NVIGzTb7Mvnxis4jcJARN8,4617
80
- jarvis_ai_assistant-0.1.138.dist-info/LICENSE,sha256=AGgVgQmTqFvaztRtCAXsAMryUymB18gZif7_l2e1XOg,1063
81
- jarvis_ai_assistant-0.1.138.dist-info/METADATA,sha256=nSO0YfBI1dLnxzlD6XMvL2rsNpVfoam9jUK0tfo6CBM,9955
82
- jarvis_ai_assistant-0.1.138.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
83
- jarvis_ai_assistant-0.1.138.dist-info/entry_points.txt,sha256=8sxkrMFX9M0lYwQDHk8UNq3YgvyPMsMwKoQBpGSeZ0s,954
84
- jarvis_ai_assistant-0.1.138.dist-info/top_level.txt,sha256=1BOxyWfzOP_ZXj8rVTDnNCJ92bBGB0rwq8N1PCpoMIs,7
85
- jarvis_ai_assistant-0.1.138.dist-info/RECORD,,
File without changes