Community라이팅 & 에디팅github.com

thebitanpaul/VERA

Version-Explicit Retrieval & Answering - VERA answers a trial coordinator's question about what a clinical-trial protocol currently requires, using only the version that governs the trial today — and it abstains rather than guessing when the protocol doesn't cover the question.

VERA란 무엇인가요?

VERA is a Claude Code agent skill that version-Explicit Retrieval & Answering - VERA answers a trial coordinator's question about what a clinical-trial protocol currently requires, using only the version that governs the trial today — and it abstains rather than guessing when the protocol doesn't cover the question.

지원 대상Claude Code~Codex CLI~CursorGemini CLI
npx skills add thebitanpaul/VERA

Installed? Explore more 라이팅 & 에디팅 skills: steipete/notion, affaan-m/seo, affaan-m/brand-voice · View all 6 →

즐겨 사용하는 AI에게 물어보기

이 에이전트 스킬이 미리 로드된 새 채팅을 엽니다.

문서

Protocol Q&A (VERA)

This skill answers protocol questions by running the local VERA tool (python -m vera). You must not answer protocol questions from your own knowledge. Only relay what VERA returns. VERA reads the ingested protocol documents, resolves which version currently governs the trial, retrieves the relevant sections, and either answers with citations or abstains.

When to use

Use this skill when a coordinator asks anything like:

  • "Is permitted / allowed / excluded for trial ?"
  • "What is the washout period / dose limit / visit window?"
  • "What changed between protocol versions?"
  • Any question about what the protocol currently requires.

Do not hand-write a protocol answer, and do not use general medical knowledge — route every such question through VERA.

How to run it

  1. Get the question and the trial number. If the coordinator did not say which trial, ask. (The demo dataset contains Trial 412.)

  2. Run VERA from the project root with the Bash tool, always with --no-escalate on the first pass (this suppresses the tool's own prompt so you can handle escalation in the conversation instead):

    python -m vera "<the coordinator's question, verbatim>" --trial <N> --no-escalate
    

    Pass the question exactly as asked, in double quotes. Do not rephrase it.

  3. Read VERA's output and relay it (see below). Keep every citation.

How to read and relay the result

VERA prints one of two things.

A. An answer

The output starts with the governing version, then a [backend: ...] line, then the answer, a Provenance: block, and a Verifier: PASSED line. For example:

Trial 412: governing version v3.0 (effective 2025-03-01) as of 2026-07-24
[backend: mock]
Per Trial 412 v3.0 §5.2 (Eligibility - Concomitant Metformin), effective 2025-03-01:
  Concomitant metformin is permitted ... does not exceed 2000 mg/day ...
Change disclosure — this differs from the earlier Trial 412 v1.0 §5.2 ...
Provenance:
  [current]    Trial 412 v3.0 §5.2 ...
Verifier: PASSED — ...

Relay it to the coordinator in plain language, and always keep:

  • the answer itself (e.g. "permitted, up to 2000 mg/day"),
  • the citation — trial, version, section, and effective date,
  • any change disclosure ("this changed from version 1.0, which excluded it").

Never drop the citation or the version — knowing which version the answer comes from is the whole point.

B. An abstention

If the output contains:

INSUFFICIENT EVIDENCE — escalating

Reason: <why>

then VERA could not answer safely. This happens when the topic is not in the current protocol version, retrieval confidence is too low, or the answer could not be grounded in a cited passage. Do not fill the gap with your own knowledge.

Tell the coordinator, in plain language, that the question can't be answered from the current protocol and give the reason. Then ask them:

"I can't answer this from the current protocol. Would you like me to escalate it to the protocol team so they can follow up?"

  • If yes, re-run the same command with --escalate instead of --no-escalate:

    python -m vera "<same question>" --trial <N> --escalate
    

    This files an Azure DevOps work item (via the ADO MCP server in production, or a JSON file under var/escalations/ in this demo) summarising the question, trial, and reason. Confirm to the coordinator that it was raised.

  • If no, do nothing further and confirm the question was left unanswered.

Always ask before escalating — this prevents a flood of low-value tickets.

Notes

  • Runs on a deterministic mock model by default (no setup needed). To use a real model, add a GEMINI_API_KEY (or ANTHROPIC_API_KEY) to a .env file; see .env.example. Backend selection does not change how you use this skill.
  • If the output contains a [warning] line about the backend, the live model was unavailable and the deterministic fallback answered instead. The answer is still grounded in the protocol — mention the degradation, don't hide it.
  • See README.md for example questions and expected results.

관련 스킬

steipete/notion

Notion CLI/API for pages, Markdown content, data sources, files, comments, search, Workers, and raw API calls.

community

affaan-m/seo

Audit, plan, and implement SEO improvements across technical SEO, on-page optimization, structured data, Core Web Vitals, and content strategy. Use when the user wants better search visibility, SEO remediation, schema markup, sitemap/robots work, or keyword mapping.

community

affaan-m/brand-voice

Build a source-derived writing style profile from real posts, essays, launch notes, docs, or site copy, then reuse that profile across content, outreach, and social workflows. Use when the user wants voice consistency without generic AI writing tropes.

community

affaan-m/crosspost

Multi-platform content distribution across X, LinkedIn, Threads, and Bluesky. Adapts content per platform using content-engine patterns. Never posts identical content cross-platform. Use when the user wants to distribute content across social platforms.

community

affaan-m/x-api

X/Twitter API integration for posting tweets, threads, reading timelines, search, and analytics. Covers OAuth auth patterns, rate limits, and platform-native content posting. Use when the user wants to interact with X programmatically.

community

affaan-m/content-engine

Create platform-native content systems for X, LinkedIn, TikTok, YouTube, newsletters, and repurposed multi-platform campaigns. Use when the user wants social posts, threads, scripts, content calendars, or one source asset adapted cleanly across platforms.

community