fr-cli 2.1.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.
Files changed (64) hide show
  1. fr_cli/README.md +148 -0
  2. fr_cli/WEAPON.MD +186 -0
  3. fr_cli/__init__.py +4 -0
  4. fr_cli/addon/plugin.py +69 -0
  5. fr_cli/agent/__init__.py +9 -0
  6. fr_cli/agent/builtins/__init__.py +4 -0
  7. fr_cli/agent/builtins/_utils.py +48 -0
  8. fr_cli/agent/builtins/db.py +269 -0
  9. fr_cli/agent/builtins/local.py +105 -0
  10. fr_cli/agent/builtins/rag.py +652 -0
  11. fr_cli/agent/builtins/rag_watcher_daemon.py +156 -0
  12. fr_cli/agent/builtins/remote.py +214 -0
  13. fr_cli/agent/builtins/spider.py +247 -0
  14. fr_cli/agent/client.py +164 -0
  15. fr_cli/agent/executor.py +86 -0
  16. fr_cli/agent/generator.py +104 -0
  17. fr_cli/agent/manager.py +193 -0
  18. fr_cli/agent/master.py +604 -0
  19. fr_cli/agent/master_prompt.py +118 -0
  20. fr_cli/agent/remote.py +70 -0
  21. fr_cli/agent/server.py +279 -0
  22. fr_cli/agent/workflow.py +164 -0
  23. fr_cli/breakthrough/update.py +154 -0
  24. fr_cli/command/__init__.py +4 -0
  25. fr_cli/command/executor.py +276 -0
  26. fr_cli/command/registry.py +1034 -0
  27. fr_cli/command/security.py +30 -0
  28. fr_cli/conf/config.py +126 -0
  29. fr_cli/conf/wizard.py +172 -0
  30. fr_cli/core/chat.py +280 -0
  31. fr_cli/core/core.py +111 -0
  32. fr_cli/core/intent.py +129 -0
  33. fr_cli/core/recommender.py +71 -0
  34. fr_cli/core/stream.py +83 -0
  35. fr_cli/core/sysmon.py +117 -0
  36. fr_cli/core/thinking.py +215 -0
  37. fr_cli/gatekeeper/__init__.py +7 -0
  38. fr_cli/gatekeeper/daemon.py +216 -0
  39. fr_cli/gatekeeper/manager.py +218 -0
  40. fr_cli/lang/i18n.py +827 -0
  41. fr_cli/main.py +329 -0
  42. fr_cli/memory/context.py +119 -0
  43. fr_cli/memory/history.py +96 -0
  44. fr_cli/memory/session.py +134 -0
  45. fr_cli/repl/__init__.py +0 -0
  46. fr_cli/repl/commands.py +1098 -0
  47. fr_cli/security/security.py +46 -0
  48. fr_cli/ui/ui.py +116 -0
  49. fr_cli/weapon/cron.py +217 -0
  50. fr_cli/weapon/dataframe.py +97 -0
  51. fr_cli/weapon/disk.py +141 -0
  52. fr_cli/weapon/fs.py +206 -0
  53. fr_cli/weapon/launcher.py +249 -0
  54. fr_cli/weapon/loader.py +98 -0
  55. fr_cli/weapon/mail.py +227 -0
  56. fr_cli/weapon/mcp.py +204 -0
  57. fr_cli/weapon/vision.py +74 -0
  58. fr_cli/weapon/web.py +88 -0
  59. fr_cli-2.1.0.dist-info/METADATA +227 -0
  60. fr_cli-2.1.0.dist-info/RECORD +64 -0
  61. fr_cli-2.1.0.dist-info/WHEEL +5 -0
  62. fr_cli-2.1.0.dist-info/entry_points.txt +2 -0
  63. fr_cli-2.1.0.dist-info/licenses/LICENSE +21 -0
  64. fr_cli-2.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,227 @@
