Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,22 @@ The default Streamlit desktop UI started by `python launch.pyw`, plus the QQ / T
- `/continue` - list recoverable conversation snapshots
- `/continue N` - restore the `N`th recoverable conversation

### Standalone Health Check Script

If you want to audit a GenericAgent checkout without modifying runtime behavior, use the standalone helper:

```bash
python scripts/agent_health_check.py --target-dir /path/to/GenericAgent
python scripts/agent_health_check.py --mode tools --json
```

This script is intentionally standalone:

- no monkey-patching
- no tool registration
- no direct memory file writes
- read-only checks against prompts, config, memory layout, tools, loop guards, and hidden layers


## 📊 Comparison with Similar Tools

Expand Down Expand Up @@ -427,6 +443,22 @@ streamlit run frontends/stapp2.py # 另一种 Streamlit 风格 UI
- `/continue` - 列出可恢复会话快照
- `/continue N` - 恢复第 `N` 个可恢复会话

### 独立健康检查脚本

如果你想在**不修改运行时行为**的前提下审计一个 GenericAgent 仓库,可以直接运行这个独立脚本:

```bash
python scripts/agent_health_check.py --target-dir /path/to/GenericAgent
python scripts/agent_health_check.py --mode tools --json
```

这个脚本是纯独立的:

- 不 monkey-patch 运行时
- 不注册新工具
- 不直接写入 memory 文件
- 只做只读检查,覆盖提示词、配置、记忆布局、工具层、agent loop 保护和隐藏层


## 📊 与同类产品对比

Expand Down
Loading