check_minutes_grounding
Cross-check meeting minutes against the source note to detect unsupported people, dates, numbers, missing evidence, and dropped ambiguities from the original text.
Instructions
회의록에 적힌 사람·날짜·수치가 원문에서 확인되는지 역으로 대조합니다.
"원문에 없는 결정·담당자·기한을 추정하지 않는다"는 규칙을 사람 눈 대신 기계가 확인합니다. 날짜는 '9월 15일', '8/27', '20일' 같은 원문 표현을 ISO로 정규화한 뒤 비교하므로, 정상적인 회의록이 오탐으로 잡히지 않습니다.
검사 항목: - person_unsupported: 담당자·결정자 이름이 원문에 없음 - date_unsupported / year_unsupported: 날짜·연도의 근거가 원문에 없음 - number_unsupported: 원문에 없는 수치가 새로 생김 - evidence_missing: 실행 항목·리스크의 근거 칸이 비어 있음(참고) - ambiguity_dropped: 원문의 애매한 부분이 회의록에서 전부 확정되어 버림
중요: 이 검사는 자문(advisory) 입니다. 휴리스틱이므로 오탐이 있을 수 있고, 저장을 막지 않습니다. 저장 게이트는 validate_minutes_draft(구조)와 사용자 승인입니다. 경고가 났다면 해당 줄의 원문을 read_meeting_note로 다시 확인하고, 근거가 없으면 '미정'으로 바꾸세요.
Args: note_id: 원본 메모 id. minutes_markdown: 회의록 초안 전문. max_findings: 최대 지적 건수 (기본 30).
Returns:
GroundingResponse: status(GROUNDED / MOSTLY_GROUNDED /
NEEDS_EVIDENCE_REVIEW), score(0-100), findings[].
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note_id | Yes | 원본 메모 id | |
| max_findings | No | 돌려줄 최대 지적 건수 | |
| minutes_markdown | Yes | 검사할 회의록 초안 전문(마크다운) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| score | Yes | ||
| stage | Yes | 회의록 워크플로에서 지금 위치한 단계 | |
| status | Yes | 이 호출의 결과 상태 | |
| checked | Yes | ||
| note_id | Yes | ||
| summary | Yes | ||
| advisory | No | True. 근거 검사는 저장을 막지 않습니다. 저장 게이트는 validate_minutes_draft와 사용자 승인입니다. | |
| findings | Yes | ||
| next_actions | No | 이어서 호출하면 좋은 도구 목록 |