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.
npx agentmods add skills/baskb/feedback-studio/verifynpx skills add baskb/feedback-studio --skill verifygit clone --depth 1 https://github.com/baskb/feedback-studioWhat 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.
| Model | Per session | Once 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 |
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 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
- Read
.feedback/comments.json(or the dir passed as argument). Collect theresolvedcomments — they are the verification targets. Note each one'spage,anchor(snippet = the OLD state),text/thread(the asked-for NEW state), andshotif present (.feedback/shots/<id>.png— the pin-time BEFORE image; view it to ground what the element looked like when the reviewer pinned it). - Markdown comments (
sourceFileset): verify directly in the source — read the file, confirm the requested edit is present at the right spot (grep -nthe new wording; confirm the old wording is gone). No browser needed. - Web comments: ensure the page is being served (start the server in the background
as the
feedbackskill does — same--dir/--proxysource 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_toolfor 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-onlyimprove). - 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.
- 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
- Record every verdict on the comment itself so the file stays the audit trail.
With the server running:
- Confirmed:
POST /__feedback/api/comments/<id>/replywith{"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.)
- Confirmed:
- 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.
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.
- 2d ago First seen · 60 lines · 51 tokens per session scan A b156dafbbdf8
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.
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…
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.
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…
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…
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 .
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.