jarvis-ai-assistant 0.1.130__py3-none-any.whl → 0.1.131__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 +1 -1
- jarvis/jarvis_agent/__init__.py +23 -9
- jarvis/jarvis_agent/builtin_input_handler.py +73 -0
- jarvis/{jarvis_code_agent → jarvis_agent}/file_input_handler.py +1 -1
- jarvis/jarvis_agent/main.py +1 -1
- jarvis/{jarvis_code_agent → jarvis_agent}/patch.py +23 -19
- jarvis/{jarvis_code_agent → jarvis_agent}/shell_input_handler.py +0 -1
- jarvis/jarvis_code_agent/code_agent.py +20 -16
- jarvis/jarvis_codebase/main.py +5 -5
- jarvis/jarvis_dev/main.py +1 -1
- jarvis/jarvis_git_squash/main.py +1 -1
- jarvis/jarvis_lsp/base.py +2 -26
- jarvis/jarvis_lsp/cpp.py +2 -14
- jarvis/jarvis_lsp/go.py +0 -13
- jarvis/jarvis_lsp/python.py +1 -30
- jarvis/jarvis_lsp/registry.py +10 -14
- jarvis/jarvis_lsp/rust.py +0 -12
- jarvis/jarvis_multi_agent/__init__.py +1 -1
- jarvis/jarvis_platform/registry.py +1 -1
- jarvis/jarvis_platform_manager/main.py +3 -3
- jarvis/jarvis_rag/main.py +1 -1
- jarvis/jarvis_tools/ask_codebase.py +40 -20
- jarvis/jarvis_tools/code_review.py +180 -143
- jarvis/jarvis_tools/create_code_agent.py +76 -72
- jarvis/jarvis_tools/create_sub_agent.py +32 -15
- jarvis/jarvis_tools/execute_shell.py +2 -2
- jarvis/jarvis_tools/execute_shell_script.py +1 -1
- jarvis/jarvis_tools/file_operation.py +2 -2
- jarvis/jarvis_tools/git_commiter.py +87 -68
- jarvis/jarvis_tools/lsp_find_definition.py +83 -67
- jarvis/jarvis_tools/lsp_find_references.py +62 -46
- jarvis/jarvis_tools/lsp_get_diagnostics.py +90 -74
- jarvis/jarvis_tools/methodology.py +3 -3
- jarvis/jarvis_tools/read_code.py +1 -1
- jarvis/jarvis_tools/search_web.py +18 -20
- jarvis/jarvis_tools/tool_generator.py +1 -1
- jarvis/jarvis_tools/treesitter_analyzer.py +331 -0
- jarvis/jarvis_treesitter/README.md +104 -0
- jarvis/jarvis_treesitter/__init__.py +20 -0
- jarvis/jarvis_treesitter/database.py +258 -0
- jarvis/jarvis_treesitter/example.py +115 -0
- jarvis/jarvis_treesitter/grammar_builder.py +182 -0
- jarvis/jarvis_treesitter/language.py +117 -0
- jarvis/jarvis_treesitter/symbol.py +31 -0
- jarvis/jarvis_treesitter/tools_usage.md +121 -0
- jarvis/jarvis_utils/git_utils.py +10 -2
- jarvis/jarvis_utils/input.py +3 -1
- jarvis/jarvis_utils/methodology.py +1 -1
- jarvis/jarvis_utils/utils.py +3 -3
- {jarvis_ai_assistant-0.1.130.dist-info → jarvis_ai_assistant-0.1.131.dist-info}/METADATA +2 -4
- jarvis_ai_assistant-0.1.131.dist-info/RECORD +85 -0
- jarvis/jarvis_c2rust/c2rust.yaml +0 -734
- jarvis/jarvis_code_agent/builtin_input_handler.py +0 -43
- jarvis/jarvis_tools/lsp_get_document_symbols.py +0 -87
- jarvis/jarvis_tools/lsp_prepare_rename.py +0 -130
- jarvis_ai_assistant-0.1.130.dist-info/RECORD +0 -79
- {jarvis_ai_assistant-0.1.130.dist-info → jarvis_ai_assistant-0.1.131.dist-info}/LICENSE +0 -0
- {jarvis_ai_assistant-0.1.130.dist-info → jarvis_ai_assistant-0.1.131.dist-info}/WHEEL +0 -0
- {jarvis_ai_assistant-0.1.130.dist-info → jarvis_ai_assistant-0.1.131.dist-info}/entry_points.txt +0 -0
- {jarvis_ai_assistant-0.1.130.dist-info → jarvis_ai_assistant-0.1.131.dist-info}/top_level.txt +0 -0
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import re
|
|
2
|
-
from typing import Any, Tuple
|
|
3
|
-
|
|
4
|
-
from jarvis.jarvis_utils.output import PrettyOutput, OutputType
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
def builtin_input_handler(user_input: str, agent: Any) -> Tuple[str, bool]:
|
|
8
|
-
"""
|
|
9
|
-
处理内置的特殊输入标记,并追加相应的提示词
|
|
10
|
-
|
|
11
|
-
参数:
|
|
12
|
-
user_input: 用户输入
|
|
13
|
-
agent: 代理对象
|
|
14
|
-
|
|
15
|
-
返回:
|
|
16
|
-
Tuple[str, bool]: 处理后的输入和是否需要进一步处理
|
|
17
|
-
"""
|
|
18
|
-
# 查找特殊标记
|
|
19
|
-
special_tags = re.findall(r"'<([^>]+)>'", user_input)
|
|
20
|
-
|
|
21
|
-
if not special_tags:
|
|
22
|
-
return user_input, False
|
|
23
|
-
|
|
24
|
-
# 使用集合去重
|
|
25
|
-
processed_tags = set()
|
|
26
|
-
# 处理每个标记
|
|
27
|
-
for tag in special_tags:
|
|
28
|
-
if tag in processed_tags:
|
|
29
|
-
continue
|
|
30
|
-
processed_tags.add(tag)
|
|
31
|
-
|
|
32
|
-
if tag == "CodeBase":
|
|
33
|
-
user_input = user_input.replace(f"'<{tag}>'", "")
|
|
34
|
-
user_input += "\n请使用ask_codebase工具查询代码库"
|
|
35
|
-
elif tag == "Web":
|
|
36
|
-
user_input = user_input.replace(f"'<{tag}>'", "")
|
|
37
|
-
user_input += "\n请使用search_web工具进行网页搜索"
|
|
38
|
-
elif tag == "RAG":
|
|
39
|
-
user_input = user_input.replace(f"'<{tag}>'", "")
|
|
40
|
-
user_input += "\n请使用rag工具进行知识库检索"
|
|
41
|
-
# 移除对未知标记的警告输出
|
|
42
|
-
|
|
43
|
-
return user_input, False
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
import os
|
|
2
|
-
from typing import Dict, Any
|
|
3
|
-
from jarvis.jarvis_lsp.registry import LSPRegistry
|
|
4
|
-
|
|
5
|
-
class LSPGetDocumentSymbolsTool:
|
|
6
|
-
"""Tool for getting document symbols in code files using LSP."""
|
|
7
|
-
|
|
8
|
-
name = "lsp_get_document_symbols"
|
|
9
|
-
description = "Get document symbols (functions, classes, variables) in code files"
|
|
10
|
-
parameters = {
|
|
11
|
-
"file_path": "Path to the file to analyze",
|
|
12
|
-
"language": f"Programming language of the file ({', '.join(LSPRegistry.get_global_lsp_registry().get_supported_languages())})"
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@staticmethod
|
|
16
|
-
def check() -> bool:
|
|
17
|
-
"""Check if any LSP server is available."""
|
|
18
|
-
registry = LSPRegistry.get_global_lsp_registry()
|
|
19
|
-
return len(registry.get_supported_languages()) > 0
|
|
20
|
-
|
|
21
|
-
def execute(self, args: Dict[str, Any]) -> Dict[str, Any]:
|
|
22
|
-
"""Execute the tool."""
|
|
23
|
-
file_path = args.get("file_path", "")
|
|
24
|
-
language = args.get("language", "")
|
|
25
|
-
|
|
26
|
-
if not file_path or not language:
|
|
27
|
-
return {
|
|
28
|
-
"success": False,
|
|
29
|
-
"stderr": "Both file_path and language must be provided",
|
|
30
|
-
"stdout": ""
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
if not os.path.exists(file_path):
|
|
34
|
-
return {
|
|
35
|
-
"success": False,
|
|
36
|
-
"stderr": f"File not found: {file_path}",
|
|
37
|
-
"stdout": ""
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
# Get LSP instance
|
|
41
|
-
registry = LSPRegistry.get_global_lsp_registry()
|
|
42
|
-
lsp = registry.create_lsp(language)
|
|
43
|
-
|
|
44
|
-
if not lsp:
|
|
45
|
-
return {
|
|
46
|
-
"success": False,
|
|
47
|
-
"stderr": f"No LSP support for language: {language}",
|
|
48
|
-
"stdout": ""
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
try:
|
|
52
|
-
# Initialize LSP
|
|
53
|
-
if not lsp.initialize(os.path.abspath(os.getcwd())):
|
|
54
|
-
return {
|
|
55
|
-
"success": False,
|
|
56
|
-
"stderr": "LSP initialization failed",
|
|
57
|
-
"stdout": ""
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
# Get symbols
|
|
61
|
-
symbols = lsp.get_document_symbols(file_path)
|
|
62
|
-
|
|
63
|
-
# Format output
|
|
64
|
-
output = []
|
|
65
|
-
for symbol in symbols:
|
|
66
|
-
start = symbol["range"]["start"]
|
|
67
|
-
name = LSPRegistry.get_text_at_position(file_path, start["line"], start["character"])
|
|
68
|
-
line = LSPRegistry.get_line_at_position(file_path, start["line"]).strip()
|
|
69
|
-
output.append(f"Symbol: {name}")
|
|
70
|
-
output.append(f"Line {start['line'] + 1}: {line}")
|
|
71
|
-
output.append("-" * 40)
|
|
72
|
-
|
|
73
|
-
return {
|
|
74
|
-
"success": True,
|
|
75
|
-
"stdout": "\n".join(output) if output else "No symbols found",
|
|
76
|
-
"stderr": ""
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
except Exception as e:
|
|
80
|
-
return {
|
|
81
|
-
"success": False,
|
|
82
|
-
"stderr": f"Error finding symbols: {str(e)}",
|
|
83
|
-
"stdout": ""
|
|
84
|
-
}
|
|
85
|
-
finally:
|
|
86
|
-
if lsp:
|
|
87
|
-
lsp.shutdown()
|
|
@@ -1,130 +0,0 @@
|
|
|
1
|
-
import os
|
|
2
|
-
from typing import Dict, Any
|
|
3
|
-
from jarvis.jarvis_lsp.registry import LSPRegistry
|
|
4
|
-
|
|
5
|
-
class LSPPrepareRenameTool:
|
|
6
|
-
"""使用LSP检查符号是否可以安全重命名并显示所有受影响位置的工具"""
|
|
7
|
-
|
|
8
|
-
name = "lsp_prepare_rename"
|
|
9
|
-
description = "检查符号是否可以安全重命名,并显示所有受影响的位置"
|
|
10
|
-
parameters = {
|
|
11
|
-
"file_path": "包含符号的文件路径",
|
|
12
|
-
"line": "符号所在的行号(从0开始)",
|
|
13
|
-
"character": "符号在行中的字符位置",
|
|
14
|
-
"language": f"文件的编程语言({', '.join(LSPRegistry.get_global_lsp_registry().get_supported_languages())})"
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
@staticmethod
|
|
18
|
-
def check() -> bool:
|
|
19
|
-
"""Check if any LSP server is available."""
|
|
20
|
-
registry = LSPRegistry.get_global_lsp_registry()
|
|
21
|
-
return len(registry.get_supported_languages()) > 0
|
|
22
|
-
|
|
23
|
-
def execute(self, args: Dict[str, Any]) -> Dict[str, Any]:
|
|
24
|
-
"""Execute the tool."""
|
|
25
|
-
file_path = args.get("file_path", "")
|
|
26
|
-
line = args.get("line", None)
|
|
27
|
-
character = args.get("character", None)
|
|
28
|
-
language = args.get("language", "")
|
|
29
|
-
|
|
30
|
-
# Validate inputs
|
|
31
|
-
if not all([file_path, line is not None, character is not None, language]):
|
|
32
|
-
return {
|
|
33
|
-
"success": False,
|
|
34
|
-
"stderr": "All parameters (file_path, line, character, language) must be provided",
|
|
35
|
-
"stdout": ""
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
try:
|
|
39
|
-
line = int(line)
|
|
40
|
-
character = int(character)
|
|
41
|
-
except ValueError:
|
|
42
|
-
return {
|
|
43
|
-
"success": False,
|
|
44
|
-
"stderr": "Line and character must be integers",
|
|
45
|
-
"stdout": ""
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
if not os.path.exists(file_path):
|
|
49
|
-
return {
|
|
50
|
-
"success": False,
|
|
51
|
-
"stderr": f"File not found: {file_path}",
|
|
52
|
-
"stdout": ""
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
# Get LSP instance
|
|
56
|
-
registry = LSPRegistry.get_global_lsp_registry()
|
|
57
|
-
lsp = registry.create_lsp(language)
|
|
58
|
-
|
|
59
|
-
if not lsp:
|
|
60
|
-
return {
|
|
61
|
-
"success": False,
|
|
62
|
-
"stderr": f"No LSP support for language: {language}",
|
|
63
|
-
"stdout": ""
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
try:
|
|
67
|
-
# Initialize LSP
|
|
68
|
-
if not lsp.initialize(os.path.abspath(os.getcwd())):
|
|
69
|
-
return {
|
|
70
|
-
"success": False,
|
|
71
|
-
"stderr": "LSP initialization failed",
|
|
72
|
-
"stdout": ""
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
# Get symbol at position
|
|
76
|
-
symbol = LSPRegistry.get_text_at_position(file_path, line, character)
|
|
77
|
-
if not symbol:
|
|
78
|
-
return {
|
|
79
|
-
"success": False,
|
|
80
|
-
"stderr": f"No symbol found at position {line}:{character}",
|
|
81
|
-
"stdout": ""
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
# Check if rename is possible
|
|
85
|
-
rename_info = lsp.prepare_rename(file_path, (line, character))
|
|
86
|
-
if not rename_info:
|
|
87
|
-
return {
|
|
88
|
-
"success": True,
|
|
89
|
-
"stdout": f"Symbol '{symbol}' cannot be renamed. It might be:\n" +
|
|
90
|
-
"- A built-in or library symbol\n" +
|
|
91
|
-
"- A read-only symbol\n" +
|
|
92
|
-
"- Not a valid identifier",
|
|
93
|
-
"stderr": ""
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
# Get all references to show affected locations
|
|
97
|
-
refs = lsp.find_references(file_path, (line, character))
|
|
98
|
-
|
|
99
|
-
# Format output
|
|
100
|
-
output = [
|
|
101
|
-
f"Symbol '{symbol}' can be renamed.",
|
|
102
|
-
f"\nRenaming will affect the following locations:"
|
|
103
|
-
]
|
|
104
|
-
|
|
105
|
-
for ref in refs:
|
|
106
|
-
ref_line = ref["range"]["start"]["line"]
|
|
107
|
-
ref_char = ref["range"]["start"]["character"]
|
|
108
|
-
context = LSPRegistry.get_line_at_position(ref["uri"], ref_line).strip()
|
|
109
|
-
output.extend([
|
|
110
|
-
f"\nFile: {ref['uri']}",
|
|
111
|
-
f"Line {ref_line + 1}, Col {ref_char + 1}: {context}"
|
|
112
|
-
])
|
|
113
|
-
|
|
114
|
-
output.append("\nNote: Make sure to review all locations before performing the rename.")
|
|
115
|
-
|
|
116
|
-
return {
|
|
117
|
-
"success": True,
|
|
118
|
-
"stdout": "\n".join(output),
|
|
119
|
-
"stderr": ""
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
except Exception as e:
|
|
123
|
-
return {
|
|
124
|
-
"success": False,
|
|
125
|
-
"stderr": f"Error checking rename possibility: {str(e)}",
|
|
126
|
-
"stdout": ""
|
|
127
|
-
}
|
|
128
|
-
finally:
|
|
129
|
-
if lsp:
|
|
130
|
-
lsp.shutdown()
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
jarvis/__init__.py,sha256=0ZoJQUdCltpUQrJdDLZo0EAN3_8xYv0anwrQ4bLeIQM,51
|
|
2
|
-
jarvis/jarvis_agent/__init__.py,sha256=TOC86xH33QELYKxr-e960R75L0t-l6XmAe4DUh4CIuY,22609
|
|
3
|
-
jarvis/jarvis_agent/main.py,sha256=PfuoMkLH-QsqOXUMpJYi9GB7ewx-Ub84b1GTxqV7UBo,2515
|
|
4
|
-
jarvis/jarvis_agent/output_handler.py,sha256=kJeFTjjSu0K_2p0wyhq2veSZuhRXoaFC_8wVaoBKX0w,401
|
|
5
|
-
jarvis/jarvis_c2rust/c2rust.yaml,sha256=vsHYdz7RtjBfKvGkpjDV2rcDf9qBfU-VEBP2k0tk1AY,22858
|
|
6
|
-
jarvis/jarvis_code_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
jarvis/jarvis_code_agent/builtin_input_handler.py,sha256=HBza949NZyzZrbVlG31ITk5h0DD6MY_yjCieatvigd0,1366
|
|
8
|
-
jarvis/jarvis_code_agent/code_agent.py,sha256=UCDDROy-7cV1LUhaVU40YW_GIYaYSBSHqXSC-yiRa4k,8504
|
|
9
|
-
jarvis/jarvis_code_agent/file_input_handler.py,sha256=yooXbtWGziNzQKxM6xDyAmnJe4fKcD6kYakxKEJBAdw,3338
|
|
10
|
-
jarvis/jarvis_code_agent/file_select.py,sha256=2nSy1FW-kK-wvtz0YbbgSbd4ZwXMlA7sBP0nC80FzLI,8160
|
|
11
|
-
jarvis/jarvis_code_agent/patch.py,sha256=V8lUvDURinnhT3HLP2AQI-DHPTOhk-75piZYFc4Zc-8,17150
|
|
12
|
-
jarvis/jarvis_code_agent/shell_input_handler.py,sha256=LTXKHNbqTKf5S2kXU255iBx_e-EsDTRaZ0aokFWkUU4,1075
|
|
13
|
-
jarvis/jarvis_codebase/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
jarvis/jarvis_codebase/main.py,sha256=KSNf2RoPDn_jnfjUA5Sry7sh7iJ9Q267Z8k4dsQANRM,41325
|
|
15
|
-
jarvis/jarvis_dev/main.py,sha256=eOEvLmzG5S_X5VhvanaYLHPHHL2hpojHH6OOgnEpwAM,30413
|
|
16
|
-
jarvis/jarvis_git_squash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
jarvis/jarvis_git_squash/main.py,sha256=g4csaRDYH3n3MCHc8aZb2N4wWVCVZ-pIgd0oanXDnD8,2798
|
|
18
|
-
jarvis/jarvis_lsp/base.py,sha256=ceJBQoOU7JHsvQEAA3agUTedh7_ki_HgK0re7-V9rqg,4119
|
|
19
|
-
jarvis/jarvis_lsp/cpp.py,sha256=Fx2c57omtBQVWB2648TBXufAV2za-u9bF0oe4928pHU,4605
|
|
20
|
-
jarvis/jarvis_lsp/go.py,sha256=fgYBhZaiU2OQPAFQh4fBFOO--HKxkXcr8PEYyF_YlcE,4930
|
|
21
|
-
jarvis/jarvis_lsp/python.py,sha256=NYatk1rlah-bPnTKOn_BXwkYp0IsCUFYRGdLTVVYsCM,3708
|
|
22
|
-
jarvis/jarvis_lsp/registry.py,sha256=slD6p3FAMjL8pQx2id-RxX1pwMjP4FgyMsM3ZbckQJI,9884
|
|
23
|
-
jarvis/jarvis_lsp/rust.py,sha256=nV1EKtq5y57E47DbQlD2DsfvwFVE2JoUTs-9paxeyDo,5161
|
|
24
|
-
jarvis/jarvis_multi_agent/__init__.py,sha256=zgTXCUJwmhrlJhz_ZK5GIfav0Q7TZ2D-poc53ydy-qw,6847
|
|
25
|
-
jarvis/jarvis_platform/__init__.py,sha256=mrOt67nselz_H1gX9wdAO4y2DY5WPXzABqJbr5Des8k,63
|
|
26
|
-
jarvis/jarvis_platform/ai8.py,sha256=xjgoiF7QHx_5FHj-npTFVvZFYg8RBzkqTGAOQ-MJiL0,11972
|
|
27
|
-
jarvis/jarvis_platform/base.py,sha256=2chHt0pMx4rr0OFTeDpZcVqFUxF_q4YslUt30E5Augk,3277
|
|
28
|
-
jarvis/jarvis_platform/kimi.py,sha256=Qwb81flbKPvj-qZyJAMS_u0lQatRFQztYxUGDbj1keM,15713
|
|
29
|
-
jarvis/jarvis_platform/ollama.py,sha256=NHQMJSpC91WtSFuHKJuwD8qO-z4yDTF9mZX6BzWTKRU,5658
|
|
30
|
-
jarvis/jarvis_platform/openai.py,sha256=GSxTB69WitXJS3pL0sxCoB2F0EVHmvhrwLBC_JT8s34,4470
|
|
31
|
-
jarvis/jarvis_platform/oyi.py,sha256=pa72TtBYlhs3KPpqO4Y78a1Jvx4mN0pojBklu8X3F-k,15024
|
|
32
|
-
jarvis/jarvis_platform/registry.py,sha256=g-fz4VSlMyovLpZoim023CdnZ8e9W0kZyO0GxatlAp0,8523
|
|
33
|
-
jarvis/jarvis_platform_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
jarvis/jarvis_platform_manager/main.py,sha256=84j3voQDOVhvCqWxf-SGpdrYQPcf0pA5qUKe7b5oPUE,20898
|
|
35
|
-
jarvis/jarvis_platform_manager/openai_test.py,sha256=bkcVG6o2nNazj4zjkENgA4yOEzdTI9Qbm5dco-2MGYM,5190
|
|
36
|
-
jarvis/jarvis_rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
-
jarvis/jarvis_rag/main.py,sha256=yEvzQQZ4YQoOovQvH9MqQDbdnFw11bC_fyrNFo3QRq8,35873
|
|
38
|
-
jarvis/jarvis_smart_shell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
-
jarvis/jarvis_smart_shell/main.py,sha256=5gyBKgxuaTrDToE7Xy4DhsJPDOEviPi7ktm1vOZoIno,4618
|
|
40
|
-
jarvis/jarvis_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
|
-
jarvis/jarvis_tools/ask_codebase.py,sha256=DyqOsVgVPefhGKC5L2bQqKj8KMFZE-PDgfdoHQ9ajH4,3300
|
|
42
|
-
jarvis/jarvis_tools/ask_user.py,sha256=kU6BOhFz_mKfqABd0l_00TL7Mqp_dhV3r0qkKLy8yRM,1745
|
|
43
|
-
jarvis/jarvis_tools/base.py,sha256=8gIgIx9LJAKOxdpPu7zMDItWqwXmXVTWAGfUkpQonzw,1196
|
|
44
|
-
jarvis/jarvis_tools/chdir.py,sha256=GLbH2fOKESUn3XYhNg0uOI5axTO2csC0B9HUL0bMZ5U,2790
|
|
45
|
-
jarvis/jarvis_tools/code_review.py,sha256=4TMsTehbIq3W-K-LvHjMwbaGtt66sbSM6nij30YsxlU,10039
|
|
46
|
-
jarvis/jarvis_tools/create_code_agent.py,sha256=lVnTP1Kq4q8aWOJ97YTf8POds-Hb3qeYS6MNOiM0wF4,3768
|
|
47
|
-
jarvis/jarvis_tools/create_sub_agent.py,sha256=7WhbFpFpS7o-yDbFC2xeKypH05H7ovBWIGNVZzK48po,2481
|
|
48
|
-
jarvis/jarvis_tools/execute_shell.py,sha256=5LWWae8LKX4Qe3DIkSiLpcEvkCcF1ruvY0gbAIrT1Nw,3914
|
|
49
|
-
jarvis/jarvis_tools/execute_shell_script.py,sha256=JLs_4p3rXS_d0PdfS6lP_4ojFlD0SayAe0PNEGVfyzE,2030
|
|
50
|
-
jarvis/jarvis_tools/file_operation.py,sha256=3dcbugrzSaXHV7m98k1E_CpEIK2v4DYqZNZQim-fuxM,6973
|
|
51
|
-
jarvis/jarvis_tools/git_commiter.py,sha256=hG2-DIYbOFsRegDgkTGGGhdIH2_uk4-EPk2w53TtS2g,5576
|
|
52
|
-
jarvis/jarvis_tools/lsp_find_definition.py,sha256=LqAOf6W4_WZR2GmtQXb7pMSduJzK_g3ysaOrgxu8CDE,4755
|
|
53
|
-
jarvis/jarvis_tools/lsp_find_references.py,sha256=IR1QcRi-p4zHS0YENb7vDNMUSuGQUTA4W9bPa9-VO-Y,4028
|
|
54
|
-
jarvis/jarvis_tools/lsp_get_diagnostics.py,sha256=_u2lsSFY7GkOlyKD2CFnvEpkZzAjNfEUMsM9dKGQz40,4754
|
|
55
|
-
jarvis/jarvis_tools/lsp_get_document_symbols.py,sha256=c7_9jP1toe_kepaTmZf1R1jn-JZVCwr6_0ox-KRd8bo,3065
|
|
56
|
-
jarvis/jarvis_tools/lsp_prepare_rename.py,sha256=HIeJjup8luIH25XuLqTVdejWDT5vOn-IWSo-TKDFjZ4,4821
|
|
57
|
-
jarvis/jarvis_tools/methodology.py,sha256=jLYFji3hP7Gff7WFRuR-_VmPHI8Rqq0EGDIgackhqtc,5787
|
|
58
|
-
jarvis/jarvis_tools/rag.py,sha256=WuTlyGV5rgZTRxts9eJPC3QABrsoNYKratdO8UzUFDw,5132
|
|
59
|
-
jarvis/jarvis_tools/read_code.py,sha256=pZFY1O6psFJsngVnFkk8eXcohm8Ioff7ffnyw2HdGBo,5430
|
|
60
|
-
jarvis/jarvis_tools/read_webpage.py,sha256=TkVNgirvcjns8-MHaDXOmliOKWCYcq3WzcbVXBi0IxY,4173
|
|
61
|
-
jarvis/jarvis_tools/registry.py,sha256=pYyjdyjYgvHfdglhp0I7YXfVIV8_jTSncoSgIG6HFUw,13719
|
|
62
|
-
jarvis/jarvis_tools/search_web.py,sha256=yzu2EP63It2but0LFUR0x1hlCkyTyr1AwY4APvxmniE,12903
|
|
63
|
-
jarvis/jarvis_tools/select_code_files.py,sha256=xCqHTjIGju9Pb1Yh2C1Y7l6uT_3pfVB6ARU0VQmeRNI,1879
|
|
64
|
-
jarvis/jarvis_tools/tool_generator.py,sha256=rBx5PsXJDQRkWfZFHiHon6q0KsU8kPYHmPCQ6yRi_cU,7722
|
|
65
|
-
jarvis/jarvis_utils/__init__.py,sha256=THxqKNkLvhnuoZRSQHCJ2-0epoZRrtrekJPQ3savarM,824
|
|
66
|
-
jarvis/jarvis_utils/config.py,sha256=j1Hqqluxo7W6BUpScjBtKUJpYKRw-DU0qlQSa8vvUtQ,4999
|
|
67
|
-
jarvis/jarvis_utils/embedding.py,sha256=vaY4lTE9Yw0joQVWTX1FxV0ZnnOz6W9vjQE1NASzXIk,6110
|
|
68
|
-
jarvis/jarvis_utils/git_utils.py,sha256=wU2CPmRP4cUnm5Omz1-a7l4HYML-dYZAZ5bwNrLoQH8,4467
|
|
69
|
-
jarvis/jarvis_utils/globals.py,sha256=nvykWxBnqfAFqAIyJfxP5Y1yYIXIQXjippVE5i2Bubg,2269
|
|
70
|
-
jarvis/jarvis_utils/input.py,sha256=_PjnmRFWoe2dSxY6nBaKZoMkFLkkMJsDjXybiASYLek,6466
|
|
71
|
-
jarvis/jarvis_utils/methodology.py,sha256=915rbvNbrOAJHBRUFq_h06BC_lA2eezCtBmZMbIk0B0,6351
|
|
72
|
-
jarvis/jarvis_utils/output.py,sha256=1X4cd_M2gwL9-W2M44BwGNtmeFwFXmtC1_RvbwC_AR4,8373
|
|
73
|
-
jarvis/jarvis_utils/utils.py,sha256=DfnCwgPfQpX5DZz9WGbXkWoDYrB7qnVmA6JVPoFnBuk,5564
|
|
74
|
-
jarvis_ai_assistant-0.1.130.dist-info/LICENSE,sha256=AGgVgQmTqFvaztRtCAXsAMryUymB18gZif7_l2e1XOg,1063
|
|
75
|
-
jarvis_ai_assistant-0.1.130.dist-info/METADATA,sha256=r9icP4e77X7c4CTSyFPserE_Exu4Na6_zihnyXSK850,10519
|
|
76
|
-
jarvis_ai_assistant-0.1.130.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
77
|
-
jarvis_ai_assistant-0.1.130.dist-info/entry_points.txt,sha256=npKEpBACgZAF97wZgHSJNnturrh9DP33usD0kzjMXPo,771
|
|
78
|
-
jarvis_ai_assistant-0.1.130.dist-info/top_level.txt,sha256=1BOxyWfzOP_ZXj8rVTDnNCJ92bBGB0rwq8N1PCpoMIs,7
|
|
79
|
-
jarvis_ai_assistant-0.1.130.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{jarvis_ai_assistant-0.1.130.dist-info → jarvis_ai_assistant-0.1.131.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{jarvis_ai_assistant-0.1.130.dist-info → jarvis_ai_assistant-0.1.131.dist-info}/top_level.txt
RENAMED
|
File without changes
|