verify

A tool for checking whether requested website or Markdown feedback changes were actually applied. It reopens resolved comments and records a result for each one.

In plain words
What is it for?
Use it after processing feedback to confirm the new text, element, or page state and reopen changes that cannot be verified.
Why use it?
It prevents a task from being marked complete merely because an edit was attempted or an old page reference disappeared.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/baskb/feedback-studio/verify
Any agent
npx skills add baskb/feedback-studio --skill verify
Clone the repo
git clone --depth 1 https://github.com/baskb/feedback-studio

Made for: Claude Code, Codex.

Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,027 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00051 $0.01027
Opus 5 $0.00026 $0.00513
Sonnet 5 $0.00010 $0.00205
Haiku 4.5 $0.00005 $0.00103

Measured 2d ago against content hash b156dafbbdf8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

verify scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- **Without browser tools:** fetch the served HTML (`curl`) and check the new
plugins/feedback-studio/skills/verify/SKILL.md · 60 lines

How it starts

The opening of the file, as written. The whole thing — 60 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Feedback Studio — verify a processed round

The tool's whole promise is that the agent edited the right element. This skill extends that promise past the edit: for each resolved comment, confirm the requested change is actually present in the served page — and reopen any comment whose change can't be confirmed, rather than leaving a false "resolved".

The one rule that prevents false verdicts

Derive what to check from the comment text + thread (the requested END state) — not from whether the old anchor still resolves. A correct fix often invalidates its own anchor (the typo'd snippet no longer exists; a deleted element resolves to nothing). An anchor that fails to re-resolve is only suspicious when the comment did NOT ask for that element's text/existence to change.

Steps

  1. Read .feedback/comments.json (or the dir passed as argument). Collect the resolved comments — they are the verification targets. Note each one's page, anchor (snippet = the OLD state), text/thread (the asked-for NEW state), and shot if present (.feedback/shots/<id>.png — the pin-time BEFORE image; view it to ground what the element looked like when the reviewer pinned it).
  2. Markdown comments (sourceFile set): verify directly in the source — read the file, confirm the requested edit is present at the right spot (grep -n the new wording; confirm the old wording is gone). No browser needed.
  3. Web comments: ensure the page is being served (start the server in the background as the feedback skill does — same --dir/--proxy source the round used — if it isn't already). Then, per page:
    • With browser tools (load the chrome MCP tools via ToolSearch in ONE call; skip this path entirely if they're unavailable): open the page, and for each comment check the new state — page text via get_page_text/javascript_tool for wording changes; a screenshot judged against the ask for visual changes (scroll the element into view first). window.__kbfSelfTest() is a useful secondary signal for elements whose anchors should have survived (a styling-only improve).
    • Without browser tools: fetch the served HTML (curl) and check the new wording is present and the old is gone. Purely visual asks ("make this stand out more") can't be machine-verified this way — mark them needs human eyes, don't guess a verdict.
  4. Record every verdict on the comment itself so the file stays the audit trail. With the server running:
    • Confirmed: POST /__feedback/api/comments/<id>/reply with {"author":"agent","authorName":"verifier","text":"Verified: <what was checked and found>"}.
    • Not confirmed (change absent, or the WRONG element was changed): reply with what you found instead, then PATCH /__feedback/api/comments/<id> with {"status":"open"} — the pin flips back live and the comment re-enters the queue.
    • Unverifiable by machine: reply Needs human eyes: <why> and leave it resolved. (No server running: make the same edits in the JSON file directly.)
  5. Summarise for the user: ✅ verified / ❌ reopened (with what was found) / 👀 needs human eyes — grouped by page, with counts. Be faithful: a reopened comment is the skill doing its job, not an embarrassment to soften.

Read the full file on GitHub · 60 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 60 lines · 51 tokens per session scan A b156dafbbdf8

Subscribe to this mod's changes

verify is a skill published in the GitHub repository baskb/feedback-studio (2 stars, last pushed 5d ago), licensed MIT. It adds 51 tokens to every session and 1,027 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

md-review

Run the standard markdown review loop end-to-end with the mdxg-redline CLI: send a markdown document to a human reviewer, wait (via Bash polling) for the feedback.json they export, then apply their location-aware inline comments back into the markdown and revise it. Always use this skill when the user wants…

oubakiou/mdxg-redline · 178 tokens

processing-markdown

Processes Markdown files using mq, a jq-like query language for Markdown. Use when the user mentions Markdown processing, content extraction, document transformation, or mq queries.

harehare/mq · 36 tokens

markstream-react

Integrate the beta markstream-react package into a React 18+ or Next app. Use when Codex needs to add the React renderer, choose the root, next, or server entrypoint, import CSS correctly, choose between content and nodes, keep client boundaries safe, add renderer-local streamingComponents or htmlComponents, use…

Simon-He95/markstream-vue · 94 tokens

web-scraping

Fetches web pages and extracts structured data using mq's toolchain (mq-crawl for fetching/crawling/JS rendering, mq for HTML-to-Markdown selector-based extraction, http() for in-query requests). Use when the user wants to scrape a URL, pull structured data out of a webpage, crawl a site, or turn HTML into…

harehare/mq · 89 tokens

markstream-vue2-cli

Integrate markstream-vue2 into a Vue 2 Vue CLI or Webpack 4 app. Use when Codex needs Webpack 4-friendly setup, CDN worker fallbacks for Mermaid or KaTeX, dist/index.css imports, Vue 2 composition-api shims, or code block choices limited to stream-diffs or plain .

Simon-He95/markstream-vue · 83 tokens

markstream-svelte

Integrate the beta markstream-svelte package in Svelte 5 or SvelteKit apps. Use when Codex needs Svelte 5 runes, CSS and optional peers, smooth streaming, worker setup, renderer-local or scoped custom components, or SSR-safe boundaries. Svelte 4 is unsupported.

Simon-He95/markstream-vue · 67 tokens