Source facts
- Repository
- 111pointer111/agent-collection
- Last source activity
- May 10, 2026 at 08:50
- Detected SKILL.md language
- Chinese
- Stars
- 1
- Forks
- 0
Install options
The review-first prompt is selected by default. You can switch to a direct command or download a local copy.
Review the source files
Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.
Showing SKILL.md
SKILL.md
Source instructions · Read-only preview- name
- agent-remover
- description
- 卸载已安装的 Agent。删除 Agent 目录和相关文件。
# Agent Remover
## 功能概述
卸载已安装的 Agent,删除 Agent 目录和相关文件。
## 使用方式
```
@agent-remover <Agent名称>
```
## 示例
```bash
@agent-remover ml-expert
@agent-remover tianya-expert
@agent-remover code-reviewer
```
## 工作流程
### 1. 列出已安装的 Agents
```bash
ls -la ~/.claude/agents/
```
### 2. 检查 Agent 是否存在
```bash
if [ -d "~/.claude/agents/<name>" ]; then
echo "Agent 存在"
else
echo "Agent 不存在"
fi
```
### 3. 删除 Agent 目录
```bash
rm -rf ~/.claude/agents/<name>
```
### 4. 确认删除
```bash
ls -la ~/.claude/agents/
```
## 输出示例
```
✓ Agent 'ml-expert' 已卸载
已安装的 Agents:
- code-reviewer
- test-engineer
```
## 注意事项
1. **不可恢复**: 删除后无法恢复,需要重新创建
2. **需要确认**: 删除前会确认 Agent 是否存在
3. **只删除安装**: 不会删除源目录中的 Agent 文件
## 相关命令
```bash
# 创建 Agent
@agent-creator <知识目录> <Agent名称> [描述]
# 安装 Agent
./scripts/install-agent.sh <Agent名称>
# 卸载 Agent
@agent-remover <Agent名称>
# 列出已安装的 Agents
ls -la ~/.claude/agents/
```
View on GitHub