jarvis-ai-assistant 0.1.164__py3-none-any.whl → 0.1.165__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.
- jarvis/__init__.py +2 -1
- jarvis/jarvis_agent/__init__.py +1 -0
- jarvis/jarvis_agent/builtin_input_handler.py +1 -0
- jarvis/jarvis_agent/file_input_handler.py +1 -0
- jarvis/jarvis_agent/jarvis.py +1 -0
- jarvis/jarvis_agent/main.py +1 -0
- jarvis/jarvis_agent/output_handler.py +1 -0
- jarvis/jarvis_agent/shell_input_handler.py +1 -0
- jarvis/jarvis_code_agent/code_agent.py +5 -26
- jarvis/jarvis_code_analysis/checklists/__init__.py +1 -0
- jarvis/jarvis_code_analysis/checklists/c_cpp.py +1 -0
- jarvis/jarvis_code_analysis/checklists/csharp.py +1 -0
- jarvis/jarvis_code_analysis/checklists/data_format.py +1 -0
- jarvis/jarvis_code_analysis/checklists/devops.py +1 -0
- jarvis/jarvis_code_analysis/checklists/docs.py +1 -0
- jarvis/jarvis_code_analysis/checklists/go.py +1 -0
- jarvis/jarvis_code_analysis/checklists/infrastructure.py +1 -0
- jarvis/jarvis_code_analysis/checklists/java.py +1 -0
- jarvis/jarvis_code_analysis/checklists/javascript.py +1 -0
- jarvis/jarvis_code_analysis/checklists/kotlin.py +1 -0
- jarvis/jarvis_code_analysis/checklists/loader.py +1 -0
- jarvis/jarvis_code_analysis/checklists/php.py +1 -0
- jarvis/jarvis_code_analysis/checklists/python.py +1 -0
- jarvis/jarvis_code_analysis/checklists/ruby.py +1 -0
- jarvis/jarvis_code_analysis/checklists/rust.py +1 -0
- jarvis/jarvis_code_analysis/checklists/shell.py +1 -0
- jarvis/jarvis_code_analysis/checklists/sql.py +1 -0
- jarvis/jarvis_code_analysis/checklists/swift.py +1 -0
- jarvis/jarvis_code_analysis/checklists/web.py +1 -0
- jarvis/jarvis_code_analysis/code_review.py +1 -0
- jarvis/jarvis_data/huggingface.tar.gz +0 -0
- jarvis/jarvis_dev/main.py +1 -0
- jarvis/jarvis_git_details/main.py +1 -0
- jarvis/jarvis_git_squash/main.py +1 -0
- jarvis/jarvis_git_utils/git_commiter.py +55 -30
- jarvis/jarvis_lsp/base.py +1 -0
- jarvis/jarvis_lsp/cpp.py +1 -0
- jarvis/jarvis_lsp/go.py +1 -0
- jarvis/jarvis_lsp/python.py +1 -0
- jarvis/jarvis_lsp/registry.py +1 -0
- jarvis/jarvis_lsp/rust.py +1 -0
- jarvis/jarvis_mcp/__init__.py +1 -0
- jarvis/jarvis_mcp/sse_mcp_client.py +1 -0
- jarvis/jarvis_mcp/stdio_mcp_client.py +1 -0
- jarvis/jarvis_methodology/main.py +1 -0
- jarvis/jarvis_multi_agent/__init__.py +1 -0
- jarvis/jarvis_multi_agent/main.py +1 -0
- jarvis/jarvis_platform/__init__.py +1 -0
- jarvis/jarvis_platform/base.py +1 -0
- jarvis/jarvis_platform/human.py +1 -0
- jarvis/jarvis_platform/kimi.py +1 -0
- jarvis/jarvis_platform/openai.py +117 -0
- jarvis/jarvis_platform/registry.py +1 -0
- jarvis/jarvis_platform/yuanbao.py +2 -1
- jarvis/jarvis_platform_manager/main.py +1 -0
- jarvis/jarvis_smart_shell/main.py +1 -0
- jarvis/jarvis_tools/ask_codebase.py +1 -0
- jarvis/jarvis_tools/ask_user.py +1 -0
- jarvis/jarvis_tools/base.py +1 -0
- jarvis/jarvis_tools/chdir.py +1 -0
- jarvis/jarvis_tools/code_plan.py +1 -0
- jarvis/jarvis_tools/create_code_agent.py +1 -0
- jarvis/jarvis_tools/create_sub_agent.py +1 -0
- jarvis/jarvis_tools/edit_file.py +202 -130
- jarvis/jarvis_tools/execute_script.py +1 -0
- jarvis/jarvis_tools/file_analyzer.py +1 -0
- jarvis/jarvis_tools/file_operation.py +1 -0
- jarvis/jarvis_tools/find_methodology.py +1 -0
- jarvis/jarvis_tools/lsp_get_diagnostics.py +1 -0
- jarvis/jarvis_tools/methodology.py +1 -0
- jarvis/jarvis_tools/read_code.py +1 -0
- jarvis/jarvis_tools/read_webpage.py +1 -0
- jarvis/jarvis_tools/registry.py +1 -0
- jarvis/jarvis_tools/rewrite_file.py +1 -0
- jarvis/jarvis_tools/search_web.py +1 -0
- jarvis/jarvis_tools/virtual_tty.py +1 -0
- jarvis/jarvis_utils/__init__.py +1 -0
- jarvis/jarvis_utils/builtin_replace_map.py +1 -0
- jarvis/jarvis_utils/config.py +1 -0
- jarvis/jarvis_utils/embedding.py +1 -0
- jarvis/jarvis_utils/file_processors.py +1 -0
- jarvis/jarvis_utils/git_utils.py +1 -0
- jarvis/jarvis_utils/globals.py +1 -0
- jarvis/jarvis_utils/input.py +1 -0
- jarvis/jarvis_utils/methodology.py +1 -0
- jarvis/jarvis_utils/output.py +1 -0
- jarvis/jarvis_utils/tag.py +1 -0
- jarvis/jarvis_utils/utils.py +18 -0
- {jarvis_ai_assistant-0.1.164.dist-info → jarvis_ai_assistant-0.1.165.dist-info}/METADATA +2 -1
- jarvis_ai_assistant-0.1.165.dist-info/RECORD +100 -0
- jarvis_ai_assistant-0.1.164.dist-info/RECORD +0 -98
- {jarvis_ai_assistant-0.1.164.dist-info → jarvis_ai_assistant-0.1.165.dist-info}/WHEEL +0 -0
- {jarvis_ai_assistant-0.1.164.dist-info → jarvis_ai_assistant-0.1.165.dist-info}/entry_points.txt +0 -0
- {jarvis_ai_assistant-0.1.164.dist-info → jarvis_ai_assistant-0.1.165.dist-info}/licenses/LICENSE +0 -0
- {jarvis_ai_assistant-0.1.164.dist-info → jarvis_ai_assistant-0.1.165.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
jarvis/__init__.py,sha256=3qLxN_25GeKwUXq-k5i14C5ILs61cj1lSI5enn8O4z0,74
|
|
2
|
+
jarvis/jarvis_agent/__init__.py,sha256=h0RBXWO-m2Cl9O0zPJ8ignj1RiSSzj--CL5d1q_ahxY,25367
|
|
3
|
+
jarvis/jarvis_agent/builtin_input_handler.py,sha256=KhvlV_QdB3P-M0TCkWvdxidNie1jU7KoMOqTIXCpwwA,1529
|
|
4
|
+
jarvis/jarvis_agent/file_input_handler.py,sha256=EwaitWczbwLCKNpWU9C7m829_G5uLZ_hNcVXlX2ANes,3437
|
|
5
|
+
jarvis/jarvis_agent/jarvis.py,sha256=rn0rLMGuVDyUa0_xdAmPV3M4yhIvE9ldSwD5DaJKo-8,5819
|
|
6
|
+
jarvis/jarvis_agent/main.py,sha256=IAD59fEMWWSSAtHJhOQMPs_NMoKtcYjrxlTvhCHEVII,2626
|
|
7
|
+
jarvis/jarvis_agent/output_handler.py,sha256=7qori-RGrQmdiFepoEe3oPPKJIvRt90l_JDmvCoa4zA,1219
|
|
8
|
+
jarvis/jarvis_agent/shell_input_handler.py,sha256=pi3AtPKrkKc6K9e99S1djKXQ_XrxtP6FrSWebQmRT6E,1261
|
|
9
|
+
jarvis/jarvis_code_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
jarvis/jarvis_code_agent/code_agent.py,sha256=awCuRODHek434ixuG62PeAtFjQ7fQheJERJDpT4Bjuk,16859
|
|
11
|
+
jarvis/jarvis_code_analysis/code_review.py,sha256=OQNu7Bi-gmiM0odjSD3AG-pqnKh8hLzwNBWr1Uy0jpE,30216
|
|
12
|
+
jarvis/jarvis_code_analysis/checklists/__init__.py,sha256=cKQ_FOGy5TQgM-YkRCqORo-mUOZaPAJ9VDmZoFX58us,78
|
|
13
|
+
jarvis/jarvis_code_analysis/checklists/c_cpp.py,sha256=SXPpYCNeCtU1PpKdKPiYDuOybfY9vaL0ejDn4imxDwA,1317
|
|
14
|
+
jarvis/jarvis_code_analysis/checklists/csharp.py,sha256=vS-cu6RCGg5SyK9MJ3RE381gt3xYl-yea3Bj2UQEcwQ,2420
|
|
15
|
+
jarvis/jarvis_code_analysis/checklists/data_format.py,sha256=0ljCQPNrhFq3Qzl7WQZy-5jRE5OQG-6fjK-ZMQhP7AE,3005
|
|
16
|
+
jarvis/jarvis_code_analysis/checklists/devops.py,sha256=caupq-mZyXOfK5cSkpgcxdivqK89_2lWuDbXDuVndI8,3542
|
|
17
|
+
jarvis/jarvis_code_analysis/checklists/docs.py,sha256=lOr69-3-wobyfx82NLYZmZKHfoAov_rF4D6YMjsmOkY,3341
|
|
18
|
+
jarvis/jarvis_code_analysis/checklists/go.py,sha256=8Q16X08aj9pyLyi5c85xB2CcZI-eLlxw7TJDTij5BBY,1388
|
|
19
|
+
jarvis/jarvis_code_analysis/checklists/infrastructure.py,sha256=KgyuZHJfKCbon1qxqoTDBnUbDrY7dfFnfPkTlH4BrlI,3765
|
|
20
|
+
jarvis/jarvis_code_analysis/checklists/java.py,sha256=RReiw64i-o5yLIhZdFkkWzMl9yE4_SnQr7CwWz5dTas,2085
|
|
21
|
+
jarvis/jarvis_code_analysis/checklists/javascript.py,sha256=i1srwYq0H-d9Ql98UpJSvceHe5jTJX3CFO_sgmw7_AU,2340
|
|
22
|
+
jarvis/jarvis_code_analysis/checklists/kotlin.py,sha256=AgVEDHdDC4kD-XYjT5V3LNjRpcWeVCoPThVg1juD1Ns,4436
|
|
23
|
+
jarvis/jarvis_code_analysis/checklists/loader.py,sha256=_jK2H21P5AWDDPrSqnWveE3pOygaqgfaP3Gw7xhSKfQ,1919
|
|
24
|
+
jarvis/jarvis_code_analysis/checklists/php.py,sha256=_EvpnWwHOGM3wAc9aXJrtwy3LQvYNR-oxPhtv71qZj4,2481
|
|
25
|
+
jarvis/jarvis_code_analysis/checklists/python.py,sha256=rQ2jpDG0CPzeWiBc2Q6kJA0IBpyheL4-gtMwe6whgOM,1452
|
|
26
|
+
jarvis/jarvis_code_analysis/checklists/ruby.py,sha256=JbU1eHafIhlV0qWtYxEltz6AaFzUSU_F3KuqylnMcgc,4274
|
|
27
|
+
jarvis/jarvis_code_analysis/checklists/rust.py,sha256=oe_1wPaBgMScQTn-697aghWVsIvNO2v8E6m_lcP8_iU,1646
|
|
28
|
+
jarvis/jarvis_code_analysis/checklists/shell.py,sha256=IXQkWHwA-4GUQz3WUs7l6hEy7Vrjd92egUYXGfu2FKQ,2619
|
|
29
|
+
jarvis/jarvis_code_analysis/checklists/sql.py,sha256=ecKKT6wJAibn8R0NxGZDNlm4teYXvF3CAJvVk8mmX7w,2355
|
|
30
|
+
jarvis/jarvis_code_analysis/checklists/swift.py,sha256=YcsYFxAitHqOtBZjG-RV9-KNM7X5lIcl6zlEI9XfmfM,2566
|
|
31
|
+
jarvis/jarvis_code_analysis/checklists/web.py,sha256=-Pnj1FQTsGVZUQK7-4ptDsGd7a22Cs0585jRAPT2SdQ,3943
|
|
32
|
+
jarvis/jarvis_data/huggingface.tar.gz,sha256=dWKnc_tvyx-I_ZkXo91O0b38KxDmLW1ZbmJ3E6fCl_k,1120205
|
|
33
|
+
jarvis/jarvis_dev/main.py,sha256=zfL9rl-Jfhpi4E4OxMKw3eOVjy6kSzQdxhn3yGv1UTw,42952
|
|
34
|
+
jarvis/jarvis_git_details/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
+
jarvis/jarvis_git_details/main.py,sha256=s8wDnHXy38n5uQ0j-XPh2wnhPULQly7OWCg_9S69XqA,6176
|
|
36
|
+
jarvis/jarvis_git_squash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
+
jarvis/jarvis_git_squash/main.py,sha256=uZf05Y7UN8kwlrfsSeX2NEGCaowwzZsm9LqjgmQxeic,2203
|
|
38
|
+
jarvis/jarvis_git_utils/git_commiter.py,sha256=0ABGCpZUcJIDFiCi0naQeJ1oySeQ2MDmyMzI96oXD58,13006
|
|
39
|
+
jarvis/jarvis_lsp/base.py,sha256=ZngrQ4NUy9iPrXORcw4QR-tWZi2G79nsfqeqqkaxSZ0,2054
|
|
40
|
+
jarvis/jarvis_lsp/cpp.py,sha256=WL7rItrwFkYRSZzQHnoOoQ-EDho7Jd6BOaCn1UgsQ3A,3165
|
|
41
|
+
jarvis/jarvis_lsp/go.py,sha256=FkBJAeJex8jamn44o_cpYCygSTGMnsykJGrnkVFlTww,3482
|
|
42
|
+
jarvis/jarvis_lsp/python.py,sha256=bTvo4i4tzoYFOag9lzDEIBb6-oNHGIrHFz1SQQ2w5qM,1867
|
|
43
|
+
jarvis/jarvis_lsp/registry.py,sha256=4qvwpsRhBLfYmsU1N2qn3mF_K-P66J69Oupt0et33xk,6515
|
|
44
|
+
jarvis/jarvis_lsp/rust.py,sha256=Z2KmvTsIcn5SLM4iaLG4Mael1h6zlZQIiOopbDpurag,3710
|
|
45
|
+
jarvis/jarvis_mcp/__init__.py,sha256=NF_vqRxaNyz8ColcpRh0bOkinV90YLAKHEN--jkP-B8,2114
|
|
46
|
+
jarvis/jarvis_mcp/sse_mcp_client.py,sha256=FOVzroTw-pifmnF0qdsoQ6KweDCQ0Gxs6d6jl4VopiQ,23483
|
|
47
|
+
jarvis/jarvis_mcp/stdio_mcp_client.py,sha256=KO0ewJuLBZLNqG4EGJcBOtn-8VJIipkq84ENvSwgQAo,11830
|
|
48
|
+
jarvis/jarvis_methodology/main.py,sha256=_KDGEQw6j_VZ9O8eDe-c8F84zl6JrKmsNRva9PG4I5k,11836
|
|
49
|
+
jarvis/jarvis_multi_agent/__init__.py,sha256=LEJofDjh80U34RyZv2ECAzpt2zkhA0Jn3KZh-ABoAKA,4343
|
|
50
|
+
jarvis/jarvis_multi_agent/main.py,sha256=Z6N5VMjzaernnRjPkqgYRv09cIhWIFQ6a__AqHA8xrQ,1567
|
|
51
|
+
jarvis/jarvis_platform/__init__.py,sha256=0YnsUoM4JkIBOtImFdjfuDbrqQZT3dEaAwSJ62DrpCc,104
|
|
52
|
+
jarvis/jarvis_platform/base.py,sha256=d39-0CFFLMKf0JDTF7-wMRSJqbwPL_zg0omDGaJVBpQ,4013
|
|
53
|
+
jarvis/jarvis_platform/human.py,sha256=0sbEhST4rKKGGV45dAdJqvVBnRPPeCe6HqxR245S4Z8,2462
|
|
54
|
+
jarvis/jarvis_platform/kimi.py,sha256=c9OglWXt-B7FU-Yn60b_wZo4SFX5jMI_RxD4SAh2fVA,16691
|
|
55
|
+
jarvis/jarvis_platform/openai.py,sha256=8enxCISjHtCs0qoqEag68v68m_clKr7jgEpUA0CyUBo,4139
|
|
56
|
+
jarvis/jarvis_platform/registry.py,sha256=UjCdPT9WIRxU-F0uuPpKmKRRCcNNxjr-bRTEPgRSNx4,7740
|
|
57
|
+
jarvis/jarvis_platform/yuanbao.py,sha256=NouTKMq6xujJX8jcd6QXDvd19PiS8ItcM2HT52MDd54,21867
|
|
58
|
+
jarvis/jarvis_platform_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
|
+
jarvis/jarvis_platform_manager/main.py,sha256=gFqXKNweU9mE-IRqV7qhXmZ5483D01s9bI76POX1uXc,22596
|
|
60
|
+
jarvis/jarvis_smart_shell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
+
jarvis/jarvis_smart_shell/main.py,sha256=vwgq4htsjAAq0-yUW2uujnfFcqxB_pf-6xpoayemcRU,4883
|
|
62
|
+
jarvis/jarvis_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
+
jarvis/jarvis_tools/ask_codebase.py,sha256=kIQwlSrCqtjXyl3YE8m6i188U62sZ78LAOz06Vsm-2k,9659
|
|
64
|
+
jarvis/jarvis_tools/ask_user.py,sha256=cWSLG33b79IbIZEWsSNV5RHvGX6eo3nTM8TUhOMnGh8,2167
|
|
65
|
+
jarvis/jarvis_tools/base.py,sha256=SR4dmrgYj3lNmtVDhHtItPvptTqCfw5SGRhgPT3I6ss,1189
|
|
66
|
+
jarvis/jarvis_tools/chdir.py,sha256=wYVBqWF5kaUkKqH3cUAOKUsACzYsFtCCJJyd8UJsp4o,2706
|
|
67
|
+
jarvis/jarvis_tools/code_plan.py,sha256=EzLdbJnVCkJ7lL8XIQyuDJdxU1i3CFiBpqyNG-GdJw8,7753
|
|
68
|
+
jarvis/jarvis_tools/create_code_agent.py,sha256=cxYkjr4rhI2EWpK78psZSRB9mxiP1IUT0SEfFIqCJzY,3411
|
|
69
|
+
jarvis/jarvis_tools/create_sub_agent.py,sha256=ppTOFRd0ygSJUFr3oQ8IrCLOqbZ7vwnbdadfTDjpDgs,3025
|
|
70
|
+
jarvis/jarvis_tools/edit_file.py,sha256=gmWwbxaPNpJFOQj0hoc8558efagbyyM-TOzL2FjWlLg,13823
|
|
71
|
+
jarvis/jarvis_tools/execute_script.py,sha256=cc0NlPwhkZinEexqT63d1ofEkzQddVWGsZOCVL1v_60,5739
|
|
72
|
+
jarvis/jarvis_tools/file_analyzer.py,sha256=tzU1cPKyDa54hVZewP0bDzdsjvdjGQ1BRt5k8N4li3s,4868
|
|
73
|
+
jarvis/jarvis_tools/file_operation.py,sha256=lP8EpsnSdA3FW8ofSAdoA8qPGMAG3UhYd6LFEzOFUVY,9044
|
|
74
|
+
jarvis/jarvis_tools/find_methodology.py,sha256=XldbV5XwkAhIxCqAuigmT6K9Q8vwMyVOinCYQZpoU1M,2292
|
|
75
|
+
jarvis/jarvis_tools/lsp_get_diagnostics.py,sha256=paz1CVZ2Y8nk0U74n1QiG01oDINiZqpVlPc2f4_B150,5346
|
|
76
|
+
jarvis/jarvis_tools/methodology.py,sha256=Md8W2et0xUiuTjUSRCdnlwEPYqah2dCAAkxW_95BXBY,5238
|
|
77
|
+
jarvis/jarvis_tools/read_code.py,sha256=pgztSBRh8RORFalqwzzsLHQogooFvDm1ePBL0E5O1C4,5961
|
|
78
|
+
jarvis/jarvis_tools/read_webpage.py,sha256=wpN8E1BzhrWdfZf6WKvtfuOt41jm-BAPVsMXKMWJE10,2049
|
|
79
|
+
jarvis/jarvis_tools/registry.py,sha256=rRdvLzsAkMPfRFZz9GfTP9K8mGedoDt8Pj9drRI_yL8,27133
|
|
80
|
+
jarvis/jarvis_tools/rewrite_file.py,sha256=rEPPSNU7uF1iKfEW9npEpZJ2LSoQXjt2OC-_troBToE,7003
|
|
81
|
+
jarvis/jarvis_tools/search_web.py,sha256=k7WwvOAdBOiWmE8vtNrhmu8VAiH5oT5FD82kcEhRkiI,783
|
|
82
|
+
jarvis/jarvis_tools/virtual_tty.py,sha256=AKAaKY5KcPxifNQoXjzHaL4U6EUVA7irHLwVvz2wLVs,16396
|
|
83
|
+
jarvis/jarvis_utils/__init__.py,sha256=l-fsyQ-KzyqAhrJYur8eZAqsgaifGzSm24R2qtRGJ0g,849
|
|
84
|
+
jarvis/jarvis_utils/builtin_replace_map.py,sha256=A-cJ8deht2vDl2iKRhoZ7qECyJ6sboVH5Zx-L9vIBUs,4314
|
|
85
|
+
jarvis/jarvis_utils/config.py,sha256=OsHGIyGq2cUiEXU7P5CeJ_XfUjNoswNRIvBRbAWvzMY,4083
|
|
86
|
+
jarvis/jarvis_utils/embedding.py,sha256=05KvmZvtI2-7xxmj13kAknRezWuVeold-D68wyPvZSA,7015
|
|
87
|
+
jarvis/jarvis_utils/file_processors.py,sha256=tSZSMJ4qCJ_lXI0dyLgJ0j5qEh6CDXDSVI7vQiFmcuQ,2976
|
|
88
|
+
jarvis/jarvis_utils/git_utils.py,sha256=FSKu6YBOkb_-zHU35gicYTjPLk0H4XMq5kdUP5wSzwE,9980
|
|
89
|
+
jarvis/jarvis_utils/globals.py,sha256=Zs0chxA_giYiolYvawFFpcnTWgCUnn6GEusAh42jbz8,2275
|
|
90
|
+
jarvis/jarvis_utils/input.py,sha256=qGf2q-yWhgT-OX-j_WYi7aZ11jYmuFNiMz2_W1nUOiM,7432
|
|
91
|
+
jarvis/jarvis_utils/methodology.py,sha256=oGPWA0m4dGOgvjhU9JZqhPA0GbJM9Bcykr9TqPFDc30,7819
|
|
92
|
+
jarvis/jarvis_utils/output.py,sha256=PVG4fQ3P-eGOZUNZTowPtnjqq3GN91OE8fHa68lFOOg,8440
|
|
93
|
+
jarvis/jarvis_utils/tag.py,sha256=YJHmuedLb7_AiqvKQetHr4R1FxyzIh7HN0RRkWMmYbU,429
|
|
94
|
+
jarvis/jarvis_utils/utils.py,sha256=cm22M2nCT29Ra6k92cZbB5pnqKGyXJqL9_wNByVfDgQ,5248
|
|
95
|
+
jarvis_ai_assistant-0.1.165.dist-info/licenses/LICENSE,sha256=AGgVgQmTqFvaztRtCAXsAMryUymB18gZif7_l2e1XOg,1063
|
|
96
|
+
jarvis_ai_assistant-0.1.165.dist-info/METADATA,sha256=or-Jo3A8VUVkiEIEANS6zyn2frvIovpkNZhvwDw_X1A,13435
|
|
97
|
+
jarvis_ai_assistant-0.1.165.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
|
98
|
+
jarvis_ai_assistant-0.1.165.dist-info/entry_points.txt,sha256=cKz_9SEpOvElTubKPMZMAdskD4GHz-NyKWRNssIVAWE,973
|
|
99
|
+
jarvis_ai_assistant-0.1.165.dist-info/top_level.txt,sha256=1BOxyWfzOP_ZXj8rVTDnNCJ92bBGB0rwq8N1PCpoMIs,7
|
|
100
|
+
jarvis_ai_assistant-0.1.165.dist-info/RECORD,,
|
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
jarvis/__init__.py,sha256=NsIgLwBHooDskUwUxLuK7qUm_qq1H_1XF4B7deh5fEA,50
|
|
2
|
-
jarvis/jarvis_agent/__init__.py,sha256=7rNz-HE8vDZMifWXgCiOLGwUQ4LIgC7If6Axl9UKUvM,25343
|
|
3
|
-
jarvis/jarvis_agent/builtin_input_handler.py,sha256=3rRA-7v_VUSFG1s7tTKhriq9vv0nsa3t69ReV0xH5gs,1505
|
|
4
|
-
jarvis/jarvis_agent/file_input_handler.py,sha256=88VqJLe3oO9GtIRsqyx3KwZl10Apob2ddFMH3HQ2RMg,3413
|
|
5
|
-
jarvis/jarvis_agent/jarvis.py,sha256=EQDK7CEfoJXg-KkZ7DGDi0lALauFR4tPRvW2O-CxJAQ,5795
|
|
6
|
-
jarvis/jarvis_agent/main.py,sha256=Jlw_Tofh2C-sMVnkeOZBrwWJOWNH3IhsKDUn-WBlgU8,2602
|
|
7
|
-
jarvis/jarvis_agent/output_handler.py,sha256=VwU_RNDpdKw2Fwz7UTXlVvBdphJrVF9fO_LNeJncDro,1195
|
|
8
|
-
jarvis/jarvis_agent/shell_input_handler.py,sha256=9IoGQCe6FF4HA2V5S11q63AtnWDZFpNeRd3hcqCAlBw,1237
|
|
9
|
-
jarvis/jarvis_code_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
jarvis/jarvis_code_agent/code_agent.py,sha256=V8DTvmno0OqQoX9P1NwkQT2q8Fis0i7xOKkdiXLxXG4,18007
|
|
11
|
-
jarvis/jarvis_code_analysis/code_review.py,sha256=gB9Xo0-FT6zciDzZb3jF6zxxWA_Aj8QU5008Tmu_Tr4,30192
|
|
12
|
-
jarvis/jarvis_code_analysis/checklists/__init__.py,sha256=PCjlyxLa939613cAzS7pfEPgP57setO-1RvcdzzPivw,54
|
|
13
|
-
jarvis/jarvis_code_analysis/checklists/c_cpp.py,sha256=8lfWmhImAxeTBdHPOgVXDjMllaq280Qki1ZOOSDBnvk,1293
|
|
14
|
-
jarvis/jarvis_code_analysis/checklists/csharp.py,sha256=fg35Iima2nIsirEmAjianfAybVjwRYml9BtbSQFff7w,2396
|
|
15
|
-
jarvis/jarvis_code_analysis/checklists/data_format.py,sha256=g8lubTeEY2Sx5bdPaMmn2PmaSIpxDZu5d1GgPc-DlDk,2981
|
|
16
|
-
jarvis/jarvis_code_analysis/checklists/devops.py,sha256=kTvzFybZ0i1uo5ABD-pbn__h3t8n4QaURSrJ2o-MplQ,3518
|
|
17
|
-
jarvis/jarvis_code_analysis/checklists/docs.py,sha256=7Tq9woxeYqbqmiql3PkbFZ59ui7uIHKRAOUFUGhjCPc,3317
|
|
18
|
-
jarvis/jarvis_code_analysis/checklists/go.py,sha256=yF4gu1YNxyv6Ptgx9Qj4bxeyQHIwAgPQzt4Nm6gdhUc,1364
|
|
19
|
-
jarvis/jarvis_code_analysis/checklists/infrastructure.py,sha256=l64mExwNc49Z8Ol1hy6qdVGFc00SMbagyvn0gOTOR04,3741
|
|
20
|
-
jarvis/jarvis_code_analysis/checklists/java.py,sha256=KIQMukhnMqI8oRsm8oVLaX_s_dggECo2OX8eXqjjG_4,2061
|
|
21
|
-
jarvis/jarvis_code_analysis/checklists/javascript.py,sha256=a0RAqQUfnhK6IItXT_zU5PW5_IH7uwc8BWKo49KuX2c,2316
|
|
22
|
-
jarvis/jarvis_code_analysis/checklists/kotlin.py,sha256=FDtEa2Dyzd4bTSZkusllaLbGFhQKD6OW4g0yvKkBNgw,4412
|
|
23
|
-
jarvis/jarvis_code_analysis/checklists/loader.py,sha256=l6k6Z7oeo1Hy4KAIeM5bGfcqZ7ftwzZoCDNUxAwkm9g,1895
|
|
24
|
-
jarvis/jarvis_code_analysis/checklists/php.py,sha256=LoWeE-I5KonZCc_7fDcekgbPVbK7oVgyUwqq7ZqnDsc,2457
|
|
25
|
-
jarvis/jarvis_code_analysis/checklists/python.py,sha256=ULPQoJBe5B_XKzbAqUv3DOCB7posc4sSv2IWFA4_7lA,1428
|
|
26
|
-
jarvis/jarvis_code_analysis/checklists/ruby.py,sha256=qbaRNGk0VFeZFUYJSJRhLVdZK0JSmlGygHZOHr806YU,4250
|
|
27
|
-
jarvis/jarvis_code_analysis/checklists/rust.py,sha256=6qNtIPxb4VWlyVx6dukMKITkYxqD_jLi5MlB-_jjzHQ,1622
|
|
28
|
-
jarvis/jarvis_code_analysis/checklists/shell.py,sha256=UBtGhi3d5sIhyUSGmDckYOXwpeaQEAfJ-FKCH4izSC8,2595
|
|
29
|
-
jarvis/jarvis_code_analysis/checklists/sql.py,sha256=-bGfYhaFJyHrbcJrUMbkMyPCNVbk8UljNqebqVJJKxM,2331
|
|
30
|
-
jarvis/jarvis_code_analysis/checklists/swift.py,sha256=d-zPPbM_J1G8fgZ2M2-ASQbIxEocsdL1owL4Z2PCnOc,2542
|
|
31
|
-
jarvis/jarvis_code_analysis/checklists/web.py,sha256=phdvLGqRHNijA0OyEwVtgHgz1Hi4ldtJJscOhEQvbSQ,3919
|
|
32
|
-
jarvis/jarvis_dev/main.py,sha256=n3FAE08MKulZQFBSFmPIgRMBrpVtjAPGn6kqDf7kLTU,42928
|
|
33
|
-
jarvis/jarvis_git_details/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
jarvis/jarvis_git_details/main.py,sha256=r-fbLt-k_-2MtnDDETsj7XIKUALtj9jvQtTq7UsKFqs,6152
|
|
35
|
-
jarvis/jarvis_git_squash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
-
jarvis/jarvis_git_squash/main.py,sha256=xBNkAl7_8_pQC-C6RcUImA1mEU4KTqhjtA57rG_mMJ8,2179
|
|
37
|
-
jarvis/jarvis_git_utils/git_commiter.py,sha256=T94R496xYx17sjh4P3RtLqVYZkjB3xz8so8Q1aaei64,11963
|
|
38
|
-
jarvis/jarvis_lsp/base.py,sha256=f-76xgNijfQ4G3Q0t8IfOGtCu-q2TSQ7a_in6XwDb_8,2030
|
|
39
|
-
jarvis/jarvis_lsp/cpp.py,sha256=ekci2M9_UtkCSEe9__72h26Gat93r9_knL2VmFr8X5M,3141
|
|
40
|
-
jarvis/jarvis_lsp/go.py,sha256=sSypuQSP5X2YtrVMC8XCc5nXkgfG93SO7sC89lHzoR8,3458
|
|
41
|
-
jarvis/jarvis_lsp/python.py,sha256=OJuYHLHI1aYNNWcAFayy_5GxogwyMC3A7KOYGjxN1yg,1843
|
|
42
|
-
jarvis/jarvis_lsp/registry.py,sha256=-b7lAfZ6SNp3O0ifRiFSLxH0xJlPQhkq4DATDDjJb1U,6491
|
|
43
|
-
jarvis/jarvis_lsp/rust.py,sha256=ICmQs5UVdMZwn5KjaF1YRXBCLUMtGF8Z9IwE5rqWkrU,3686
|
|
44
|
-
jarvis/jarvis_mcp/__init__.py,sha256=gi74_Yz5nsEFhrAyCg1Ovxsj-hLweLjMGoOaceL2yx4,2090
|
|
45
|
-
jarvis/jarvis_mcp/sse_mcp_client.py,sha256=Qd09ymgZmxQvaFUzz8I3AI46v6AqmMbGaF0iBbExAGY,23459
|
|
46
|
-
jarvis/jarvis_mcp/stdio_mcp_client.py,sha256=DtRO4dqBoxI8W0H0rVR5zxZLR0theKxRAQ-qzQE9qPg,11806
|
|
47
|
-
jarvis/jarvis_methodology/main.py,sha256=JrUqWKN0gQeiO_tY2Tn14pnT_jClqlNgpbBfoc-q8SM,11812
|
|
48
|
-
jarvis/jarvis_multi_agent/__init__.py,sha256=NUhIadyIveGY95oaqG2VnWdY8WcWbFwGJ86jv7W0YKM,4319
|
|
49
|
-
jarvis/jarvis_multi_agent/main.py,sha256=aGuUC3YQmahabqwDwZXJjfQLYsZ3KIZdf8DZDlVNMe4,1543
|
|
50
|
-
jarvis/jarvis_platform/__init__.py,sha256=oD9i4ugZ2q6Hys3noLOvzPUUHqE2PJ_Je1r2dLLTscw,80
|
|
51
|
-
jarvis/jarvis_platform/base.py,sha256=SAWRl-WDjaBfcisvug3QHuTFRXe41iWRs0aoBe4QU_I,3989
|
|
52
|
-
jarvis/jarvis_platform/human.py,sha256=WCzvBtQUMN7ys4rQl6UT7Zdp4x5RaGv1U4vBx7ROxfo,2438
|
|
53
|
-
jarvis/jarvis_platform/kimi.py,sha256=Wno9PFZ92v9fjBHS29sFUwoc6gk6akD7yelVaWOpp-Q,16667
|
|
54
|
-
jarvis/jarvis_platform/registry.py,sha256=wvXTKXqAoW6GPaLKCPYhRB9QhVe1xfoVbVPBZAxl_uA,7716
|
|
55
|
-
jarvis/jarvis_platform/yuanbao.py,sha256=GVc5opeblu4CrPdxP0dnDr7v5ZtIaUHulaCMJnvQYrs,21812
|
|
56
|
-
jarvis/jarvis_platform_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
-
jarvis/jarvis_platform_manager/main.py,sha256=xJM86DQFyYDysMyQEJDAwB2oSYcWg_zi1mFld0zyquM,22572
|
|
58
|
-
jarvis/jarvis_smart_shell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
|
-
jarvis/jarvis_smart_shell/main.py,sha256=gH_fZQhXrRuGhkHNpBB9LK7y4BfK66elcq4qsUvXnHY,4859
|
|
60
|
-
jarvis/jarvis_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
-
jarvis/jarvis_tools/ask_codebase.py,sha256=S6NArvKZyK8WEbsEgeGCljjg4D9mteWrq9m352V58jU,9635
|
|
62
|
-
jarvis/jarvis_tools/ask_user.py,sha256=NjxTCHGKo4nthbEQD-isvPCW4PQhTcekEferjnukX70,2143
|
|
63
|
-
jarvis/jarvis_tools/base.py,sha256=vskI4czVdlhbo38ODuF9rFrnWBYQIhJSPAqAkLVcyTs,1165
|
|
64
|
-
jarvis/jarvis_tools/chdir.py,sha256=do_OdtabiH3lZcT_ynjSAX66XgH2gPl9mYiS7dMMDa8,2682
|
|
65
|
-
jarvis/jarvis_tools/code_plan.py,sha256=jNa2rs4J3Fam8Q_RHE2_QvVch21TPp-Zfv-W6iQ3D_0,7729
|
|
66
|
-
jarvis/jarvis_tools/create_code_agent.py,sha256=SRiQXZf57ViIDh6YSEmJkcoSKft0-y3iDfWF8f1bvZU,3387
|
|
67
|
-
jarvis/jarvis_tools/create_sub_agent.py,sha256=wGiHukvi58wb1AKW5beP7R8VvApOn8TOeGmtXsmcETE,3001
|
|
68
|
-
jarvis/jarvis_tools/edit_file.py,sha256=0r2E1wUJLdrS9sEAvCRA8_I96tQjkX-4Y8mKuGfZV8w,12429
|
|
69
|
-
jarvis/jarvis_tools/execute_script.py,sha256=AeuC3yZIg-nBq_LTIyqxu-lG_uLG63lvwO28A6dRDYA,5715
|
|
70
|
-
jarvis/jarvis_tools/file_analyzer.py,sha256=EVl7WqGgZoaQXqEX8vLynpqZDE3aug1hVBJbycT7YiY,4844
|
|
71
|
-
jarvis/jarvis_tools/file_operation.py,sha256=G2hTp569O-IYX_LEz7BCNlJ6QPK58Ofut5Zjg9ThPmE,9020
|
|
72
|
-
jarvis/jarvis_tools/find_methodology.py,sha256=TIUrezAql6wY3-wqnOPfGrO0tqS5N_-eU6YimCzaepM,2268
|
|
73
|
-
jarvis/jarvis_tools/lsp_get_diagnostics.py,sha256=IYqv8jQwSK71sZpDBRolSDnYii8t0M7fzLthhMYTeGk,5322
|
|
74
|
-
jarvis/jarvis_tools/methodology.py,sha256=gnlJojY4Dg5v9AAB5xcpKqpPIHs0tOYVtzTHkwOrWk0,5214
|
|
75
|
-
jarvis/jarvis_tools/read_code.py,sha256=ePlvWs9Xn6QR2wJcB0t2c5RrE1xwFUEd8cP1nwS_Zdk,5937
|
|
76
|
-
jarvis/jarvis_tools/read_webpage.py,sha256=ECcMnPnUpIeiSA1IRdUf7uLWMe34Ian9pExSxekwpcg,2025
|
|
77
|
-
jarvis/jarvis_tools/registry.py,sha256=6md5Fm-Uv0dhTHj0qubHRj0VQkNIcNn0A1cshBOQY5o,27109
|
|
78
|
-
jarvis/jarvis_tools/rewrite_file.py,sha256=FXp70QrEEA08c3wZySu7TGGNnmYAQnjuxy703b-YKfI,6979
|
|
79
|
-
jarvis/jarvis_tools/search_web.py,sha256=p1oahjSmSeBO9ZzgWkxIHsfcAGah22ju0xipXmuqnzg,759
|
|
80
|
-
jarvis/jarvis_tools/virtual_tty.py,sha256=Rpn9VXUG17LQsY87F_O6UCjN_opXB05mpwozxYf-xVI,16372
|
|
81
|
-
jarvis/jarvis_utils/__init__.py,sha256=KMg-KY5rZIhGTeOD5e2Xo5CU7DX1DUz4ULWAaTQ-ZNw,825
|
|
82
|
-
jarvis/jarvis_utils/builtin_replace_map.py,sha256=Dt8YL4Sk5uALTMPT_n-lhshRWvFWPRPwV4stASOecQ8,4290
|
|
83
|
-
jarvis/jarvis_utils/config.py,sha256=iKlaVzwkSltjtFNGDrANt1PETYED6pDKrDphh3yD1eE,4059
|
|
84
|
-
jarvis/jarvis_utils/embedding.py,sha256=_Q-VurYHQZSsyISClTFjadDaNqNPBMqJe58lMM6bsVs,6991
|
|
85
|
-
jarvis/jarvis_utils/file_processors.py,sha256=oNtVlz2JHcQ60NS6sgI-VsvYXOnsQgFUEVenznCXHC4,2952
|
|
86
|
-
jarvis/jarvis_utils/git_utils.py,sha256=YOvtxZbM1DAsOoFIj06aEaAFG-npqg5yr1dHzOS3lX0,9956
|
|
87
|
-
jarvis/jarvis_utils/globals.py,sha256=JZFhOUae33_IGTQ3MHB5Fu3PT3dVXk0uHFm7QAzC4X0,2251
|
|
88
|
-
jarvis/jarvis_utils/input.py,sha256=3mQO_Ys1DGQQWCrw_zD9hnTF4Xd6vyQUrer8IastzvQ,7408
|
|
89
|
-
jarvis/jarvis_utils/methodology.py,sha256=SiCHhv9n23njOwznMIpesdsbTPfUbWsoWDTta-ga5GI,7795
|
|
90
|
-
jarvis/jarvis_utils/output.py,sha256=BmWdB1bmizv0xfU4Z___9p_xQodorriIcEgADVq9fk0,8416
|
|
91
|
-
jarvis/jarvis_utils/tag.py,sha256=YtXBYuZWy8j8YbeQX2qRrHRQl6Gp2Vt7W4p-2yjo0a4,405
|
|
92
|
-
jarvis/jarvis_utils/utils.py,sha256=neokG_C9Djw6shwLcBxpQmRF5KFp9P6v52bMJMEFozg,4487
|
|
93
|
-
jarvis_ai_assistant-0.1.164.dist-info/licenses/LICENSE,sha256=AGgVgQmTqFvaztRtCAXsAMryUymB18gZif7_l2e1XOg,1063
|
|
94
|
-
jarvis_ai_assistant-0.1.164.dist-info/METADATA,sha256=Z8NihnQOL_xq8Xre6AoyJm7sdCiowvZj25dqCiwnG6I,13405
|
|
95
|
-
jarvis_ai_assistant-0.1.164.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
|
96
|
-
jarvis_ai_assistant-0.1.164.dist-info/entry_points.txt,sha256=cKz_9SEpOvElTubKPMZMAdskD4GHz-NyKWRNssIVAWE,973
|
|
97
|
-
jarvis_ai_assistant-0.1.164.dist-info/top_level.txt,sha256=1BOxyWfzOP_ZXj8rVTDnNCJ92bBGB0rwq8N1PCpoMIs,7
|
|
98
|
-
jarvis_ai_assistant-0.1.164.dist-info/RECORD,,
|
|
File without changes
|
{jarvis_ai_assistant-0.1.164.dist-info → jarvis_ai_assistant-0.1.165.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{jarvis_ai_assistant-0.1.164.dist-info → jarvis_ai_assistant-0.1.165.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{jarvis_ai_assistant-0.1.164.dist-info → jarvis_ai_assistant-0.1.165.dist-info}/top_level.txt
RENAMED
|
File without changes
|