luzzy-tool 2.4.0__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.
- luzzy_tool-2.4.0.dist-info/METADATA +345 -0
- luzzy_tool-2.4.0.dist-info/RECORD +37 -0
- luzzy_tool-2.4.0.dist-info/WHEEL +5 -0
- luzzy_tool-2.4.0.dist-info/entry_points.txt +3 -0
- luzzy_tool-2.4.0.dist-info/licenses/LICENSE +21 -0
- luzzy_tool-2.4.0.dist-info/top_level.txt +2 -0
- scripts/test_all_tools_boundaries.py +417 -0
- scripts/test_file_watcher.py +40 -0
- scripts/test_mcp_capabilities.py +46 -0
- scripts/test_mcp_startup_time.py +41 -0
- scripts/test_read_upgrade.py +79 -0
- src/__init__.py +0 -0
- src/config.py +96 -0
- src/database/__init__.py +22 -0
- src/database/chroma_manager.py +462 -0
- src/modules/__init__.py +27 -0
- src/modules/archive_manager.py +361 -0
- src/modules/code_searcher.py +306 -0
- src/modules/database_manager.py +356 -0
- src/modules/document_editor.py +504 -0
- src/modules/enhanced_file_manager.py +542 -0
- src/modules/enhanced_shell_executor.py +526 -0
- src/modules/file_manager.py +684 -0
- src/modules/file_watcher.py +282 -0
- src/modules/git_manager.py +363 -0
- src/modules/http_client.py +371 -0
- src/modules/local_retrieval_engine.py +382 -0
- src/modules/markdown_renderer.py +420 -0
- src/modules/network_diagnostics.py +397 -0
- src/modules/session_manager.py +486 -0
- src/modules/shell_executor.py +548 -0
- src/modules/structured_editor.py +381 -0
- src/modules/unified_file_writer.py +501 -0
- src/server.py +2545 -0
- src/utils/__init__.py +47 -0
- src/utils/path_security.py +421 -0
- src/utils/text_chunker.py +420 -0
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: luzzy-tool
|
|
3
|
+
Version: 2.4.0
|
|
4
|
+
Summary: 基于MCP协议的本地系统工具集,为AI助手提供文件操作、Shell执行、代码搜索、文件监听、压缩解压、HTTP请求、Git操作、数据库操作、网络诊断、Markdown渲染和结构化数据处理
|
|
5
|
+
Author-email: LuzzyMeow <2170206661@qq.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/LuzzyMeow/LuzzyTool
|
|
8
|
+
Project-URL: Repository, https://github.com/LuzzyMeow/LuzzyTool
|
|
9
|
+
Project-URL: Issues, https://github.com/LuzzyMeow/LuzzyTool/issues
|
|
10
|
+
Project-URL: MCP Server, https://lobehub.com/mcp/LuzzyMeow-luzzy-tool
|
|
11
|
+
Keywords: mcp,mcp-server,tools,file-management,shell,git,database,network,markdown
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
19
|
+
Classifier: Topic :: System :: Systems Administration
|
|
20
|
+
Requires-Python: >=3.10
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
License-File: LICENSE
|
|
23
|
+
Requires-Dist: mcp>=1.0.0
|
|
24
|
+
Requires-Dist: chromadb>=0.4.0
|
|
25
|
+
Requires-Dist: pydantic>=2.0.0
|
|
26
|
+
Requires-Dist: pydantic-settings>=2.0.0
|
|
27
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
28
|
+
Requires-Dist: pyyaml>=6.0
|
|
29
|
+
Requires-Dist: structlog>=23.0.0
|
|
30
|
+
Requires-Dist: tqdm>=4.65.0
|
|
31
|
+
Requires-Dist: click>=8.1.0
|
|
32
|
+
Requires-Dist: typing-extensions>=4.5.0
|
|
33
|
+
Requires-Dist: watchdog>=3.0.0
|
|
34
|
+
Requires-Dist: markdown>=3.4.0
|
|
35
|
+
Requires-Dist: httpx>=0.25.0
|
|
36
|
+
Provides-Extra: dev
|
|
37
|
+
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
38
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
39
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
40
|
+
Requires-Dist: black>=23.0.0; extra == "dev"
|
|
41
|
+
Requires-Dist: isort>=5.12.0; extra == "dev"
|
|
42
|
+
Requires-Dist: mypy>=1.0.0; extra == "dev"
|
|
43
|
+
Provides-Extra: export
|
|
44
|
+
Requires-Dist: python-docx>=0.8.11; extra == "export"
|
|
45
|
+
Requires-Dist: ebooklib>=0.18; extra == "export"
|
|
46
|
+
Requires-Dist: markdown>=3.4.0; extra == "export"
|
|
47
|
+
Dynamic: license-file
|
|
48
|
+
|
|
49
|
+
# LuzzyTool
|
|
50
|
+
|
|
51
|
+
<div align="center">
|
|
52
|
+
|
|
53
|
+
[](https://lobehub.com/mcp/LuzzyMeow-luzzy-tool)
|
|
54
|
+
[](https://opensource.org/licenses/MIT)
|
|
55
|
+
[](https://www.python.org/downloads/)
|
|
56
|
+
[](https://modelcontextprotocol.io)
|
|
57
|
+
[](#工具概览)
|
|
58
|
+
[](#技能)
|
|
59
|
+
|
|
60
|
+
</div>
|
|
61
|
+
|
|
62
|
+
> [English version](README.en.md) also available · 也提供[英文版](README.en.md)
|
|
63
|
+
|
|
64
|
+
基于 [MCP (Model Context Protocol)](https://modelcontextprotocol.io) 的本地系统工具集,为 AI 助手提供 **70+ 工具**,涵盖文件操作、Shell 执行、代码搜索、文件监听、压缩解压、HTTP 请求、Git 操作、SQLite 数据库、网络诊断和 Markdown 渲染。
|
|
65
|
+
|
|
66
|
+
## 环境要求
|
|
67
|
+
|
|
68
|
+
- Python 3.10+
|
|
69
|
+
- Windows、macOS 或 Linux
|
|
70
|
+
|
|
71
|
+
## 快速开始
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
git clone https://github.com/LuzzyMeow/LuzzyTool.git
|
|
75
|
+
cd LuzzyTool
|
|
76
|
+
pip install -e .
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## 接入 MCP 客户端
|
|
80
|
+
|
|
81
|
+
将以下配置添加到你的 MCP 客户端。**必须使用绝对路径**,将示例路径替换为你的实际项目路径。
|
|
82
|
+
|
|
83
|
+
```json
|
|
84
|
+
{
|
|
85
|
+
"mcpServers": {
|
|
86
|
+
"luzzy-tool": {
|
|
87
|
+
"command": "/home/user/LuzzyTool/venv/bin/python",
|
|
88
|
+
"args": ["-m", "src.server"],
|
|
89
|
+
"env": {
|
|
90
|
+
"LUZZY_TOOL_HOME": "/home/user/LuzzyTool"
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
Windows 用户(例如克隆到 `D:\\Projects\\`):
|
|
98
|
+
|
|
99
|
+
```json
|
|
100
|
+
{
|
|
101
|
+
"mcpServers": {
|
|
102
|
+
"luzzy-tool": {
|
|
103
|
+
"command": "D:\\Projects\\LuzzyTool\\venv\\Scripts\\python.exe",
|
|
104
|
+
"args": ["-m", "src.server"],
|
|
105
|
+
"env": {
|
|
106
|
+
"LUZZY_TOOL_HOME": "D:\\Projects\\LuzzyTool"
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
> 将路径替换为你的实际项目位置。`command` 必须指向 venv 中的 `python`(Windows 为 `python.exe`),
|
|
114
|
+
> `LUZZY_TOOL_HOME` 指向项目根目录。
|
|
115
|
+
|
|
116
|
+
### Claude Desktop
|
|
117
|
+
|
|
118
|
+
参考 [MCP 安装指南](https://modelcontextprotocol.io/quickstart/user),使用上述配置。
|
|
119
|
+
|
|
120
|
+
### VS Code / Cursor / Windsurf
|
|
121
|
+
|
|
122
|
+
将上述配置添加到 MCP 设置中。
|
|
123
|
+
|
|
124
|
+
## 配置
|
|
125
|
+
|
|
126
|
+
在项目根目录创建 `.env` 文件(参考 `.env.example`):
|
|
127
|
+
|
|
128
|
+
```ini
|
|
129
|
+
LOG_LEVEL=INFO # DEBUG | INFO | WARNING | ERROR
|
|
130
|
+
CHUNK_SIZE=500 # 检索文本分块大小
|
|
131
|
+
CHUNK_OVERLAP=100 # 分块重叠量
|
|
132
|
+
DEFAULT_TOP_K=5 # 默认返回结果数
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
也可通过 MCP 客户端 `env` 字段注入环境变量。
|
|
136
|
+
|
|
137
|
+
## 工具概览
|
|
138
|
+
|
|
139
|
+
LuzzyTool 提供 **70 个 MCP 工具**,涵盖 14 个类别。工具名使用英文标识以保证跨客户端兼容性。
|
|
140
|
+
|
|
141
|
+
| 类别 | 工具 |
|
|
142
|
+
|------|------|
|
|
143
|
+
| **文件操作** | `list_local_directory`, `read_local_file`, `file_write`, `create_directory`, `move_file`, `copy_file`, `delete_file`, `search_files`, `get_file_info`, `rename_file`, `delete_files`, `copy_files`, `backup_file`, `restore_file`, `list_backups` |
|
|
144
|
+
| **Shell 执行** | `execute_command`, `execute_batch`, `execute_command_structured`, `get_system_info`, `set_env`, `get_env`, `get_command_history`, `clear_command_history`, `spawn_process`, `list_processes`, `kill_process` |
|
|
145
|
+
| **文档编辑** | `get_paragraphs`, `edit_paragraph`, `edit_by_heading` |
|
|
146
|
+
| **结构化编辑** | `edit_json`, `edit_yaml`, `validate_json`, `validate_yaml` |
|
|
147
|
+
| **检索** | `retrieve_from_local_files`, `clear_retrieval_cache` |
|
|
148
|
+
| **代码搜索** | `code_search` |
|
|
149
|
+
| **文件监听** | `watch_start`, `watch_stop`, `watch_list`, `watch_events` |
|
|
150
|
+
| **压缩解压** | `archive_create`, `archive_extract`, `archive_list`, `archive_test` |
|
|
151
|
+
| **HTTP** | `http_request` |
|
|
152
|
+
| **Git** | `git_status`, `git_diff`, `git_log`, `git_add`, `git_commit`, `git_push`, `git_pull`, `git_branch`, `git_stash`, `git_remote` |
|
|
153
|
+
| **数据库** | `db_list_tables`, `db_describe_table`, `db_execute_query`, `db_execute_update`, `db_get_table_data` |
|
|
154
|
+
| **网络诊断** | `net_ping`, `net_dns_lookup`, `net_port_scan`, `net_check_connectivity`, `net_reverse_dns` |
|
|
155
|
+
| **Markdown** | `md_render_to_html`, `md_generate_toc`, `md_extract_links`, `md_check_links` |
|
|
156
|
+
| **元工具** | `list_tools` |
|
|
157
|
+
|
|
158
|
+
<details>
|
|
159
|
+
<summary>📁 文件操作(15 个工具)</summary>
|
|
160
|
+
|
|
161
|
+
| 工具 | 说明 |
|
|
162
|
+
|------|------|
|
|
163
|
+
| `list_local_directory` | 列出目录内容,支持递归 |
|
|
164
|
+
| `read_local_file` | 读取文本文件(自动检测编码,最大 100MB) |
|
|
165
|
+
| `file_write` | 写入/覆盖文件 |
|
|
166
|
+
| `create_directory` | 创建目录(含父目录) |
|
|
167
|
+
| `move_file` | 移动文件或目录 |
|
|
168
|
+
| `copy_file` | 复制文件 |
|
|
169
|
+
| `delete_file` | 删除文件 |
|
|
170
|
+
| `search_files` | 按文件名模式或内容正则搜索 |
|
|
171
|
+
| `get_file_info` | 获取文件大小、修改时间、权限、编码 |
|
|
172
|
+
| `rename_file` | 重命名文件或目录 |
|
|
173
|
+
| `delete_files` | 批量删除(数组接口) |
|
|
174
|
+
| `copy_files` | 批量复制,可保持目录结构 |
|
|
175
|
+
| `backup_file` | 创建文件备份 |
|
|
176
|
+
| `restore_file` | 从备份恢复文件 |
|
|
177
|
+
| `list_backups` | 列出所有备份 |
|
|
178
|
+
|
|
179
|
+
</details>
|
|
180
|
+
|
|
181
|
+
<details>
|
|
182
|
+
<summary>💻 Shell 执行(11 个工具)</summary>
|
|
183
|
+
|
|
184
|
+
| 工具 | 说明 |
|
|
185
|
+
|------|------|
|
|
186
|
+
| `execute_command` | 执行单条命令,支持超时、工作目录、系统 Shell 模式 |
|
|
187
|
+
| `execute_batch` | 批量执行命令,可配置遇错停止 |
|
|
188
|
+
| `execute_command_structured` | 执行命令并自动解析输出 |
|
|
189
|
+
| `get_system_info` | 获取系统信息(OS、CPU、内存、磁盘) |
|
|
190
|
+
| `set_env` | 设置会话级环境变量 |
|
|
191
|
+
| `get_env` | 获取环境变量 |
|
|
192
|
+
| `get_command_history` | 查询命令执行历史 |
|
|
193
|
+
| `clear_command_history` | 清空命令历史 |
|
|
194
|
+
| `spawn_process` | 启动后台进程 |
|
|
195
|
+
| `list_processes` | 列出所有后台进程 |
|
|
196
|
+
| `kill_process` | 终止后台进程 |
|
|
197
|
+
|
|
198
|
+
</details>
|
|
199
|
+
|
|
200
|
+
<details>
|
|
201
|
+
<summary>🔀 Git 操作(10 个工具)</summary>
|
|
202
|
+
|
|
203
|
+
| 工具 | 说明 |
|
|
204
|
+
|------|------|
|
|
205
|
+
| `git_status` | 仓库状态(分支、暂存、未跟踪) |
|
|
206
|
+
| `git_diff` | 查看差异(暂存区/工作区/文件级统计) |
|
|
207
|
+
| `git_log` | 提交日志(结构化输出) |
|
|
208
|
+
| `git_add` | 暂存文件 |
|
|
209
|
+
| `git_commit` | 提交更改 |
|
|
210
|
+
| `git_push` | 推送远程(受保护分支防护) |
|
|
211
|
+
| `git_pull` | 拉取更新(支持 rebase) |
|
|
212
|
+
| `git_branch` | 分支管理(list/create/delete/rename) |
|
|
213
|
+
| `git_stash` | Stash 管理(list/save/pop/apply/drop/clear) |
|
|
214
|
+
| `git_remote` | 远程仓库管理(list/add/remove/get-url) |
|
|
215
|
+
|
|
216
|
+
</details>
|
|
217
|
+
|
|
218
|
+
<details>
|
|
219
|
+
<summary>🗄️ 数据库 — SQLite(5 个工具)</summary>
|
|
220
|
+
|
|
221
|
+
| 工具 | 说明 |
|
|
222
|
+
|------|------|
|
|
223
|
+
| `db_list_tables` | 列出所有表及行数 |
|
|
224
|
+
| `db_describe_table` | 查看表结构(列、索引、主键、DDL) |
|
|
225
|
+
| `db_execute_query` | 只读查询(SELECT/PRAGMA/EXPLAIN),参数化 |
|
|
226
|
+
| `db_execute_update` | 写入操作(INSERT/UPDATE/DELETE/CREATE/ALTER/DROP) |
|
|
227
|
+
| `db_get_table_data` | 分页获取表数据,支持 WHERE/ORDER BY |
|
|
228
|
+
|
|
229
|
+
</details>
|
|
230
|
+
|
|
231
|
+
<details>
|
|
232
|
+
<summary>🌐 网络诊断(5 个工具)</summary>
|
|
233
|
+
|
|
234
|
+
| 工具 | 说明 |
|
|
235
|
+
|------|------|
|
|
236
|
+
| `net_ping` | Ping 检测(跨平台,延迟/丢包统计) |
|
|
237
|
+
| `net_dns_lookup` | DNS 查询(A/AAAA/CNAME/MX/NS/TXT/SOA/SRV) |
|
|
238
|
+
| `net_port_scan` | TCP 端口扫描(最多 100 端口,服务名识别) |
|
|
239
|
+
| `net_check_connectivity` | TCP 连通性检测(可达性 + 延迟) |
|
|
240
|
+
| `net_reverse_dns` | 反向 DNS 查询(IP → 域名) |
|
|
241
|
+
|
|
242
|
+
</details>
|
|
243
|
+
|
|
244
|
+
<details>
|
|
245
|
+
<summary>📝 Markdown(4 个工具)</summary>
|
|
246
|
+
|
|
247
|
+
| 工具 | 说明 |
|
|
248
|
+
|------|------|
|
|
249
|
+
| `md_render_to_html` | Markdown → HTML(支持表格、代码块、脚注等扩展) |
|
|
250
|
+
| `md_generate_toc` | 生成目录(标题列表 + HTML) |
|
|
251
|
+
| `md_extract_links` | 提取链接和图片 |
|
|
252
|
+
| `md_check_links` | 检查链接有效性(本地 + 可选 HTTP) |
|
|
253
|
+
|
|
254
|
+
</details>
|
|
255
|
+
|
|
256
|
+
<details>
|
|
257
|
+
<summary>📦 其他类别</summary>
|
|
258
|
+
|
|
259
|
+
**压缩解压(4):** `archive_create`, `archive_extract`, `archive_list`, `archive_test`
|
|
260
|
+
|
|
261
|
+
**文件监听(4):** `watch_start`, `watch_stop`, `watch_list`, `watch_events`
|
|
262
|
+
|
|
263
|
+
**文档编辑(3):** `get_paragraphs`, `edit_paragraph`, `edit_by_heading`
|
|
264
|
+
|
|
265
|
+
**结构化编辑(4):** `edit_json`, `edit_yaml`, `validate_json`, `validate_yaml`
|
|
266
|
+
|
|
267
|
+
**检索(2):** `retrieve_from_local_files`, `clear_retrieval_cache`
|
|
268
|
+
|
|
269
|
+
**代码搜索(1):** `code_search`
|
|
270
|
+
|
|
271
|
+
**HTTP(1):** `http_request`
|
|
272
|
+
|
|
273
|
+
</details>
|
|
274
|
+
|
|
275
|
+
## 提示词 (Prompts)
|
|
276
|
+
|
|
277
|
+
4 个内置提示词模板:
|
|
278
|
+
|
|
279
|
+
| 提示词 | 参数 | 说明 |
|
|
280
|
+
|--------|------|------|
|
|
281
|
+
| `代码审查` | `file_path`(必填), `language`(可选) | 代码审查——bug、安全、风格、性能 |
|
|
282
|
+
| `项目概览` | `project_dir`(必填) | 项目结构概览和技术栈分析 |
|
|
283
|
+
| `Git 提交信息` | `repo_path`(必填) | 根据暂存区变更生成 Conventional Commits 提交信息 |
|
|
284
|
+
| `文件分析` | `file_path`(必填), `focus`(可选) | 深度分析文件内容,给出建议 |
|
|
285
|
+
|
|
286
|
+
## 资源 (Resources)
|
|
287
|
+
|
|
288
|
+
3 个资源端点:
|
|
289
|
+
|
|
290
|
+
| URI | 名称 | 类型 |
|
|
291
|
+
|-----|------|------|
|
|
292
|
+
| `project://readme` | 项目 README | text/markdown |
|
|
293
|
+
| `project://tools` | 工具列表 (JSON) | application/json |
|
|
294
|
+
| `project://config` | 项目配置 (pyproject.toml) | text/plain |
|
|
295
|
+
|
|
296
|
+
## 技能 (Skills)
|
|
297
|
+
|
|
298
|
+
LuzzyTool 遵循 [Anthropic Skills 规范](https://docs.anthropic.com/en/docs/claude/skills)。
|
|
299
|
+
技能文件位于 [`.claude/skills/`](.claude/skills/):
|
|
300
|
+
|
|
301
|
+
| 技能 | 文件 | 说明 |
|
|
302
|
+
|------|------|------|
|
|
303
|
+
| `luzzy-tool-usage` | [`.claude/skills/luzzy-tool-usage.md`](.claude/skills/luzzy-tool-usage.md) | LuzzyTool 工具选择与使用指南 |
|
|
304
|
+
|
|
305
|
+
## 安全特性
|
|
306
|
+
|
|
307
|
+
- **路径穿越防护**:拒绝 `../` 越权访问
|
|
308
|
+
- **文件读取限制**:最大 100MB;超过 1MB 自动限制 500 行/次
|
|
309
|
+
- **参数校验**:单参数 10MB,总计 50MB
|
|
310
|
+
- **压缩解压防护**:Zip-slip 路径穿越检测
|
|
311
|
+
- **Git 保护分支**:master/main force push 拦截
|
|
312
|
+
- **HTTP 安全**:默认禁止内网/回环地址;响应体限制 10MB
|
|
313
|
+
- **数据库隔离**:读写工具分离;查询使用 `?mode=ro`;参数化 SQL
|
|
314
|
+
- **Shell 安全**:子进程使用 `stdin=DEVNULL` 防挂起
|
|
315
|
+
|
|
316
|
+
详见 [SECURITY.md](SECURITY.md)。
|
|
317
|
+
|
|
318
|
+
## 项目结构
|
|
319
|
+
|
|
320
|
+
```
|
|
321
|
+
LuzzyTool/
|
|
322
|
+
├── src/
|
|
323
|
+
│ ├── server.py # MCP 入口,工具注册与调度
|
|
324
|
+
│ ├── config.py # 全局配置
|
|
325
|
+
│ ├── modules/ # ~15 个工具模块
|
|
326
|
+
│ ├── utils/path_security.py # 路径安全校验
|
|
327
|
+
│ └── database/chroma_manager.py # Chroma 向量数据库
|
|
328
|
+
├── .claude/skills/ # Claude 技能定义
|
|
329
|
+
├── skills/ # Anthropic Skills 格式
|
|
330
|
+
├── scripts/ # 测试与调试脚本
|
|
331
|
+
├── tests/
|
|
332
|
+
├── pyproject.toml
|
|
333
|
+
├── server.json # MCP Registry 元数据
|
|
334
|
+
├── CLAUDE.md
|
|
335
|
+
├── README.md # 中文说明(本文件)
|
|
336
|
+
├── README.en.md # English version
|
|
337
|
+
├── SECURITY.md
|
|
338
|
+
├── CONTRIBUTING.md
|
|
339
|
+
├── CHANGELOG.md
|
|
340
|
+
└── LICENSE
|
|
341
|
+
```
|
|
342
|
+
|
|
343
|
+
## 许可证
|
|
344
|
+
|
|
345
|
+
MIT — 详见 [LICENSE](LICENSE)。
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
luzzy_tool-2.4.0.dist-info/licenses/LICENSE,sha256=tPemUCTFl1v30pfYkJJncW6zmiUkctZ28MbCg6Xhz_4,1076
|
|
2
|
+
scripts/test_all_tools_boundaries.py,sha256=aLiNUeYIGg7u202wRRyEpcSPnKLNvcM0fJM2rdn1fNo,23557
|
|
3
|
+
scripts/test_file_watcher.py,sha256=SE0xj8Auw4FvTKpVOjSsz0IzgWDTtQTtW-yFyp1pmfY,1124
|
|
4
|
+
scripts/test_mcp_capabilities.py,sha256=53XmvdKDN8Xnr-zRd2lkpbMMvmLENVoYHaSA95D_u2M,1592
|
|
5
|
+
scripts/test_mcp_startup_time.py,sha256=fpMq33A93A4-8MsvSkyp5R8HoRpn2vCGm2cYH_htdC0,1427
|
|
6
|
+
scripts/test_read_upgrade.py,sha256=bHIL_d-nxTjYdGA7FmbcbUUaMemMmmlq_IRgkV0oN9k,3631
|
|
7
|
+
src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
src/config.py,sha256=WNda5wlrQh2aabaiQcpf2n-aC0WJHV7Keh4QXX4PNBg,2770
|
|
9
|
+
src/server.py,sha256=5977u7hcZgMy5o1HRfM6D_95MbF4hXyDHKv71RSPjkE,117250
|
|
10
|
+
src/database/__init__.py,sha256=aXQJNVVgR0JJkYeniblXGnDoCNQ0scqQDW5ddT7xnjA,469
|
|
11
|
+
src/database/chroma_manager.py,sha256=tLjsx8OMsFk3mVGf4mZOXSChEyTvvt1gmsNMyh0b_hw,13808
|
|
12
|
+
src/modules/__init__.py,sha256=xrX-LosDAnbKyOpRIhTe-dGMrs7xawpRT7fDs7UhQLs,557
|
|
13
|
+
src/modules/archive_manager.py,sha256=vYSE2k68-aUnViFhIIB0UvdMaMsByHdu1KquXWubnMc,16566
|
|
14
|
+
src/modules/code_searcher.py,sha256=psr3nbcUkkKsPZ9_smwWrmdQuOaR_QRtI5IWm0JbhMc,12337
|
|
15
|
+
src/modules/database_manager.py,sha256=pI0uyMe2XajUTeaXy08xyvUopqtO3wuiVPXLPN5lLyg,14963
|
|
16
|
+
src/modules/document_editor.py,sha256=B2fgKgyATCI5WgcZyx3hJAzjWI8IVvQjjuKYba07lZI,18460
|
|
17
|
+
src/modules/enhanced_file_manager.py,sha256=2FSvjE6ma8WdUQekU6du89fcsQHahnBjo9uDKKpGZt8,18952
|
|
18
|
+
src/modules/enhanced_shell_executor.py,sha256=-xA6-BC9Byfk7wfXHbWGZhC7mQKFaXLnZ6sG-JrFLDI,18517
|
|
19
|
+
src/modules/file_manager.py,sha256=m4Wd0y4T8MVFX6CkFHpth-kK5suragMH-u21xG59G6o,23091
|
|
20
|
+
src/modules/file_watcher.py,sha256=NnY9V_-ypb8rWmMLSz6g3a-I7q2FMKTBwxFvQsUXzW0,10809
|
|
21
|
+
src/modules/git_manager.py,sha256=eYYWCfmU7nAkhHyYttsogqPfg8ei_jkz4o5Qp43l_yo,17744
|
|
22
|
+
src/modules/http_client.py,sha256=1geSTFLMV8eJ6SezvTGizT7Sl7W2b_bX-jqIu4aV5Xs,13899
|
|
23
|
+
src/modules/local_retrieval_engine.py,sha256=4nxIKrU9ORPBYoWYkEaxp9n90tYYPTMCCqBpqics7Pk,12983
|
|
24
|
+
src/modules/markdown_renderer.py,sha256=8miUaw7_7fdNTClWlUeyBTqYcNx37PAeJGohgYe5THs,15917
|
|
25
|
+
src/modules/network_diagnostics.py,sha256=4zCB5GDXyveeNAyMeMZ9-BccVzhuwERIqISF9S0x0U8,15389
|
|
26
|
+
src/modules/session_manager.py,sha256=lHhV3XI1mYtqldYIqqGa1lKWrJiFEzVV2vYQViq03FQ,16196
|
|
27
|
+
src/modules/shell_executor.py,sha256=_CDmF4jJqjkhID3lnUhGTI_TPWfKDZfw5uXPQHQeIiY,18968
|
|
28
|
+
src/modules/structured_editor.py,sha256=nBj823KkWAzsWCaK9QndGVFMUkH7uKEFeQfFLG-VA3M,13732
|
|
29
|
+
src/modules/unified_file_writer.py,sha256=WM8-Mp0SeFFlFk96KffBIDTfy2RjRJd-_Yw9YsUU6iw,18393
|
|
30
|
+
src/utils/__init__.py,sha256=qPxbB2ZPguNjhxI1k9aU7zve5Ih71XNwj4PkyBczgtI,1120
|
|
31
|
+
src/utils/path_security.py,sha256=Obl_Rf358ApSpmPZOibqyhy_kIUY4AObq2tSVRqAOPU,11254
|
|
32
|
+
src/utils/text_chunker.py,sha256=4xKFJUowMlofvfLE9wi9P85JQBcJwIcSLLCBURqO8Fk,12428
|
|
33
|
+
luzzy_tool-2.4.0.dist-info/METADATA,sha256=nBkfaaPjELp6lvooMUylYafi1Xu7NpTuqSS2rAdyOpA,13578
|
|
34
|
+
luzzy_tool-2.4.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
35
|
+
luzzy_tool-2.4.0.dist-info/entry_points.txt,sha256=L24UW5_4kRTVbVX3hgZUl-2kW1WN7HWNrltpzD2wRlc,83
|
|
36
|
+
luzzy_tool-2.4.0.dist-info/top_level.txt,sha256=2u1B708VEAisYx1t_BY-Ya_-RVnGzeibiEH429s02AM,12
|
|
37
|
+
luzzy_tool-2.4.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025-2026 LuzzyTool Team
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|