jarvis-ai-assistant 0.7.16__py3-none-any.whl → 1.0.2__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.
- jarvis/__init__.py +1 -1
- jarvis/jarvis_agent/__init__.py +567 -222
- jarvis/jarvis_agent/agent_manager.py +19 -12
- jarvis/jarvis_agent/builtin_input_handler.py +79 -11
- jarvis/jarvis_agent/config_editor.py +7 -2
- jarvis/jarvis_agent/event_bus.py +24 -13
- jarvis/jarvis_agent/events.py +19 -1
- jarvis/jarvis_agent/file_context_handler.py +67 -64
- jarvis/jarvis_agent/file_methodology_manager.py +38 -24
- jarvis/jarvis_agent/jarvis.py +186 -114
- jarvis/jarvis_agent/language_extractors/__init__.py +8 -1
- jarvis/jarvis_agent/language_extractors/c_extractor.py +7 -4
- jarvis/jarvis_agent/language_extractors/cpp_extractor.py +9 -4
- jarvis/jarvis_agent/language_extractors/go_extractor.py +7 -4
- jarvis/jarvis_agent/language_extractors/java_extractor.py +27 -20
- jarvis/jarvis_agent/language_extractors/javascript_extractor.py +22 -17
- jarvis/jarvis_agent/language_extractors/python_extractor.py +7 -4
- jarvis/jarvis_agent/language_extractors/rust_extractor.py +7 -4
- jarvis/jarvis_agent/language_extractors/typescript_extractor.py +22 -17
- jarvis/jarvis_agent/language_support_info.py +250 -219
- jarvis/jarvis_agent/main.py +19 -23
- jarvis/jarvis_agent/memory_manager.py +9 -6
- jarvis/jarvis_agent/methodology_share_manager.py +21 -15
- jarvis/jarvis_agent/output_handler.py +4 -2
- jarvis/jarvis_agent/prompt_builder.py +7 -6
- jarvis/jarvis_agent/prompt_manager.py +113 -8
- jarvis/jarvis_agent/prompts.py +317 -85
- jarvis/jarvis_agent/protocols.py +5 -2
- jarvis/jarvis_agent/run_loop.py +192 -32
- jarvis/jarvis_agent/session_manager.py +7 -3
- jarvis/jarvis_agent/share_manager.py +23 -13
- jarvis/jarvis_agent/shell_input_handler.py +12 -8
- jarvis/jarvis_agent/stdio_redirect.py +25 -26
- jarvis/jarvis_agent/task_analyzer.py +29 -23
- jarvis/jarvis_agent/task_list.py +869 -0
- jarvis/jarvis_agent/task_manager.py +26 -23
- jarvis/jarvis_agent/tool_executor.py +6 -5
- jarvis/jarvis_agent/tool_share_manager.py +24 -14
- jarvis/jarvis_agent/user_interaction.py +3 -3
- jarvis/jarvis_agent/utils.py +9 -1
- jarvis/jarvis_agent/web_bridge.py +37 -17
- jarvis/jarvis_agent/web_output_sink.py +5 -2
- jarvis/jarvis_agent/web_server.py +165 -36
- jarvis/jarvis_c2rust/__init__.py +1 -1
- jarvis/jarvis_c2rust/cli.py +260 -141
- jarvis/jarvis_c2rust/collector.py +37 -18
- jarvis/jarvis_c2rust/constants.py +60 -0
- jarvis/jarvis_c2rust/library_replacer.py +242 -1010
- jarvis/jarvis_c2rust/library_replacer_checkpoint.py +133 -0
- jarvis/jarvis_c2rust/library_replacer_llm.py +287 -0
- jarvis/jarvis_c2rust/library_replacer_loader.py +191 -0
- jarvis/jarvis_c2rust/library_replacer_output.py +134 -0
- jarvis/jarvis_c2rust/library_replacer_prompts.py +124 -0
- jarvis/jarvis_c2rust/library_replacer_utils.py +188 -0
- jarvis/jarvis_c2rust/llm_module_agent.py +98 -1044
- jarvis/jarvis_c2rust/llm_module_agent_apply.py +170 -0
- jarvis/jarvis_c2rust/llm_module_agent_executor.py +288 -0
- jarvis/jarvis_c2rust/llm_module_agent_loader.py +170 -0
- jarvis/jarvis_c2rust/llm_module_agent_prompts.py +268 -0
- jarvis/jarvis_c2rust/llm_module_agent_types.py +57 -0
- jarvis/jarvis_c2rust/llm_module_agent_utils.py +150 -0
- jarvis/jarvis_c2rust/llm_module_agent_validator.py +119 -0
- jarvis/jarvis_c2rust/loaders.py +28 -10
- jarvis/jarvis_c2rust/models.py +5 -2
- jarvis/jarvis_c2rust/optimizer.py +192 -1974
- jarvis/jarvis_c2rust/optimizer_build_fix.py +286 -0
- jarvis/jarvis_c2rust/optimizer_clippy.py +766 -0
- jarvis/jarvis_c2rust/optimizer_config.py +49 -0
- jarvis/jarvis_c2rust/optimizer_docs.py +183 -0
- jarvis/jarvis_c2rust/optimizer_options.py +48 -0
- jarvis/jarvis_c2rust/optimizer_progress.py +469 -0
- jarvis/jarvis_c2rust/optimizer_report.py +52 -0
- jarvis/jarvis_c2rust/optimizer_unsafe.py +309 -0
- jarvis/jarvis_c2rust/optimizer_utils.py +469 -0
- jarvis/jarvis_c2rust/optimizer_visibility.py +185 -0
- jarvis/jarvis_c2rust/scanner.py +229 -166
- jarvis/jarvis_c2rust/transpiler.py +531 -2732
- jarvis/jarvis_c2rust/transpiler_agents.py +503 -0
- jarvis/jarvis_c2rust/transpiler_build.py +1294 -0
- jarvis/jarvis_c2rust/transpiler_codegen.py +204 -0
- jarvis/jarvis_c2rust/transpiler_compile.py +146 -0
- jarvis/jarvis_c2rust/transpiler_config.py +178 -0
- jarvis/jarvis_c2rust/transpiler_context.py +122 -0
- jarvis/jarvis_c2rust/transpiler_executor.py +516 -0
- jarvis/jarvis_c2rust/transpiler_generation.py +278 -0
- jarvis/jarvis_c2rust/transpiler_git.py +163 -0
- jarvis/jarvis_c2rust/transpiler_mod_utils.py +225 -0
- jarvis/jarvis_c2rust/transpiler_modules.py +336 -0
- jarvis/jarvis_c2rust/transpiler_planning.py +394 -0
- jarvis/jarvis_c2rust/transpiler_review.py +1196 -0
- jarvis/jarvis_c2rust/transpiler_symbols.py +176 -0
- jarvis/jarvis_c2rust/utils.py +269 -79
- jarvis/jarvis_code_agent/after_change.py +233 -0
- jarvis/jarvis_code_agent/build_validation_config.py +37 -30
- jarvis/jarvis_code_agent/builtin_rules.py +68 -0
- jarvis/jarvis_code_agent/code_agent.py +976 -1517
- jarvis/jarvis_code_agent/code_agent_build.py +227 -0
- jarvis/jarvis_code_agent/code_agent_diff.py +246 -0
- jarvis/jarvis_code_agent/code_agent_git.py +525 -0
- jarvis/jarvis_code_agent/code_agent_impact.py +177 -0
- jarvis/jarvis_code_agent/code_agent_lint.py +283 -0
- jarvis/jarvis_code_agent/code_agent_llm.py +159 -0
- jarvis/jarvis_code_agent/code_agent_postprocess.py +105 -0
- jarvis/jarvis_code_agent/code_agent_prompts.py +46 -0
- jarvis/jarvis_code_agent/code_agent_rules.py +305 -0
- jarvis/jarvis_code_agent/code_analyzer/__init__.py +52 -48
- jarvis/jarvis_code_agent/code_analyzer/base_language.py +12 -10
- jarvis/jarvis_code_agent/code_analyzer/build_validator/__init__.py +12 -11
- jarvis/jarvis_code_agent/code_analyzer/build_validator/base.py +16 -12
- jarvis/jarvis_code_agent/code_analyzer/build_validator/cmake.py +26 -17
- jarvis/jarvis_code_agent/code_analyzer/build_validator/detector.py +558 -104
- jarvis/jarvis_code_agent/code_analyzer/build_validator/fallback.py +27 -16
- jarvis/jarvis_code_agent/code_analyzer/build_validator/go.py +22 -18
- jarvis/jarvis_code_agent/code_analyzer/build_validator/java_gradle.py +21 -16
- jarvis/jarvis_code_agent/code_analyzer/build_validator/java_maven.py +20 -16
- jarvis/jarvis_code_agent/code_analyzer/build_validator/makefile.py +27 -16
- jarvis/jarvis_code_agent/code_analyzer/build_validator/nodejs.py +47 -23
- jarvis/jarvis_code_agent/code_analyzer/build_validator/python.py +71 -37
- jarvis/jarvis_code_agent/code_analyzer/build_validator/rust.py +162 -35
- jarvis/jarvis_code_agent/code_analyzer/build_validator/validator.py +111 -57
- jarvis/jarvis_code_agent/code_analyzer/build_validator.py +18 -12
- jarvis/jarvis_code_agent/code_analyzer/context_manager.py +185 -183
- jarvis/jarvis_code_agent/code_analyzer/context_recommender.py +2 -1
- jarvis/jarvis_code_agent/code_analyzer/dependency_analyzer.py +24 -15
- jarvis/jarvis_code_agent/code_analyzer/file_ignore.py +227 -141
- jarvis/jarvis_code_agent/code_analyzer/impact_analyzer.py +321 -247
- jarvis/jarvis_code_agent/code_analyzer/language_registry.py +37 -29
- jarvis/jarvis_code_agent/code_analyzer/language_support.py +21 -13
- jarvis/jarvis_code_agent/code_analyzer/languages/__init__.py +15 -9
- jarvis/jarvis_code_agent/code_analyzer/languages/c_cpp_language.py +75 -45
- jarvis/jarvis_code_agent/code_analyzer/languages/go_language.py +87 -52
- jarvis/jarvis_code_agent/code_analyzer/languages/java_language.py +84 -51
- jarvis/jarvis_code_agent/code_analyzer/languages/javascript_language.py +94 -64
- jarvis/jarvis_code_agent/code_analyzer/languages/python_language.py +109 -71
- jarvis/jarvis_code_agent/code_analyzer/languages/rust_language.py +97 -63
- jarvis/jarvis_code_agent/code_analyzer/languages/typescript_language.py +103 -69
- jarvis/jarvis_code_agent/code_analyzer/llm_context_recommender.py +271 -268
- jarvis/jarvis_code_agent/code_analyzer/symbol_extractor.py +76 -64
- jarvis/jarvis_code_agent/code_analyzer/tree_sitter_extractor.py +92 -19
- jarvis/jarvis_code_agent/diff_visualizer.py +998 -0
- jarvis/jarvis_code_agent/lint.py +223 -524
- jarvis/jarvis_code_agent/rule_share_manager.py +158 -0
- jarvis/jarvis_code_agent/rules/clean_code.md +144 -0
- jarvis/jarvis_code_agent/rules/code_review.md +115 -0
- jarvis/jarvis_code_agent/rules/documentation.md +165 -0
- jarvis/jarvis_code_agent/rules/generate_rules.md +52 -0
- jarvis/jarvis_code_agent/rules/performance.md +158 -0
- jarvis/jarvis_code_agent/rules/refactoring.md +139 -0
- jarvis/jarvis_code_agent/rules/security.md +160 -0
- jarvis/jarvis_code_agent/rules/tdd.md +78 -0
- jarvis/jarvis_code_agent/test_rules/cpp_test.md +118 -0
- jarvis/jarvis_code_agent/test_rules/go_test.md +98 -0
- jarvis/jarvis_code_agent/test_rules/java_test.md +99 -0
- jarvis/jarvis_code_agent/test_rules/javascript_test.md +113 -0
- jarvis/jarvis_code_agent/test_rules/php_test.md +117 -0
- jarvis/jarvis_code_agent/test_rules/python_test.md +91 -0
- jarvis/jarvis_code_agent/test_rules/ruby_test.md +102 -0
- jarvis/jarvis_code_agent/test_rules/rust_test.md +86 -0
- jarvis/jarvis_code_agent/utils.py +36 -26
- jarvis/jarvis_code_analysis/checklists/loader.py +21 -21
- jarvis/jarvis_code_analysis/code_review.py +64 -33
- jarvis/jarvis_data/config_schema.json +285 -192
- jarvis/jarvis_git_squash/main.py +8 -6
- jarvis/jarvis_git_utils/git_commiter.py +53 -76
- jarvis/jarvis_mcp/__init__.py +5 -2
- jarvis/jarvis_mcp/sse_mcp_client.py +40 -30
- jarvis/jarvis_mcp/stdio_mcp_client.py +27 -19
- jarvis/jarvis_mcp/streamable_mcp_client.py +35 -26
- jarvis/jarvis_memory_organizer/memory_organizer.py +78 -55
- jarvis/jarvis_methodology/main.py +48 -39
- jarvis/jarvis_multi_agent/__init__.py +56 -23
- jarvis/jarvis_multi_agent/main.py +15 -18
- jarvis/jarvis_platform/base.py +179 -111
- jarvis/jarvis_platform/human.py +27 -16
- jarvis/jarvis_platform/kimi.py +52 -45
- jarvis/jarvis_platform/openai.py +101 -40
- jarvis/jarvis_platform/registry.py +51 -33
- jarvis/jarvis_platform/tongyi.py +68 -38
- jarvis/jarvis_platform/yuanbao.py +59 -43
- jarvis/jarvis_platform_manager/main.py +68 -76
- jarvis/jarvis_platform_manager/service.py +24 -14
- jarvis/jarvis_rag/README_CONFIG.md +314 -0
- jarvis/jarvis_rag/README_DYNAMIC_LOADING.md +311 -0
- jarvis/jarvis_rag/README_ONLINE_MODELS.md +230 -0
- jarvis/jarvis_rag/__init__.py +57 -4
- jarvis/jarvis_rag/cache.py +3 -1
- jarvis/jarvis_rag/cli.py +48 -68
- jarvis/jarvis_rag/embedding_interface.py +39 -0
- jarvis/jarvis_rag/embedding_manager.py +7 -230
- jarvis/jarvis_rag/embeddings/__init__.py +41 -0
- jarvis/jarvis_rag/embeddings/base.py +114 -0
- jarvis/jarvis_rag/embeddings/cohere.py +66 -0
- jarvis/jarvis_rag/embeddings/edgefn.py +117 -0
- jarvis/jarvis_rag/embeddings/local.py +260 -0
- jarvis/jarvis_rag/embeddings/openai.py +62 -0
- jarvis/jarvis_rag/embeddings/registry.py +293 -0
- jarvis/jarvis_rag/llm_interface.py +8 -6
- jarvis/jarvis_rag/query_rewriter.py +8 -9
- jarvis/jarvis_rag/rag_pipeline.py +61 -52
- jarvis/jarvis_rag/reranker.py +7 -75
- jarvis/jarvis_rag/reranker_interface.py +32 -0
- jarvis/jarvis_rag/rerankers/__init__.py +41 -0
- jarvis/jarvis_rag/rerankers/base.py +109 -0
- jarvis/jarvis_rag/rerankers/cohere.py +67 -0
- jarvis/jarvis_rag/rerankers/edgefn.py +140 -0
- jarvis/jarvis_rag/rerankers/jina.py +79 -0
- jarvis/jarvis_rag/rerankers/local.py +89 -0
- jarvis/jarvis_rag/rerankers/registry.py +293 -0
- jarvis/jarvis_rag/retriever.py +58 -43
- jarvis/jarvis_sec/__init__.py +66 -141
- jarvis/jarvis_sec/agents.py +21 -17
- jarvis/jarvis_sec/analysis.py +80 -33
- jarvis/jarvis_sec/checkers/__init__.py +7 -13
- jarvis/jarvis_sec/checkers/c_checker.py +356 -164
- jarvis/jarvis_sec/checkers/rust_checker.py +47 -29
- jarvis/jarvis_sec/cli.py +43 -21
- jarvis/jarvis_sec/clustering.py +430 -272
- jarvis/jarvis_sec/file_manager.py +99 -55
- jarvis/jarvis_sec/parsers.py +9 -6
- jarvis/jarvis_sec/prompts.py +4 -3
- jarvis/jarvis_sec/report.py +44 -22
- jarvis/jarvis_sec/review.py +180 -107
- jarvis/jarvis_sec/status.py +50 -41
- jarvis/jarvis_sec/types.py +3 -0
- jarvis/jarvis_sec/utils.py +160 -83
- jarvis/jarvis_sec/verification.py +411 -181
- jarvis/jarvis_sec/workflow.py +132 -21
- jarvis/jarvis_smart_shell/main.py +28 -41
- jarvis/jarvis_stats/cli.py +14 -12
- jarvis/jarvis_stats/stats.py +28 -19
- jarvis/jarvis_stats/storage.py +14 -8
- jarvis/jarvis_stats/visualizer.py +12 -7
- jarvis/jarvis_tools/base.py +5 -2
- jarvis/jarvis_tools/clear_memory.py +13 -9
- jarvis/jarvis_tools/cli/main.py +23 -18
- jarvis/jarvis_tools/edit_file.py +572 -873
- jarvis/jarvis_tools/execute_script.py +10 -7
- jarvis/jarvis_tools/file_analyzer.py +7 -8
- jarvis/jarvis_tools/meta_agent.py +287 -0
- jarvis/jarvis_tools/methodology.py +5 -3
- jarvis/jarvis_tools/read_code.py +305 -1438
- jarvis/jarvis_tools/read_symbols.py +50 -17
- jarvis/jarvis_tools/read_webpage.py +19 -18
- jarvis/jarvis_tools/registry.py +435 -156
- jarvis/jarvis_tools/retrieve_memory.py +16 -11
- jarvis/jarvis_tools/save_memory.py +8 -6
- jarvis/jarvis_tools/search_web.py +31 -31
- jarvis/jarvis_tools/sub_agent.py +32 -28
- jarvis/jarvis_tools/sub_code_agent.py +44 -60
- jarvis/jarvis_tools/task_list_manager.py +1811 -0
- jarvis/jarvis_tools/virtual_tty.py +29 -19
- jarvis/jarvis_utils/__init__.py +4 -0
- jarvis/jarvis_utils/builtin_replace_map.py +2 -1
- jarvis/jarvis_utils/clipboard.py +9 -8
- jarvis/jarvis_utils/collections.py +331 -0
- jarvis/jarvis_utils/config.py +699 -194
- jarvis/jarvis_utils/dialogue_recorder.py +294 -0
- jarvis/jarvis_utils/embedding.py +6 -3
- jarvis/jarvis_utils/file_processors.py +7 -1
- jarvis/jarvis_utils/fzf.py +9 -3
- jarvis/jarvis_utils/git_utils.py +71 -42
- jarvis/jarvis_utils/globals.py +116 -32
- jarvis/jarvis_utils/http.py +6 -2
- jarvis/jarvis_utils/input.py +318 -83
- jarvis/jarvis_utils/jsonnet_compat.py +119 -104
- jarvis/jarvis_utils/methodology.py +37 -28
- jarvis/jarvis_utils/output.py +201 -44
- jarvis/jarvis_utils/utils.py +986 -628
- {jarvis_ai_assistant-0.7.16.dist-info → jarvis_ai_assistant-1.0.2.dist-info}/METADATA +49 -33
- jarvis_ai_assistant-1.0.2.dist-info/RECORD +304 -0
- jarvis/jarvis_code_agent/code_analyzer/structured_code.py +0 -556
- jarvis/jarvis_tools/generate_new_tool.py +0 -205
- jarvis/jarvis_tools/lsp_client.py +0 -1552
- jarvis/jarvis_tools/rewrite_file.py +0 -105
- jarvis_ai_assistant-0.7.16.dist-info/RECORD +0 -218
- {jarvis_ai_assistant-0.7.16.dist-info → jarvis_ai_assistant-1.0.2.dist-info}/WHEEL +0 -0
- {jarvis_ai_assistant-0.7.16.dist-info → jarvis_ai_assistant-1.0.2.dist-info}/entry_points.txt +0 -0
- {jarvis_ai_assistant-0.7.16.dist-info → jarvis_ai_assistant-1.0.2.dist-info}/licenses/LICENSE +0 -0
- {jarvis_ai_assistant-0.7.16.dist-info → jarvis_ai_assistant-1.0.2.dist-info}/top_level.txt +0 -0
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
import os
|
|
3
|
-
from typing import Any, Dict
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
class RewriteFileTool:
|
|
8
|
-
"""文件重写工具,用于完全重写文件内容"""
|
|
9
|
-
|
|
10
|
-
name = "rewrite_file"
|
|
11
|
-
description = "完全重写文件内容,适用于新增文件或大范围改写。具备失败回滚能力。局部修改请使用 edit_file。\n\n ⚠️ 重要提示:\n - 不要一次重写太多内容,建议分多次进行,避免超过LLM的上下文窗口大小\n - 如果文件内容较长(超过2048字符),建议采用以下策略:\n 1. 第一次调用 rewrite_file 写入部分内容(如文件的前半部分或关键部分)\n 2. 然后多次调用 edit_file 工具,使用 insert_after 操作补充后续内容\n - 这样可以避免单次操作内容过长导致上下文溢出"
|
|
12
|
-
|
|
13
|
-
parameters = {
|
|
14
|
-
"type": "object",
|
|
15
|
-
"properties": {
|
|
16
|
-
"file_path": {
|
|
17
|
-
"type": "string",
|
|
18
|
-
"description": "要重写的文件路径(支持绝对路径和相对路径)",
|
|
19
|
-
},
|
|
20
|
-
"content": {
|
|
21
|
-
"type": "string",
|
|
22
|
-
"description": "新的文件完整内容",
|
|
23
|
-
},
|
|
24
|
-
},
|
|
25
|
-
"required": ["file_path", "content"],
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
def __init__(self):
|
|
29
|
-
"""初始化文件重写工具"""
|
|
30
|
-
pass
|
|
31
|
-
|
|
32
|
-
def execute(self, args: Dict[str, Any]) -> Dict[str, Any]:
|
|
33
|
-
"""执行文件重写操作"""
|
|
34
|
-
try:
|
|
35
|
-
file_path = args.get("file_path")
|
|
36
|
-
content = args.get("content")
|
|
37
|
-
|
|
38
|
-
if not file_path:
|
|
39
|
-
return {
|
|
40
|
-
"success": False,
|
|
41
|
-
"stdout": "",
|
|
42
|
-
"stderr": "缺少必需参数:file_path",
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
if content is None:
|
|
46
|
-
return {
|
|
47
|
-
"success": False,
|
|
48
|
-
"stdout": "",
|
|
49
|
-
"stderr": "缺少必需参数:content",
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
abs_path = os.path.abspath(file_path)
|
|
53
|
-
original_content = None
|
|
54
|
-
processed = False
|
|
55
|
-
|
|
56
|
-
try:
|
|
57
|
-
file_exists = os.path.exists(abs_path)
|
|
58
|
-
if file_exists:
|
|
59
|
-
with open(abs_path, "r", encoding="utf-8") as rf:
|
|
60
|
-
original_content = rf.read()
|
|
61
|
-
|
|
62
|
-
os.makedirs(os.path.dirname(abs_path), exist_ok=True)
|
|
63
|
-
with open(abs_path, "w", encoding="utf-8") as wf:
|
|
64
|
-
wf.write(content)
|
|
65
|
-
processed = True
|
|
66
|
-
|
|
67
|
-
# 记录 REWRITE 操作调用统计
|
|
68
|
-
try:
|
|
69
|
-
from jarvis.jarvis_stats.stats import StatsManager
|
|
70
|
-
|
|
71
|
-
StatsManager.increment("rewrite_file", group="tool")
|
|
72
|
-
except Exception:
|
|
73
|
-
pass
|
|
74
|
-
|
|
75
|
-
return {
|
|
76
|
-
"success": True,
|
|
77
|
-
"stdout": f"文件 {abs_path} 重写成功",
|
|
78
|
-
"stderr": "",
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
except Exception as e:
|
|
82
|
-
# 回滚已修改内容
|
|
83
|
-
try:
|
|
84
|
-
if processed:
|
|
85
|
-
if original_content is None:
|
|
86
|
-
if os.path.exists(abs_path):
|
|
87
|
-
os.remove(abs_path)
|
|
88
|
-
else:
|
|
89
|
-
with open(abs_path, "w", encoding="utf-8") as wf:
|
|
90
|
-
wf.write(original_content)
|
|
91
|
-
except Exception:
|
|
92
|
-
pass
|
|
93
|
-
error_msg = f"文件重写失败: {str(e)}"
|
|
94
|
-
print(f"❌ {error_msg}")
|
|
95
|
-
return {
|
|
96
|
-
"success": False,
|
|
97
|
-
"stdout": "",
|
|
98
|
-
"stderr": error_msg,
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
except Exception as e:
|
|
102
|
-
error_msg = f"文件重写失败: {str(e)}"
|
|
103
|
-
print(f"❌ {error_msg}")
|
|
104
|
-
return {"success": False, "stdout": "", "stderr": error_msg}
|
|
105
|
-
|
|
@@ -1,218 +0,0 @@
|
|
|
1
|
-
jarvis/__init__.py,sha256=VFZITIaoke3AH_9nol_aoyJHVpGMMufmjbYz-4Ekolg,74
|
|
2
|
-
jarvis/jarvis_agent/__init__.py,sha256=TjozGtQWYj-9SJlzIWz23hfxOLzOSo5lOWC_wF6YKDM,62110
|
|
3
|
-
jarvis/jarvis_agent/agent_manager.py,sha256=yCU0D_LWmjW1qaDAQRNElvbg69NKLh_SjuMIjS8f9jA,3473
|
|
4
|
-
jarvis/jarvis_agent/builtin_input_handler.py,sha256=0l7usDO-r1rdynpTH3l75ZtyhK1gi2Nz8IS1_CoTW8E,2699
|
|
5
|
-
jarvis/jarvis_agent/config_editor.py,sha256=C3lpjbDag8JUTmAZ-BEp40UPh4cyXp2Lsajvv02xLa0,1768
|
|
6
|
-
jarvis/jarvis_agent/event_bus.py,sha256=Yvn4HImfj-bDMBlZh0FIHiceSQ8RzNSkAGl0fLyQjhE,4507
|
|
7
|
-
jarvis/jarvis_agent/events.py,sha256=rmFQ37PasImCh7OCdCzNBvubk-kHwcUiYLgzmL0t0_4,3689
|
|
8
|
-
jarvis/jarvis_agent/file_context_handler.py,sha256=8YXgjXK5Tz4K_J5QSKigXBDEu07iTFHzsJ6J4wATZB0,11555
|
|
9
|
-
jarvis/jarvis_agent/file_methodology_manager.py,sha256=lPQKKRIgvzqmpeW07cTdGxsnzfJ09KqRr6OxCJkGR8Y,4286
|
|
10
|
-
jarvis/jarvis_agent/jarvis.py,sha256=oMVzxWJ78VQ0w6BqSIF84B6oy55hHoRcBVfXJWrGBUA,50713
|
|
11
|
-
jarvis/jarvis_agent/language_support_info.py,sha256=H8_40_razShe86kXN6VBKHza3nw5DeBIvPVRAkxcd3g,22138
|
|
12
|
-
jarvis/jarvis_agent/main.py,sha256=WoUoSP6lT_GQmPN3DW-Ow3ONDiDTkBVva-5rf38S3MQ,4285
|
|
13
|
-
jarvis/jarvis_agent/memory_manager.py,sha256=je-sx279LfYCIKGoyMTYnSo_i3B6eGPrAOHtRtTHdpo,7449
|
|
14
|
-
jarvis/jarvis_agent/methodology_share_manager.py,sha256=5bP8ibaV1yKNX_JXkea4iBksh9wL50ywOC9ouBbT0lE,6616
|
|
15
|
-
jarvis/jarvis_agent/output_handler.py,sha256=P7oWpXBGFfOsWq7cIhS_z9crkQ19ES7qU5pM92KKjAs,1172
|
|
16
|
-
jarvis/jarvis_agent/prompt_builder.py,sha256=PH1fPDVa8z_RXkoXHJFNDf8PQjUoLNLYwkh2lC__p40,1705
|
|
17
|
-
jarvis/jarvis_agent/prompt_manager.py,sha256=NlycrzV7umrwYK9295kN2T_N_drLgnddgGupQ0_5XpQ,2706
|
|
18
|
-
jarvis/jarvis_agent/prompts.py,sha256=ELIXlB1CqzAYNEBX4J1cnmuXGU0WUVOuHJpRyf4XvAg,12554
|
|
19
|
-
jarvis/jarvis_agent/protocols.py,sha256=X1GQggfVPkJKRUjE2lLV1xpCi4pi4oXNlByhxFoxpTw,799
|
|
20
|
-
jarvis/jarvis_agent/run_loop.py,sha256=Fsq__zu-gOQtzEvhqUYfy94DiBWa1ZOtFO3Ry19l6J0,10121
|
|
21
|
-
jarvis/jarvis_agent/session_manager.py,sha256=JFfQ0vRAi9EC3vn1wOefORM7pmGCrR8aqOiD6mHZlOA,2904
|
|
22
|
-
jarvis/jarvis_agent/share_manager.py,sha256=DUX1AinI3DCjYNyq2I2Ijedq63ddh5ufEHR5zrn5VDo,8683
|
|
23
|
-
jarvis/jarvis_agent/shell_input_handler.py,sha256=98PqY2FTvXDYdSRvHB3KUiZkLey0icZet-GSP6I58-8,1911
|
|
24
|
-
jarvis/jarvis_agent/stdio_redirect.py,sha256=cG3z54rShhE9ATFlcVFgKXNk8ShqwSVfDCtaIVilTes,9923
|
|
25
|
-
jarvis/jarvis_agent/task_analyzer.py,sha256=oLQPvTLXac1BbG4aJcOb77_YG_fv-mpHtgE0816fDFQ,8903
|
|
26
|
-
jarvis/jarvis_agent/task_manager.py,sha256=-UQq6gJON_yHQB4kAAFWVv5S4ceh3F-jbvP3h7hA5Ok,5924
|
|
27
|
-
jarvis/jarvis_agent/tool_executor.py,sha256=HZMEMXso_IIU30b6hDJn84GRhV_425mZapQ7jPTm32s,1784
|
|
28
|
-
jarvis/jarvis_agent/tool_share_manager.py,sha256=PMU2iyTKiYGrYeobCYYIhMKmz6zcVw3rXeZeev6d9Yc,4751
|
|
29
|
-
jarvis/jarvis_agent/user_interaction.py,sha256=tifFN49GkO_Q80sqOTVmhxwbNWTazF3K0cr8AnnvzdU,1453
|
|
30
|
-
jarvis/jarvis_agent/utils.py,sha256=WJmKys_ceDALL73GdMCOgmjGHBzeRSPj7rmc8Pkrvzc,1784
|
|
31
|
-
jarvis/jarvis_agent/web_bridge.py,sha256=h15PXuPWWfZynWt8bPW4BDeCpIVoIOlRXfO0je6HDx4,6673
|
|
32
|
-
jarvis/jarvis_agent/web_output_sink.py,sha256=sZ6WbLZnuCdT5dS9d8msHY_g-pnj-dvML-I6uJ7-sbc,1733
|
|
33
|
-
jarvis/jarvis_agent/web_server.py,sha256=t9Li9BGOb4W6RVA83U9-91kaA_ZhCwf6rwqLVHUkF2M,30222
|
|
34
|
-
jarvis/jarvis_agent/language_extractors/__init__.py,sha256=gpbDs_iZINRDn5Mgh_0yoqtHzkY-Q1WK3m3X0RRy-BA,1307
|
|
35
|
-
jarvis/jarvis_agent/language_extractors/c_extractor.py,sha256=6Fz1DyeAieyK1x-upKCmTbwKnvpeQLnkbBqJM21ptdU,647
|
|
36
|
-
jarvis/jarvis_agent/language_extractors/cpp_extractor.py,sha256=Jl3ymVaE4609jJXLmmmWNWtKD_e-qT5F788wqXjKeMc,708
|
|
37
|
-
jarvis/jarvis_agent/language_extractors/go_extractor.py,sha256=SNRWqEiz2lkk_fEx7WAKvtKgmD10lG0xb_7moQNDiYs,639
|
|
38
|
-
jarvis/jarvis_agent/language_extractors/java_extractor.py,sha256=7XxWIRuieFBcKjxmyWt7EfdhjRFe3DC8C0e4rBVTIbE,3536
|
|
39
|
-
jarvis/jarvis_agent/language_extractors/javascript_extractor.py,sha256=I9O-xBFOCiagAlFBlWpV7F2yUYcHuIaYOJbL2-WjjkI,3072
|
|
40
|
-
jarvis/jarvis_agent/language_extractors/python_extractor.py,sha256=BgAbbvOIEiD7y_-96c1iAhI05-ICrk19u3HGU6Ocj9M,672
|
|
41
|
-
jarvis/jarvis_agent/language_extractors/rust_extractor.py,sha256=3z_I4eIV04Vx47_C076Jm_MjCE0RitAJ-e7rr2g64-U,657
|
|
42
|
-
jarvis/jarvis_agent/language_extractors/typescript_extractor.py,sha256=mn79GGNw5r0hIK-hEf26pQMCpTc9QMCgA5wHYmeogP4,3319
|
|
43
|
-
jarvis/jarvis_c2rust/__init__.py,sha256=Y_cYTusArFRWaVV-oFuECbIsp4bA2I2amQGBDcrcOOU,1299
|
|
44
|
-
jarvis/jarvis_c2rust/cli.py,sha256=7KPusq7js4Vg5UWQxkayhuLJiIKyhnnbuzmTRb6SREs,26048
|
|
45
|
-
jarvis/jarvis_c2rust/collector.py,sha256=Ox2E3NO97pt9iX6w0dRsqFuoEFJuTvDeP7_W9NaJ0C4,8188
|
|
46
|
-
jarvis/jarvis_c2rust/constants.py,sha256=mQS5vNJkvfpQ0hQTAkXLqLmqQaD1V-SmqhqqDpk6bZE,1050
|
|
47
|
-
jarvis/jarvis_c2rust/library_replacer.py,sha256=4g62YeMTbAabwZuSxHKK6qSfdN1FTKta6MacZsxq0wI,53464
|
|
48
|
-
jarvis/jarvis_c2rust/llm_module_agent.py,sha256=SR3FJMn7LhOSQG08Y3ICh2u2QY02jdyhfIrRvxDEWns,57971
|
|
49
|
-
jarvis/jarvis_c2rust/loaders.py,sha256=fGDiB-bcZQM0b97sDEeRDg4898XKVaGBC0TZuuP5PKc,7808
|
|
50
|
-
jarvis/jarvis_c2rust/models.py,sha256=RkAe2vPxj06qz6441Mo2D48CRNkdWRRGCpm4_nhzCHY,671
|
|
51
|
-
jarvis/jarvis_c2rust/optimizer.py,sha256=ZVtc1dCm9TCtytCuqfSq5NA6e4G_LxQVyvtPM0dv_n0,114011
|
|
52
|
-
jarvis/jarvis_c2rust/scanner.py,sha256=4kuRCCZYZXH1WBhS30CzSojFaj5kzX7a1m_C5J05e5U,62871
|
|
53
|
-
jarvis/jarvis_c2rust/transpiler.py,sha256=1izSwPUHDgC_BB6v1VDXAnXYqg_qknD5MaIEcRtmqW0,182263
|
|
54
|
-
jarvis/jarvis_c2rust/utils.py,sha256=j0oIz3cAN2-Cz5NFbgW2n-z9Pne2i2qKI875znOVUqA,15665
|
|
55
|
-
jarvis/jarvis_code_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
|
-
jarvis/jarvis_code_agent/build_validation_config.py,sha256=bLDHrKXf2RAzK_qLCp2kH0mcg-3YOHhQROIRz4FjP3Y,4371
|
|
57
|
-
jarvis/jarvis_code_agent/code_agent.py,sha256=ctvYj49RM1rrecWzEPuEcRzNZDmM4zhK8KareWzzFXk,86578
|
|
58
|
-
jarvis/jarvis_code_agent/lint.py,sha256=TlkKDMxxZtUspSgQ3tPZpTi7nY7Cp_XuJO7Smu1vmFM,19482
|
|
59
|
-
jarvis/jarvis_code_agent/utils.py,sha256=omcNzidIUA6C0OQUyGdHk9MHd7DHiu2PDnj6Trz5hbA,4818
|
|
60
|
-
jarvis/jarvis_code_agent/code_analyzer/__init__.py,sha256=BbiJUBC5YkZ-8Ty6KDyXbP7A3ksedVWg066Xk0AWj38,1742
|
|
61
|
-
jarvis/jarvis_code_agent/code_analyzer/base_language.py,sha256=4TH9Mlgnj4X3n9uOJgJTTWHSMrJYHpojcLGzXlBen_E,2132
|
|
62
|
-
jarvis/jarvis_code_agent/code_analyzer/build_validator.py,sha256=XVBwHJgaBnwYaQ-bSXw3mts5aLW2SjgzsXu4s77GV4A,1032
|
|
63
|
-
jarvis/jarvis_code_agent/code_analyzer/context_manager.py,sha256=2EzEOO9PFlT5EB8KywwIblwHy3-u1PvQ75LJEaD1LRA,26943
|
|
64
|
-
jarvis/jarvis_code_agent/code_analyzer/context_recommender.py,sha256=xAYMHI2Gb7uSDaNdBuaJMLPGwwXeW34bByj_JT06wWM,433
|
|
65
|
-
jarvis/jarvis_code_agent/code_analyzer/dependency_analyzer.py,sha256=K_9-govIzeobGeoPvmgW-r4pTJAHxxnonklvl5rSpOg,5078
|
|
66
|
-
jarvis/jarvis_code_agent/code_analyzer/file_ignore.py,sha256=HU5769KTNv-gYoIi2drrMgzn6l8kfgzvs3RwEFHDOp8,9818
|
|
67
|
-
jarvis/jarvis_code_agent/code_analyzer/impact_analyzer.py,sha256=JqfneA1Z0ermmlZfYDQmTfxCbqibWbnMpwHBlHzpLTQ,29643
|
|
68
|
-
jarvis/jarvis_code_agent/code_analyzer/language_registry.py,sha256=k6Tg7l3UMEUIoUONyGQ-vMm62EBl4o200_clsXl6NEA,5597
|
|
69
|
-
jarvis/jarvis_code_agent/code_analyzer/language_support.py,sha256=4n7za48QoD_uyPHanvEI9qBmvhiKI0KIbXCwxe1x2To,3380
|
|
70
|
-
jarvis/jarvis_code_agent/code_analyzer/llm_context_recommender.py,sha256=5Ps_Is2zEf89JDWTaB5mzX26Tf-RY5vA3bFBA3BQ3C0,26182
|
|
71
|
-
jarvis/jarvis_code_agent/code_analyzer/structured_code.py,sha256=kIr7DPi_oI8tx1P9Wu8ZpWk87wvhODOvFst3AYnLBgM,23039
|
|
72
|
-
jarvis/jarvis_code_agent/code_analyzer/symbol_extractor.py,sha256=CA5ZUFOE3dVfV7YaZrkLZeTbhK4NhuDwO9TDZkDSry8,10358
|
|
73
|
-
jarvis/jarvis_code_agent/code_analyzer/tree_sitter_extractor.py,sha256=W6MQK6BlX7j9YDTyO70gtUZ3WCMml3_uED4j2-3tBig,2392
|
|
74
|
-
jarvis/jarvis_code_agent/code_analyzer/build_validator/__init__.py,sha256=FJda17qW9n4ICGmrhH_CAwN68iZ4kVdo0yF9dj5__oo,1202
|
|
75
|
-
jarvis/jarvis_code_agent/code_analyzer/build_validator/base.py,sha256=4RnS1e1KaRkw9FK1Ln23my-fFnxQM49Xg1ox0mqJ-Os,2981
|
|
76
|
-
jarvis/jarvis_code_agent/code_analyzer/build_validator/cmake.py,sha256=uYR38UJad9uhEfDbDPKNHQDpYftaxxQne1Itah8mgEw,2671
|
|
77
|
-
jarvis/jarvis_code_agent/code_analyzer/build_validator/detector.py,sha256=rLFWUhieg9-RbKTTrlnA-N2Nr2xSOyHoO5yFa-QaJA4,4247
|
|
78
|
-
jarvis/jarvis_code_agent/code_analyzer/build_validator/fallback.py,sha256=uU0QhZIsp8vL4YQy2oyvSvv9tBEncPibC1w3dSzd5Zw,2665
|
|
79
|
-
jarvis/jarvis_code_agent/code_analyzer/build_validator/go.py,sha256=Jp2WBwKeOmd9mwzLr48TOCho0OjOTD53XdldinvEhlI,2400
|
|
80
|
-
jarvis/jarvis_code_agent/code_analyzer/build_validator/java_gradle.py,sha256=Y7bPYoDy8HtEz9kDc6TfHq2Yo-stky-EwrXEHqfb2Hw,1617
|
|
81
|
-
jarvis/jarvis_code_agent/code_analyzer/build_validator/java_maven.py,sha256=GG9p5TEA7mfT-OOTzK5ej8_XUSI22HhwnFGKxymIy6k,1375
|
|
82
|
-
jarvis/jarvis_code_agent/code_analyzer/build_validator/makefile.py,sha256=nUV3X524VtpoOCvMbHdBYUFMPRJcFBLjRwSadX0Tm7g,1989
|
|
83
|
-
jarvis/jarvis_code_agent/code_analyzer/build_validator/nodejs.py,sha256=agAjoSyuwbqVS_8-osZyN0kIjjjkyfQq6Bhro6R-7vM,4653
|
|
84
|
-
jarvis/jarvis_code_agent/code_analyzer/build_validator/python.py,sha256=MBWoOlYk4zpDva2rJfUbgZs6RngpyRcd6g7no9HTkSI,6574
|
|
85
|
-
jarvis/jarvis_code_agent/code_analyzer/build_validator/rust.py,sha256=EH2TQykwGUXRSlrCLW0IQfpSvOgiV-jAKg-_neEe0cI,3898
|
|
86
|
-
jarvis/jarvis_code_agent/code_analyzer/build_validator/validator.py,sha256=KMt7i-SYzglpn3BIdwpZHaaD0OHin50gT1__FytR7qk,6537
|
|
87
|
-
jarvis/jarvis_code_agent/code_analyzer/languages/__init__.py,sha256=s3Gh0-pbCqFo119LVy1otZbZOv01P5GjvH2qm60jXVU,1361
|
|
88
|
-
jarvis/jarvis_code_agent/code_analyzer/languages/c_cpp_language.py,sha256=a9vBNu5Iqy4tVlj8msP6ogcR6_LwizxFkuNUo4LkKl0,9507
|
|
89
|
-
jarvis/jarvis_code_agent/code_analyzer/languages/go_language.py,sha256=X8nUrcVfhhgCMVeCFkz2puONH3fUmxKdIcBYrrzqTz4,7289
|
|
90
|
-
jarvis/jarvis_code_agent/code_analyzer/languages/java_language.py,sha256=TGhPFlQGoMiDvBZLA_MoNOWsRt6Ahod4bNHHbHglntM,7568
|
|
91
|
-
jarvis/jarvis_code_agent/code_analyzer/languages/javascript_language.py,sha256=u8uxLP8gY-zaqCLHIIx_HZHQXTRfnFltZjjYPIbNLZs,9362
|
|
92
|
-
jarvis/jarvis_code_agent/code_analyzer/languages/python_language.py,sha256=RGFtWfsNWlikLFG2-CIzXXQNR3oGcN6v_PQyPWQtAGA,11175
|
|
93
|
-
jarvis/jarvis_code_agent/code_analyzer/languages/rust_language.py,sha256=lZLwoNprQpjTo6mZ4JOsM2uWsQtjZcHpvHXeFd5qgLE,9759
|
|
94
|
-
jarvis/jarvis_code_agent/code_analyzer/languages/typescript_language.py,sha256=70jDzOWfd4l7CJuU9morv_TgQ5Gup3qxfmoKDxVbhlA,10278
|
|
95
|
-
jarvis/jarvis_code_analysis/code_review.py,sha256=EsUdl5Uq2xuWaZP8cVNUbCHoEjilGTVDzbRJK_FFpW8,29634
|
|
96
|
-
jarvis/jarvis_code_analysis/checklists/__init__.py,sha256=LIXAYa1sW3l7foP6kohLWnE98I_EQ0T7z5bYKHq6rJA,78
|
|
97
|
-
jarvis/jarvis_code_analysis/checklists/c_cpp.py,sha256=9t62bMqs6qTkFSio4SKkj88qyb5ZubWrw3MxJBQ4X1A,1317
|
|
98
|
-
jarvis/jarvis_code_analysis/checklists/csharp.py,sha256=ShPXrl2_UPAnGaCHAG2wLl90COG3HK2XCSr1UK2dxN4,2420
|
|
99
|
-
jarvis/jarvis_code_analysis/checklists/data_format.py,sha256=urCb9qiJBDGev6C-PXv30NKFoQeGdbtlOl1VSPbjCSA,3005
|
|
100
|
-
jarvis/jarvis_code_analysis/checklists/devops.py,sha256=tlKD75mbFx6HHk8H8eHL_I_WTusHvWA8Zfb5P6c_1w4,3542
|
|
101
|
-
jarvis/jarvis_code_analysis/checklists/docs.py,sha256=gxhxuw-w0puen2Hgwe9MsgO_kijtCJC6THXSoz3YgiA,3341
|
|
102
|
-
jarvis/jarvis_code_analysis/checklists/go.py,sha256=NDBFA0qPrjr1HOZYy5DYU0iIcKWCaevJRLw4fbHZwwQ,1388
|
|
103
|
-
jarvis/jarvis_code_analysis/checklists/infrastructure.py,sha256=7z5MZnOUT3FpMrTQw2QcxkkTHKdMblc_Rf2NjxSI39A,3765
|
|
104
|
-
jarvis/jarvis_code_analysis/checklists/java.py,sha256=gWRVhXfsNhRFdthjIiQTkviqLwisuKCrr6gjxP0S9Z4,2085
|
|
105
|
-
jarvis/jarvis_code_analysis/checklists/javascript.py,sha256=SQkw2I09DaaLxD_WTZjuHn4leUKil68IEPB03BoSYuo,2340
|
|
106
|
-
jarvis/jarvis_code_analysis/checklists/kotlin.py,sha256=dNSHM1u3R7lxe8BU8ADtDyKJxmj3NUh9ZQuC7HHWHGY,4436
|
|
107
|
-
jarvis/jarvis_code_analysis/checklists/loader.py,sha256=bjE4On6WMLt41bfkCZsHnBpfXF61VPthFPsgNcbH90c,1903
|
|
108
|
-
jarvis/jarvis_code_analysis/checklists/php.py,sha256=qW34sF9AqLuSVuOVP5yJUHnB9V3-YRQjNPuB3lFI5UY,2481
|
|
109
|
-
jarvis/jarvis_code_analysis/checklists/python.py,sha256=gjyJ0QPY1CAwqhbDnIyLYruvFduZU5hiKyehAXMHu-I,1452
|
|
110
|
-
jarvis/jarvis_code_analysis/checklists/ruby.py,sha256=kzwd7Wl6gKrkAANq7_MvA5X5du5r1MeE-EY2Xb43n7U,4274
|
|
111
|
-
jarvis/jarvis_code_analysis/checklists/rust.py,sha256=kzt6ARBzUaC2UCviIt5ybfhJjyCkK_V9Kd4e97Dbtd4,1646
|
|
112
|
-
jarvis/jarvis_code_analysis/checklists/shell.py,sha256=aRFYhQQvTgbYd-uY5pc8UHIUAHPtZeciTg4aDcwvRZE,2619
|
|
113
|
-
jarvis/jarvis_code_analysis/checklists/sql.py,sha256=vR0T6qC7b4dURjJVAd7kSVxyvZEQXPG1Jqc2sNTGp5c,2355
|
|
114
|
-
jarvis/jarvis_code_analysis/checklists/swift.py,sha256=TPx4I6Gupvs6tSerRKmTSKEPQpOLEbH2Y7LXg1uBgxc,2566
|
|
115
|
-
jarvis/jarvis_code_analysis/checklists/web.py,sha256=25gGD7pDadZQybNFvALYxWvK0VRjGQb1NVJQElwjyk0,3943
|
|
116
|
-
jarvis/jarvis_data/config_schema.json,sha256=JTdlxgS3ZOCHHiZ2jDqC_SuFtxDPCMjlINyM2WZMgUs,17800
|
|
117
|
-
jarvis/jarvis_data/tiktoken/9b5ad71b2ce5302211f9c61530b329a4922fc6a4,sha256=Ijkht27pm96ZW3_3OFE-7xAPtR0YyTWXoRO8_-hlsqc,1681126
|
|
118
|
-
jarvis/jarvis_git_squash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
119
|
-
jarvis/jarvis_git_squash/main.py,sha256=C6qszc494HrMz1Cgn473Yq59PTYp6V7LUhbEnsDT6_s,2259
|
|
120
|
-
jarvis/jarvis_git_utils/git_commiter.py,sha256=iX4bPM3gkPgH7CLDtTCmVP2sfZdVNp4yrnUfQAuVejI,17064
|
|
121
|
-
jarvis/jarvis_mcp/__init__.py,sha256=OPMtjD-uq9xAaKCRIDyKIosaFfBe1GBPu1az-mQ0rVM,2048
|
|
122
|
-
jarvis/jarvis_mcp/sse_mcp_client.py,sha256=Gj6NgWnjqEUHhfEcH_2YQc6FUlm-R7Upgr6XZGBLBLQ,22161
|
|
123
|
-
jarvis/jarvis_mcp/stdio_mcp_client.py,sha256=FghUfjZo3z3HcA6up8gs1SC4oBXNNV5blX0OMsV59YM,10946
|
|
124
|
-
jarvis/jarvis_mcp/streamable_mcp_client.py,sha256=BUTQGuc2W72YxftisBOeJHJOhTDIwc7Far14jNU7y-0,15239
|
|
125
|
-
jarvis/jarvis_memory_organizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
126
|
-
jarvis/jarvis_memory_organizer/memory_organizer.py,sha256=drwsCF1iOhTKDaDG3RJEovA5vafaSnfNIysLmjeHUqM,25450
|
|
127
|
-
jarvis/jarvis_methodology/main.py,sha256=xGtV28yMquglAKKWC2d3s3AQOTeY1prhKsfuGGsmYZA,10350
|
|
128
|
-
jarvis/jarvis_multi_agent/__init__.py,sha256=-TKg9_XiLKU6CChsMThb5ox2BidP1K1K8iWkcUI4cZ0,17358
|
|
129
|
-
jarvis/jarvis_multi_agent/main.py,sha256=lKV7lcmPUISXY8gPDIqyOoZSxpkyhyUK2USb8h9PICg,3121
|
|
130
|
-
jarvis/jarvis_platform/__init__.py,sha256=WLQHSiE87PPket2M50_hHzjdMIgPIBx2VF8JfB_NNRk,105
|
|
131
|
-
jarvis/jarvis_platform/base.py,sha256=0vPqVxrrhamgthFCFe1PFEQVTYbEUadXD1_c18pHS_E,25633
|
|
132
|
-
jarvis/jarvis_platform/human.py,sha256=vhYarENpQUetqzqNCdi_cw26F0m9uAaJXRM1HHB0y5w,4652
|
|
133
|
-
jarvis/jarvis_platform/kimi.py,sha256=oFuyOCLglBu9pmvITh1UisJLc7N01JOHFpZPuuAmecY,15096
|
|
134
|
-
jarvis/jarvis_platform/openai.py,sha256=eW51SxjpsJhyvQ1m88u0_ggU-pnkj4lImFtvME0pEqQ,11373
|
|
135
|
-
jarvis/jarvis_platform/registry.py,sha256=KbQhQL1mUfar_F_f_42x2U8OWTW97i0Ob4OjqMART58,8674
|
|
136
|
-
jarvis/jarvis_platform/tongyi.py,sha256=5vzggKHN9EjgcnSXCNH7roQ_nswAupBztBKZoMmz75E,23180
|
|
137
|
-
jarvis/jarvis_platform/yuanbao.py,sha256=EIl5iubv5AWPI_V4La_WpCdTX0aposmNC0WUYPxnMqg,23054
|
|
138
|
-
jarvis/jarvis_platform_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
|
-
jarvis/jarvis_platform_manager/main.py,sha256=9841kIeA0q0Ns5Ya2t7X3DqnPoMHe4ehfggPEvhbrio,18677
|
|
140
|
-
jarvis/jarvis_platform_manager/service.py,sha256=3fm_rHhhGvkc4LWI9IB7W7B19fLKIjr3jFTiHIuzvmk,14623
|
|
141
|
-
jarvis/jarvis_rag/__init__.py,sha256=HRTXgnQxDuaE9x-e3r6SYqhJ5d4DSI_rrIxy2IGY6qk,320
|
|
142
|
-
jarvis/jarvis_rag/cache.py,sha256=Tqx_Oe-AhuWlMXHGHUaIuG6OEHoHBVZq7mL3kldtFFU,2723
|
|
143
|
-
jarvis/jarvis_rag/cli.py,sha256=K5NBPaR0mDSx1UMl1RDTHRTKjFbrt1wTr8SGRPKDUOw,16754
|
|
144
|
-
jarvis/jarvis_rag/embedding_manager.py,sha256=rJml-7oINFKaF5rv5nJjQbdi-4I08MDUZwKHzmipuqQ,10035
|
|
145
|
-
jarvis/jarvis_rag/llm_interface.py,sha256=Q8pXnHyoynL2J_zGGZ3HC6wy45GWcncpIQZu0u0lbRk,4417
|
|
146
|
-
jarvis/jarvis_rag/query_rewriter.py,sha256=gdYqqoYltKCpLLeSXauWLlfUdmAVMal4GRvKip0O5v8,3564
|
|
147
|
-
jarvis/jarvis_rag/rag_pipeline.py,sha256=JLuYlw6Ck_jsRFjIJ2PRUPWysSIqZf3WQb4dgGPQymE,13509
|
|
148
|
-
jarvis/jarvis_rag/reranker.py,sha256=MWUHPklYp_jOK_EiAPhZ0jUQGf82IToUWdrunRhjsRk,2498
|
|
149
|
-
jarvis/jarvis_rag/retriever.py,sha256=pvzI-sE9TV3zUwc6L8q3ycZSjc2d-RoXT7BLsbuOvEk,17924
|
|
150
|
-
jarvis/jarvis_sec/__init__.py,sha256=htTaCsAHAAjbyp5NGZKViurzcvNbh9oxvOJ7RglN_L8,12683
|
|
151
|
-
jarvis/jarvis_sec/agents.py,sha256=Bpn-hXMWYQFeGbeJmzfB0sZyZuRT2GpTLBrWmhQErlI,6916
|
|
152
|
-
jarvis/jarvis_sec/analysis.py,sha256=SvDAFzMbIg88FGK9-heYFnkp4lQotxQBC7q43NwzBJM,11761
|
|
153
|
-
jarvis/jarvis_sec/cli.py,sha256=M2wXAGZ_OJJBV0DfWQRnvSQazO7DIltlY1SXA7eoiJA,5109
|
|
154
|
-
jarvis/jarvis_sec/clustering.py,sha256=fk0l-0_OVyYYm1zqFfzCOCanMptYRR7xXzUDL5qTI7Q,58742
|
|
155
|
-
jarvis/jarvis_sec/file_manager.py,sha256=6-plNlAdu0Mo1wtS63XLXBB1GlFpFkW7h8F8GqXwUzE,15682
|
|
156
|
-
jarvis/jarvis_sec/parsers.py,sha256=5OCbArzPa6f_gJcATQL7wP-CMh-m73yc2pyBrkAnW6I,3069
|
|
157
|
-
jarvis/jarvis_sec/prompts.py,sha256=PgnGIU7DMSLNWUExSBAzT84dVCzBMfjcExfOKs3h71Y,16992
|
|
158
|
-
jarvis/jarvis_sec/report.py,sha256=pd0D2BiXKiMZCZbhI-TuZfAgL3OfcMiobdxzgLyMbn8,10569
|
|
159
|
-
jarvis/jarvis_sec/review.py,sha256=mc4hYWtwEKygX3-O_5lVTnMMYFibW_STwyzOOwZ4rZc,19029
|
|
160
|
-
jarvis/jarvis_sec/status.py,sha256=BtshMe7fkLMjyMmrG7Saezfd_xX1nmt0AL0axrmW1-k,8534
|
|
161
|
-
jarvis/jarvis_sec/types.py,sha256=_C3IHwnni3kApryP3c_UTYdvFdmlJSVXQLLefX94zl0,365
|
|
162
|
-
jarvis/jarvis_sec/utils.py,sha256=xwUFgJLDzD_U7rqUbND01pMOroHZokpwwxUyIcVk9Bg,19641
|
|
163
|
-
jarvis/jarvis_sec/verification.py,sha256=TA5T-q27FEoC66BQ0dNRg7Kr_7svmLTgvpFOF90lKLw,40586
|
|
164
|
-
jarvis/jarvis_sec/workflow.py,sha256=V9ubXFnmDOQjoQEOiRmB4cdOTkSOz4sJ4wemzUCI5c8,9971
|
|
165
|
-
jarvis/jarvis_sec/checkers/__init__.py,sha256=bkyIFSImBNFsH7RvwXwN6nETefRjtbS62gZRpQFH01I,706
|
|
166
|
-
jarvis/jarvis_sec/checkers/c_checker.py,sha256=-w_ij6BNGl6520mVL6nk9LtsLDQzwXSrskyc-CU_K9c,115465
|
|
167
|
-
jarvis/jarvis_sec/checkers/rust_checker.py,sha256=12sqoI5Phh_KpSjW-OwzRVfPx4MofTGUrmgPkpBdwes,40479
|
|
168
|
-
jarvis/jarvis_smart_shell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
169
|
-
jarvis/jarvis_smart_shell/main.py,sha256=UFXQdMS3D-iM5yBhXNyZcFzm7y12hiDQnPR5qj2iARk,13064
|
|
170
|
-
jarvis/jarvis_stats/__init__.py,sha256=jJzgP43nxzLbNGs8Do4Jfta1PNCJMf1Oq9YTPd6EnFM,342
|
|
171
|
-
jarvis/jarvis_stats/cli.py,sha256=zSDuCIabe78mDA3NLQDILbjLaju4m-0oNYSPE15ikPU,11409
|
|
172
|
-
jarvis/jarvis_stats/stats.py,sha256=HTjlYgyQUT5S0OrJ1ofnZj8vh4Ws9bTzvQ33wJhXxg8,25371
|
|
173
|
-
jarvis/jarvis_stats/storage.py,sha256=9gZC5Kpst34F0kWzmjmn_74fbZG2Fj9OPNFQ4M7FSL8,21890
|
|
174
|
-
jarvis/jarvis_stats/visualizer.py,sha256=0Gc1O1cANq73GKrVVXr0rgP4tUBLQ9ZT2Q6oiLUJwS0,8539
|
|
175
|
-
jarvis/jarvis_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
|
-
jarvis/jarvis_tools/base.py,sha256=tFZkRlbV_a-pbjM-ci9AYmXVJm__FXuzVWKbQEyz4Ao,1639
|
|
177
|
-
jarvis/jarvis_tools/clear_memory.py,sha256=NbtcBuJYUzYDqHNv3i7G24oJNmLt-Z7VqTzIHKUF7CI,7794
|
|
178
|
-
jarvis/jarvis_tools/edit_file.py,sha256=IvYGrzgSKgfGoQrewIdr7ffwGYWPghB1qjNDR6r98eo,45849
|
|
179
|
-
jarvis/jarvis_tools/execute_script.py,sha256=UDsmEhg9r5AYm9bACcljLTORLExlaFm7Rdx9C_QLgWg,8867
|
|
180
|
-
jarvis/jarvis_tools/file_analyzer.py,sha256=a8izTqGLwW43dIOICyLbGzzedxecOfOScs1uHqb3seI,3999
|
|
181
|
-
jarvis/jarvis_tools/generate_new_tool.py,sha256=RfEwAQUICk31903m0fIr9bR9BLMm0Qmiic9SvGvNCzs,7987
|
|
182
|
-
jarvis/jarvis_tools/lsp_client.py,sha256=GbH2LWkCVaAHTaFg9O_JUodJ1SKUP26BataJ3nsDXTc,58782
|
|
183
|
-
jarvis/jarvis_tools/methodology.py,sha256=MehFkKzb0Ub3yE4jkV70R1gmhnMaeRqgApJLUBm7rBc,5119
|
|
184
|
-
jarvis/jarvis_tools/read_code.py,sha256=oi1_4AtnCA683DCOYVpRE6-rtzGAvIXKzClevB5mf58,77438
|
|
185
|
-
jarvis/jarvis_tools/read_symbols.py,sha256=7ERIICy2gQT-9Op5Q4J2EGLYlsJJE2Kyda8QyyVQ3dc,5538
|
|
186
|
-
jarvis/jarvis_tools/read_webpage.py,sha256=U2Yp71NyjSG9URO09lEzCB7swGumq4-ouqPy5QhavHI,5350
|
|
187
|
-
jarvis/jarvis_tools/registry.py,sha256=EXrdD7a07T1i-3sQkD5l1u_np5-gyiEp_I5_FTs9LiY,45349
|
|
188
|
-
jarvis/jarvis_tools/retrieve_memory.py,sha256=N5_yt6VhZ--gtGJpor3_B8RXdriLiN3n9DQ7uaTNOLQ,8751
|
|
189
|
-
jarvis/jarvis_tools/rewrite_file.py,sha256=zcNYPxlX6FzXIV6fl2NOXMX8JF_rzonOJQ-xEfX2jsg,3946
|
|
190
|
-
jarvis/jarvis_tools/save_memory.py,sha256=uhR9w_rC7G3i9_44HZ3dv2TfBQ_YRKZLd9TLMoXil_w,6488
|
|
191
|
-
jarvis/jarvis_tools/search_web.py,sha256=c-YWRSlDn7ObRSUlABs1Uacr81fBZfXn83m_CgVNxTA,6170
|
|
192
|
-
jarvis/jarvis_tools/sub_agent.py,sha256=ki8eeajWz7j7NAu0wlydLH3IuM5ZbdvJ0qjMwGhMTUg,8914
|
|
193
|
-
jarvis/jarvis_tools/sub_code_agent.py,sha256=Ib0nB-w8VE5MhTDysQ4loLCJkf962aQZkUeSnoFhyiE,9599
|
|
194
|
-
jarvis/jarvis_tools/virtual_tty.py,sha256=gNQuM6s0sjqNuYZubDixOG9tv5NXuKPEZroi4ywLG0A,26023
|
|
195
|
-
jarvis/jarvis_tools/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
196
|
-
jarvis/jarvis_tools/cli/main.py,sha256=IuMciri72nj7v_ghs8HVt60ncI4lxju2iKedERH5VQM,8784
|
|
197
|
-
jarvis/jarvis_utils/__init__.py,sha256=67h0ldisGlh3oK4DAeNEL2Bl_VsI3tSmfclasyVlueM,850
|
|
198
|
-
jarvis/jarvis_utils/builtin_replace_map.py,sha256=z8iAqsbZUiGFaozxG1xSu128op8udqHOeEw-GxNt4bU,1708
|
|
199
|
-
jarvis/jarvis_utils/clipboard.py,sha256=unlmtjPNVCAP9gjLQu6D1kTVRvLXNRP2_wp2a-AyLUU,2697
|
|
200
|
-
jarvis/jarvis_utils/config.py,sha256=QnEouV4VQ0uicO6Q-P6GVxhlKaRTAgx_QmYo9lEeGkk,26342
|
|
201
|
-
jarvis/jarvis_utils/embedding.py,sha256=n6MSA8IjaO2nSCznhxEWfdlvG8HTE5E6xMSJoDzHblA,2816
|
|
202
|
-
jarvis/jarvis_utils/file_processors.py,sha256=XiM248SHS7lLgQDCbORVFWqinbVDUawYxWDOsLXDxP8,3043
|
|
203
|
-
jarvis/jarvis_utils/fzf.py,sha256=Jxs8ebFf94EQtWfbKq9HliRZXo9Dq0F9dwUGN4XfMCs,1690
|
|
204
|
-
jarvis/jarvis_utils/git_utils.py,sha256=3xZF6hvPdOzETcmCW8SPXEdzooy0TIQPloOl4uzEhI8,30631
|
|
205
|
-
jarvis/jarvis_utils/globals.py,sha256=a7j4X1IBcJ8XJmxVhSOsOfXnniVf4p6JIRzRQvZ8fFk,8907
|
|
206
|
-
jarvis/jarvis_utils/http.py,sha256=KLTBqti8m9B2TPKOLAsNuxSd8mFPN0whQhuXYnRDNW0,4424
|
|
207
|
-
jarvis/jarvis_utils/input.py,sha256=0LrE0D66IlRNPdlz3OsXAqPjv6D91yj9AQ2odpv9erg,39244
|
|
208
|
-
jarvis/jarvis_utils/jsonnet_compat.py,sha256=qne1IFUyg9z6Rr_gUJsB6q6EHm4FRSHPVv5bGlrfBs0,19209
|
|
209
|
-
jarvis/jarvis_utils/methodology.py,sha256=YuCkYvriaVviT0YQ3uNyQ4gvpfGG3jldpJXcKw9YJr0,13034
|
|
210
|
-
jarvis/jarvis_utils/output.py,sha256=y2fVcao_2ZowFl0IxUrJZCi8T6ZM0z-iPzpk8T8eLxc,13623
|
|
211
|
-
jarvis/jarvis_utils/tag.py,sha256=f211opbbbTcSyzCDwuIK_oCnKhXPNK-RknYyGzY1yD0,431
|
|
212
|
-
jarvis/jarvis_utils/utils.py,sha256=Tkvg4z3pxwaWf6dCPQ1bzFE6EzDJ9BG4OBEFY0GT5B0,84131
|
|
213
|
-
jarvis_ai_assistant-0.7.16.dist-info/licenses/LICENSE,sha256=AGgVgQmTqFvaztRtCAXsAMryUymB18gZif7_l2e1XOg,1063
|
|
214
|
-
jarvis_ai_assistant-0.7.16.dist-info/METADATA,sha256=D-ULJVJ0hQt-mWTTkMjf3t17RsyXUR8viloILT2FYKs,26821
|
|
215
|
-
jarvis_ai_assistant-0.7.16.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
216
|
-
jarvis_ai_assistant-0.7.16.dist-info/entry_points.txt,sha256=Uxk2_VeucH_m7EwH2mw0SlEYHIUmbzXkjTb15z_lcko,1552
|
|
217
|
-
jarvis_ai_assistant-0.7.16.dist-info/top_level.txt,sha256=1BOxyWfzOP_ZXj8rVTDnNCJ92bBGB0rwq8N1PCpoMIs,7
|
|
218
|
-
jarvis_ai_assistant-0.7.16.dist-info/RECORD,,
|
|
File without changes
|
{jarvis_ai_assistant-0.7.16.dist-info → jarvis_ai_assistant-1.0.2.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{jarvis_ai_assistant-0.7.16.dist-info → jarvis_ai_assistant-1.0.2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|