Merge pull request #24 from Daiyimo/main

feat: add uninstall command; fix utf-8 encoding and minor cleanups
This commit is contained in:
Pnant 2026-02-27 13:24:21 +08:00 committed by GitHub
commit dc4d7cd7a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 130 additions and 17 deletions

View file

@ -207,6 +207,24 @@ Agent Reach 在设计上重视安全:
| 安全模式 | `agent-reach install --env=auto --safe` | 生产服务器、多人共用机器 |
| 仅预览 | `agent-reach install --env=auto --dry-run` | 先看看会做什么 |
### 🗑️ 卸载
```bash
agent-reach uninstall
```
会清除:`~/.agent-reach/`(含所有 token/cookie、各 Agent 的 skill 文件、mcporter 中的 MCP 配置。
```bash
# 只预览,不实际删除
agent-reach uninstall --dry-run
# 只删 skill 文件,保留 token 配置(重装时用)
agent-reach uninstall --keep-config
```
卸载 Python 包本身:`pip uninstall agent-reach`
---
## 贡献