1
+ Metadata-Version: 2.4
2
+ Name: fr-cli
3
+ Version: 2.1.0
4
+ Summary: 凡人打字机 - 基于智谱AI的终极全能终端工具
5
+ Author: FANREN CLI Author
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/yourname/fr-cli
8
+ Project-URL: Issues, https://github.com/yourname/fr-cli/issues
9
+ Keywords: zhipuai,glm,cli,ai,terminal,chatbot
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Environment :: Console
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
22
+ Classifier: Topic :: Utilities
23
+ Requires-Python: >=3.8
24
+ Description-Content-Type: text/markdown
25
+ License-File: LICENSE
26
+ Requires-Dist: zhipuai>=2.0.0
27
+ Requires-Dist: requests>=2.28.0
28
+ Requires-Dist: mcp>=1.6.0
29
+ Provides-Extra: data
30
+ Requires-Dist: pandas>=1.5.0; extra == "data"
31
+ Requires-Dist: openpyxl>=3.0.0; extra == "data"
32
+ Provides-Extra: db
33
+ Requires-Dist: pymysql>=1.0.0; extra == "db"
34
+ Requires-Dist: psycopg2-binary>=2.9.0; extra == "db"
35
+ Requires-Dist: pyodbc>=4.0.0; extra == "db"
36
+ Requires-Dist: oracledb>=1.3.0; extra == "db"
37
+ Provides-Extra: rag
38
+ Requires-Dist: chromadb>=0.4.0; extra == "rag"
39
+ Requires-Dist: sentence-transformers>=2.2.0; extra == "rag"
40
+ Provides-Extra: remote
41
+ Requires-Dist: paramiko>=3.0.0; extra == "remote"
42
+ Provides-Extra: spider
43
+ Requires-Dist: selenium>=4.10.0; extra == "spider"
44
+ Provides-Extra: cloud
45
+ Requires-Dist: bypy; extra == "cloud"
46
+ Requires-Dist: aligo; extra == "cloud"
47
+ Requires-Dist: msal; extra == "cloud"
48
+ Provides-Extra: monitor
49
+ Requires-Dist: watchdog>=3.0.0; extra == "monitor"
50
+ Provides-Extra: all
51
+ Requires-Dist: pandas>=1.5.0; extra == "all"
52
+ Requires-Dist: openpyxl>=3.0.0; extra == "all"
53
+ Requires-Dist: pymysql>=1.0.0; extra == "all"
54
+ Requires-Dist: psycopg2-binary>=2.9.0; extra == "all"
55
+ Requires-Dist: pyodbc>=4.0.0; extra == "all"
56
+ Requires-Dist: oracledb>=1.3.0; extra == "all"
57
+ Requires-Dist: chromadb>=0.4.0; extra == "all"
58
+ Requires-Dist: sentence-transformers>=2.2.0; extra == "all"
59
+ Requires-Dist: paramiko>=3.0.0; extra == "all"
60
+ Requires-Dist: selenium>=4.10.0; extra == "all"
61
+ Requires-Dist: bypy; extra == "all"
62
+ Requires-Dist: aligo; extra == "all"
63
+ Requires-Dist: msal; extra == "all"
64
+ Requires-Dist: watchdog>=3.0.0; extra == "all"
65
+ Provides-Extra: dev
66
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
67
+ Requires-Dist: build; extra == "dev"
68
+ Requires-Dist: twine; extra == "dev"
69
+ Dynamic: license-file
70
+
71
+ # 凡人打字机 (fr-cli)
72
+
73
+ 基于智谱 AI (ZhipuAI/GLM) 的终极全能终端工具。
74
+
75
+ ## ✨ 功能特性
76
+
77
+ - 🤖 **AI 对话**:基于 GLM-4 系列模型的智能对话
78
+ - 🧠 **MasterAgent 主控**:自我进化的 ReAct 主控 Agent,自动规划、调用工具、反思进化
79
+ - 🧩 **思维模式**:direct / CoT / ToT / ReAct 四种推理模式切换
80
+ - 📁 **文件沙盒**:安全的虚拟文件系统,支持读写/目录操作
81
+ - 🔍 **联网搜索**:内置 Web 搜索与网页内容提取(SSRF 防护)
82
+ - 🖼️ **视觉能力**:图片生成 (CogView) 与多模态识别 (GLM-4V)
83
+ - 📧 **邮件收发**:支持 IMAP/SMTP(防头注入)
84
+ - ⏰ **定时任务**:后台定时执行命令(shlex 安全解析)
85
+ - ☁️ **云盘集成**:百度/阿里/OneDrive 网盘
86
+ - 🔌 **插件系统**:AI 生成代码自动保存为插件(子进程隔离,无代码注入)
87
+ - 🧠 **会话记忆**:自动保留最近 5 轮对话摘要 + 按日期自动存档
88
+ - 🛡️ **安全确认**:四阶危险操作拦截 + 虚拟文件系统沙盒
89
+ - 👤 **Agent 分身系统**:AI 自动生成 Agent(人设/记忆/技能/代码),支持工作流编排
90
+ - 🌐 **Agent HTTP API**:将 Agent 发布为 REST API 供外部调用(默认 127.0.0.1 + Bearer Token)
91
+ - 🖥️ **本机应用启动**:一键调用浏览器、微信、Word、WPS 等本地程序
92
+ - 🧑‍💻 **内置 Agent**:`@local` `@remote` `@spider` `@db` `@RAG`
93
+ - 📊 **数据卷轴**:Excel / CSV 读取与智能分析
94
+ - 🗄️ **数据库助手**:MySQL / PostgreSQL / SQL Server / Oracle 智能 SQL 生成
95
+ - 📚 **本地 RAG**:ChromaDB 向量库 + 自动文件监控与向量化
96
+ - 🔗 **MCP 外部神通**:支持 Model Context Protocol,连接外部工具服务器(stdio/SSE)
97
+ - 🧠 **多源信息融合**:大模型初步回答 + 工具结果(搜索/RAG/MCP/Agent)统一汇总整理
98
+ - 🌍 **中英文切换**:完整国际化支持
99
+
100
+ ## 🚀 快速安装
101
+
102
+ ```bash
103
+ pip install fr-cli
104
+ fr-cli
105
+ ```
106
+
107
+ 首次运行会引导输入智谱 API Key。
108
+
109
+ ## 📝 使用示例
110
+
111
+ ### 终端命令
112
+
113
+ ```bash
114
+ fr-cli
115
+
116
+ # 用户直接输入的命令
117
+ /ls # 列出文件
118
+ /cat hello.md # 查看文件
119
+ /cd /tmp # 切换目录
120
+ /save mysession # 保存会话
121
+ /export # 导出为 Markdown
122
+ /agent_server start 8080 # 启动 Agent HTTP API
123
+ /agent_create coder "编写Python代码的助手" # 自动生成Agent
124
+ /open /Users/me/doc.pdf # 用默认应用打开文件
125
+ /launch chrome github.com # 用 Chrome 打开网址
126
+ /launch 微信 # 启动微信
127
+ /apps # 列出可用应用
128
+ @local 查看当前目录最大的5个文件 # 本地系统操作Agent
129
+ @spider https://example.com 2 # 智能爬虫(深度2)
130
+ @db mydb 查询最近7天注册用户 # 数据库智能助手
131
+ @RAG 什么是向量数据库 # 本地知识库问答
132
+ /read_excel report.xlsx # 读取 Excel
133
+ /read_csv data.csv # 读取 CSV
134
+
135
+ # MasterAgent 自我进化主控
136
+ /master on # 启用主控Agent
137
+ /master off # 关闭主控Agent
138
+ /master status # 查看主控状态
139
+
140
+ # MCP 外部神通
141
+ /mcp_list # 列出已配置的 MCP 服务器及工具
142
+ /mcp_add fs npx -y @modelcontextprotocol/server-filesystem /tmp
143
+ /mcp_del fs # 删除 MCP 服务器
144
+ /mcp_enable fs # 启用服务器
145
+ /mcp_disable fs # 禁用服务器
146
+ /mcp_refresh # 刷新工具列表
147
+
148
+ # 思维模式切换
149
+ /mode direct # 直接回答(默认)
150
+ /mode cot # CoT 链式思考
151
+ /mode tot # ToT 树状搜索
152
+ /mode react # ReAct 深度推理
153
+
154
+ # 自动会话存档
155
+ /session_list # 列出按日期存档的会话
156
+ /session_load 0 # 加载第0个存档
157
+ /session_del 1 # 删除第1个存档
158
+
159
+ /help # 查看帮助
160
+ /exit # 退出
161
+ ```
162
+
163
+ ### AI 自动工具调用
164
+
165
+ 向 AI 描述需求,它会自动调用内置工具:
166
+
167
+ ```
168
+ >>> 搜索一下 Python 最新版本
169
+ 🧙 仙人 [基于知识初步回答 + 调用 search_web 获取最新信息]
170
+ ...
171
+ 🤖 自动执行命令:
172
+ ✅ 工具调用成功: search_web
173
+ ...
174
+ 🧙 仙人 [整理后的最终答案,融合自身知识与搜索结果]
175
+
176
+ >>> 把刚才的内容保存到文件
177
+ 🧙 仙人 【调用:write_file({"path": "python_news.md", "content": "..."})】
178
+ ✅ 卷轴已刻录
179
+ ```
180
+
181
+ ### Agent HTTP API 调用
182
+
183
+ 启动服务后,外部系统可直接调用 Agent:
184
+
185
+ ```bash
186
+ # 在 fr-cli 中启动服务
187
+ >>> /agent_server start 8080
188
+
189
+ # 外部系统调用(需携带 Bearer Token)
190
+ curl http://localhost:8080/agents \
191
+ -H "Authorization: Bearer <token>"
192
+ curl -X POST http://localhost:8080/agents/my_agent/run \
193
+ -H "Content-Type: application/json" \
194
+ -H "Authorization: Bearer <token>" \
195
+ -d '{"input": "请分析这个需求"}'
196
+ ```
197
+
198
+ ### 插件调用
199
+
200
+ 自定义插件保持命令方式:
201
+
202
+ ```
203
+ >>> 运行我的天气插件
204
+ 🧙 仙人 【命令:/weather 北京】
205
+ ```
206
+
207
+ ## 📦 安装
208
+
209
+ ```bash
210
+ # 一键安装(v2.1.0 起所有功能依赖默认包含)
211
+ pip install fr-cli
212
+ ```
213
+
214
+ 默认包含:智谱 AI SDK、HTTP 请求、Excel/CSV 处理、MySQL/PostgreSQL/SQL Server/Oracle 驱动、ChromaDB 向量库、sentence-transformers、SSH、Selenium、文件监控、云盘支持。
215
+
216
+ ## 🔧 开发
217
+
218
+ ```bash
219
+ git clone https://github.com/yourname/fr-cli.git
220
+ cd fr-cli
221
+ pip install -e .
222
+ python -m pytest tests/ -v
223
+ ```
224
+
225
+ ## 📄 License
226
+
227
+ MIT
@@ -0,0 +1,64 @@
1
+ fr_cli/README.md,sha256=mffsk_WZVy7tJ39vZHyosdLNvlKWCeyQIncr3wAQwTU,5491
2
+ fr_cli/WEAPON.MD,sha256=xwieAQHwDDNbRpg1zNCSPpdzBrF04c_PCwmo5ilzmjY,10142
3
+ fr_cli/__init__.py,sha256=mlqCDgPbrepUF1wcr8A6bjg-k9UA_jZd_z5hc3LR13Y,90
4
+ fr_cli/main.py,sha256=0d3UwyfvqAuLOrwUZdc2iwI0llbZh1rwDCxDkDBPRmU,11929
5
+ fr_cli/addon/plugin.py,sha256=so8kk_OtMjk486RTPZlkckp3n_LmdGcrtAHFZLQs-S4,2203
6
+ fr_cli/agent/__init__.py,sha256=3joV_y2fbB4Wd2SkqN6yk_v3aZweVw1t3Ir2khMQmxk,188
7
+ fr_cli/agent/client.py,sha256=kndbAam3dYCAqWZuxSQrdplej7OG9PmEdymNr_Ole64,5137
8
+ fr_cli/agent/executor.py,sha256=LKvFfv2MHP3tvIXE6i2aDBSCeyIuPji9vlj7PpRM0rA,3166
9
+ fr_cli/agent/generator.py,sha256=0tDlRxTTC6Bz_cj4-DydJdU7ISLx22r6OhAba8gkQps,3794
10
+ fr_cli/agent/manager.py,sha256=4hXsqTPfInNy3CV9I7zDgFYIU1dTHR9ZYd0woXXq9k0,5318
11
+ fr_cli/agent/master.py,sha256=ZR92mx_qLSfHtc1ssaNxKlesQioKLRWAS0bw1b7M7n4,24519
12
+ fr_cli/agent/master_prompt.py,sha256=sHDleztjst-i3SdnbX7_zwiktdIcCLLkPBALBXursFk,4331
13
+ fr_cli/agent/remote.py,sha256=8rbkl2kKxUSuo6FMuJHn1x7mJc0tL03QQTUZBiaBfm8,1604
14
+ fr_cli/agent/server.py,sha256=Qm4ZUME3sFYNFdgIZaaCLp_TYJ7SmEdqg58cNnZqzOg,10341
15
+ fr_cli/agent/workflow.py,sha256=-2TyyFE_orvWSYpR9Ssnjabub3YUYrVRT7DgbGlnTNc,5957
16
+ fr_cli/agent/builtins/__init__.py,sha256=zdIeogEDJHjqaf7imkVkJvFk4TlimCKNcikCpfF9DII,109
17
+ fr_cli/agent/builtins/_utils.py,sha256=Ex7qHiXmw3Qv7myz27jMyRM3wvDev40I4mjZZBRkUMg,1449
18
+ fr_cli/agent/builtins/db.py,sha256=uIDddnoPhMN9sq56kHLm1ZMKL4tBBuOJBE-13kAmOfo,9964
19
+ fr_cli/agent/builtins/local.py,sha256=bCNuKlRY8GrtUD4ZNbiu1TAhqa4Tv75-KVD-uElmeH8,4059
20
+ fr_cli/agent/builtins/rag.py,sha256=pU1lG4tx1CgMNF8JNlsYWTzsvKwTqmjMq4BRtoKDK4w,23112
21
+ fr_cli/agent/builtins/rag_watcher_daemon.py,sha256=ECVmEIB5qW6-Ssbtyu3X2M21Hc5vKB1dxq2IwTWTNo4,4514
22
+ fr_cli/agent/builtins/remote.py,sha256=5SDH4jdFbUv0w396Rq2_kl1ryJUZpZTkgmygSZ-brQU,6917
23
+ fr_cli/agent/builtins/spider.py,sha256=s3NQ_pFDdEKsIuBV1FqMIg1PhUTZibXNZehv1jpdddA,7963
24
+ fr_cli/breakthrough/update.py,sha256=dc5iQH_qK0LZFYLF91LpJuyLISpI3P0a0woQaWzsjt0,6744
25
+ fr_cli/command/__init__.py,sha256=bnmIKMsfceYLnRmQPHrB-49ESPrZ_WIryGBCQITfL4U,79
26
+ fr_cli/command/executor.py,sha256=GAtZAdY-JbQA8VbI4QZ0r-iKm--l-uIC78ieryJatAQ,10986
27
+ fr_cli/command/registry.py,sha256=qcxE5oZDTDlWqYojvpt11-WgUAeKJxqMXJ4GvCDURAo,33295
28
+ fr_cli/command/security.py,sha256=IU3Bd5DF1zMfP-Xy4lMNMjnFuMkNrTFRrX2fJUjjljM,837
29
+ fr_cli/conf/config.py,sha256=9bhxOv_GigP3h1Sz4ncXUBF7kvP8Ll5jZfwJQpLjPHQ,3982
30
+ fr_cli/conf/wizard.py,sha256=TZq2BjJI1-PnK9rS3wGV5wV_uetSa7EqCtoIiBtb4oo,6839
31
+ fr_cli/core/chat.py,sha256=gF7yIfRjKfL1Eg8TFUZ8qTIZK90KdK75gazyvKqzHqw,13689
32
+ fr_cli/core/core.py,sha256=s1_usqf9nVKmAqdif4cU7WTwllJd71cthDwM-7S1c7U,3587
33
+ fr_cli/core/intent.py,sha256=ysKBgFwUFU-of70OY_Sfbl9UyMK2-IADOKRTJHtNBDY,6109
34
+ fr_cli/core/recommender.py,sha256=30oeZn9W5Vp9CQv5Zb5A6jYFQcsGZq5Ax-OARy3aq2c,3945
35
+ fr_cli/core/stream.py,sha256=qoMrgjRmOa8zRLYMwi7I_DuMqZ2n3gdGjnmMiaoLnh8,3165
36
+ fr_cli/core/sysmon.py,sha256=-XOqY5Mkfht5K8tC4TLMxYSvGhjKZFRyBOun5_05itk,2893
37
+ fr_cli/core/thinking.py,sha256=zafx2sAnrANVmQ6dTUjNrsXdNvx_Tfb8bZgfr6LWgoY,9411
38
+ fr_cli/gatekeeper/__init__.py,sha256=J2-QpEpyAdexS4ZEblDlvvgf877YuATHJf4YAMv9TkI,272
39
+ fr_cli/gatekeeper/daemon.py,sha256=gfHJ2ChEY6nPSuKjBplLIh83xmelx4XyXrGSMragesI,6288
40
+ fr_cli/gatekeeper/manager.py,sha256=fyEh3cdGPaU6aqMQQjOVE4ZNLsmBC8YnZqJuf_s3KnU,6861
41
+ fr_cli/lang/i18n.py,sha256=vIUkgT0COu58i0ZCL1AnIWRCCOVUwEFXTZfHAL0wh4Y,38825
42
+ fr_cli/memory/context.py,sha256=FyD2d0RYNT7FHkk3AcvCv5Nrc557u3iPFsXN_mjwgz0,3557
43
+ fr_cli/memory/history.py,sha256=GM8101eWFJwkzlC1VlsadvWUtdjEOzfamd1CazBiT_w,3272
44
+ fr_cli/memory/session.py,sha256=CGYLJ--nJn2zFsYq_XCdAcYsBmUjdxXjlko0HbvAicM,4260
45
+ fr_cli/repl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
+ fr_cli/repl/commands.py,sha256=du-vdii8qGQPjs3p_EmmgB7x8bC2ReYQuveScBMjlNU,43147
47
+ fr_cli/security/security.py,sha256=nG4N7iwFU2F4pWiylAJCocxpHx1DPh-mcg9WRhPnLYM,1711
48
+ fr_cli/ui/ui.py,sha256=L8nU1MIh1rjTED3o_-v1w_sPW42gAa-hOD7khyYLUbU,4206
49
+ fr_cli/weapon/cron.py,sha256=Zf_uZ9FiprnqN4MbY8o7LBUtD9nuqpi_Snb-3ylPYHo,8140
50
+ fr_cli/weapon/dataframe.py,sha256=c1OmCmgt60tNN8_m8dbpSmcTAF9DrUubmCkLQ3Ari-c,2997
51
+ fr_cli/weapon/disk.py,sha256=AyDlMoBRbh9hS59cHlh-QdbW-HDzltJy44hnc7i7ftc,5506
52
+ fr_cli/weapon/fs.py,sha256=c37144z2x23D2ZSeyppj-mXl75taqHbMNOdo68BF0C4,7145
53
+ fr_cli/weapon/launcher.py,sha256=lY_4xgxkp2oN1ovE2-2WY16v0sfvYMjZKMqtFNvS7VM,8237
54
+ fr_cli/weapon/loader.py,sha256=pQ-NH7HLmTiDJ1WcXSYrxiQSv1bCwogUBTPQmWXkLuM,3968
55
+ fr_cli/weapon/mail.py,sha256=wAhOZIbBXp-cwPWTILRXgFQYnMyMvrJ0AN9X7MzNgvw,7943
56
+ fr_cli/weapon/mcp.py,sha256=taFiBbL0XMnw0Es0DHI91MDGSWWpNQrOZ5eiDcQ_CYQ,7513
57
+ fr_cli/weapon/vision.py,sha256=h6dAfj1rtomH4vvnwJKkZrTINhw-9LNawTfKNLN-RzE,2712
58
+ fr_cli/weapon/web.py,sha256=kH8zVOxxfLJ4pt7PSFMi31Z0wWyWprwmocubcs6S8uY,3409
59
+ fr_cli-2.1.0.dist-info/licenses/LICENSE,sha256=mWzX1_bhq8b--6P-2aIwkzIL9s_IBhmG7k5qh6wGK9Q,1067
60
+ fr_cli-2.1.0.dist-info/METADATA,sha256=VEisuTe2HhAjnYuj3w9YgE5pFEWNU6_2kLn2FoE4vMs,8297
61
+ fr_cli-2.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
62
+ fr_cli-2.1.0.dist-info/entry_points.txt,sha256=QBWCydNtD4LdtcL9wM9FzhX8AeHv8Lj5hplRqH3uthw,44
63
+ fr_cli-2.1.0.dist-info/top_level.txt,sha256=78XHgwUbxbSFuiQ2GYjjcg0-5EHLrRc9pVbEjjfBNU0,7
64
+ fr_cli-2.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ fr-cli = fr_cli.main:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 leungyukit
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.
@@ -0,0 +1 @@
1
+ fr_cli