$npx -y skills add WILLOSCAR/research-units-pipeline-skills --skill bias-assessorUse when evidence-review has an extraction table and needs lightweight risk-of-bias fields. Trigger: bias, risk-of-bias, RoB, evidence quality, 偏倚评估, 证据质量. Use when: evidence-review 已生成 papers/extraction_table.csv,需要在 synthesis 前补齐偏倚/质量字段。 Skip if: 不是 evidence/s
| 1 | # Bias Assessor |
| 2 | |
| 3 | Enriches the extraction table with lightweight risk-of-bias fields for `evidence-review`. |
| 4 | |
| 5 | ## Input |
| 6 | |
| 7 | - `papers/extraction_table.csv` |
| 8 | |
| 9 | ## Output |
| 10 | |
| 11 | - updated `papers/extraction_table.csv` |
| 12 | |
| 13 | ## Contract |
| 14 | |
| 15 | The table should expose stable RoB columns: |
| 16 | - `rob_selection` |
| 17 | - `rob_measurement` |
| 18 | - `rob_confounding` |
| 19 | - `rob_reporting` |
| 20 | - `rob_overall` |
| 21 | - `rob_notes` |
| 22 | |
| 23 | Allowed values are fixed: |
| 24 | - `low` |
| 25 | - `unclear` |
| 26 | - `high` |
| 27 | |
| 28 | ## Script boundary |
| 29 | |
| 30 | `scripts/run.py` should: |
| 31 | - add missing RoB columns |
| 32 | - assign a conservative overall score |
| 33 | - keep notes brief |
| 34 | |
| 35 | ## Acceptance |
| 36 | |
| 37 | - RoB columns exist |
| 38 | - all included rows have values |
| 39 | - values stay within the fixed scale |
| 40 | |
| 41 | ## Non-goals |
| 42 | |
| 43 | - deep methodological critique |
| 44 | - rewriting extraction contents |