> ## Documentation Index
> Fetch the complete documentation index at: https://agent-compass.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Post-Analysis

> 在已完成的 result directory 上运行 analyzer。

当 run 已经完成或部分完成，而你需要在不重新运行 agent 的情况下生成 analyzer output 时，使用 post-analysis。

## 命令

```bash theme={null}
agentcompass analysis \
  --input results/swebench_verified/your-model/20260703_120000 \
  --analysis-params '{
    "analyzers": ["ExceptionAnalyzer", "TruncationAnalyzer"]
  }'
```

默认情况下，`analysis` 会把输入 run copy 到一个新的 timestamped sibling。只有明确要修改原始 run directory 时才使用 `--override`。

## Qualitative Analysis

```bash theme={null}
agentcompass analysis \
  --input results/terminal_bench_2/your-model/20260703_120000 \
  --analysis-params '{
    "analyzers": ["QualitativeAnalyzer"],
    "QualitativeAnalyzer": {"render_mode": "file"}
  }' \
  --task_concurrency 8
```

## 输出

| Artifact                       | 用途                               |
| ------------------------------ | -------------------------------- |
| `analysis_result.<AnalyzerId>` | detail 文件中的逐任务 analyzer payload。 |
| `analysis_summary.json`        | 机器可读的 analyzer 聚合结果。             |
| `analysis_summary.md`          | 人类可读的 analyzer summary。          |

## 相关页面

* [Analyzers](/zh/key_modules/analyzers)
* [Analyzer reference](/zh/reference/analyzers)
* [Results](/zh/key_modules/results)
