审计报告模板
输出结构quick-audit和gate模式。
模板
markdown
# Paper Audit Report
**File**: `{file_path}` | **Language**: {language} | **Mode**: {mode}
**Generated**: {timestamp} | **Venue**: {venue or "general"}
---
## Executive Summary
Found **{total_issues} issues** ({critical_count} Critical, {major_count} Major, {minor_count} Minor).
Overall score: **{overall_score}/6.0** ({score_label}).
{verdict_line — only for gate mode: "**Verdict: PASS** / **Verdict: FAIL**"}
---
## Scores
| Dimension | Score | Issues (C/M/m) | Label |
|-----------|-------|-----------------|-------|
| Quality (30%) | {quality}/6.0 | {c}/{m}/{mi} | {label} |
| Clarity (30%) | {clarity}/6.0 | {c}/{m}/{mi} | {label} |
| Significance (20%) | {significance}/6.0 | {c}/{m}/{mi} | {label} |
| Originality (20%) | {originality}/6.0 | {c}/{m}/{mi} | {label} |
| **Overall** | **{overall}/6.0** | | **{label}** |
---
## Issues
### Critical (P0) — Must Fix
| # | Module | Line | Issue | Suggestion |
|---|--------|------|-------|------------|
| 1 | {MODULE} | {line} | {message} | {suggestion} |
### Major (P1) — Should Fix
| # | Module | Line | Issue | Suggestion |
|---|--------|------|-------|------------|
| 1 | {MODULE} | {line} | {message} | {suggestion} |
### Minor (P2) — Nice to Fix
| # | Module | Line | Issue | Suggestion |
|---|--------|------|-------|------------|
| 1 | {MODULE} | {line} | {message} | {suggestion} |
{If no issues in a severity level, show: "No {severity} issues found."}
---
## Pre-Submission Checklist
- [x] {passed item description}
- [ ] {failed item description} — {failure details}
{If venue specified, venue-specific items appear with [VENUE] prefix.}
---
## ScholarEval Assessment (if --scholar-eval)
| Dimension | Score | Weight | Source | Evidence |
|-----------|-------|--------|--------|----------|
| Soundness | {score}/10 | 20% | Script | — |
| Clarity | {score}/10 | 15% | Script | — |
| Presentation | {score}/10 | 10% | Script | — |
| Novelty | {score}/10 | 15% | LLM | {evidence or "N/A (awaiting LLM)"} |
| Significance | {score}/10 | 15% | LLM | {evidence or "N/A (awaiting LLM)"} |
| Reproducibility | {score}/10 | 10% | Mixed | {evidence} |
| Ethics | {score}/10 | 5% | LLM | {evidence or "N/A (awaiting LLM)"} |
| **Overall** | **{score}/10** | | | **{readiness_label}** |格式指南
门模式细节
- 仅当满足以下条件时,判决才通过: 零个关键问题并且所有清单项目均通过
- 阻塞问题部分仅出现在 FAIL 上
- 显示的非阻塞问题仅供参考
严重性标记
| 严重性 | 优先事项 | 扣分 | 报告部分 |
|---|---|---|---|
| 批判的 | P0 | -1.5 | 必须修复 |
| 主要的 | P1 | -0.75 | 应该修复 |
| 次要的 | P2 | -0.25 | 很好修复 |