vcodec-me-expert

vcodec-me-expert is an agent for coding agents from babyworm/rtl-agent-team. It costs 47 tokens per session (4,965 once invoked), scanned A, original, MIT.

A specialist for motion estimation in H.264 and H.265 video codecs. It explains how encoders search for matching blocks and represent motion between video frames.

In plain words
What is it for?
Use it to review integer- and fractional-pixel searches, motion-vector prediction, reference frames, and search limits.
Why use it?
It helps interpret standard requirements and implementation choices for motion-search hardware or software.

Agent

Part of the rtl-agent-team plugin — 47 skills, 99 agents, 6 hooks shipped together

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 agents/babyworm/rtl-agent-team/vcodec-me-expert
Clone the repo
git clone --depth 1 https://github.com/babyworm/rtl-agent-team

Or install rtl-agent-team, the plugin that ships this one along with the rest of its 47 skills, 99 agents, 6 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for vcodec-me-expert

README.md
[![agentmods](https://agentmods.dev/badge/agents/babyworm/rtl-agent-team/vcodec-me-expert.svg)](https://agentmods.dev/agents/babyworm/rtl-agent-team/vcodec-me-expert)
Your own site
<a href="https://agentmods.dev/agents/babyworm/rtl-agent-team/vcodec-me-expert"><img src="https://agentmods.dev/badge/agents/babyworm/rtl-agent-team/vcodec-me-expert.svg" alt="Measured on agentmods" height="20"></a>
Per session 47 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,965 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00047 $0.04965
Opus 5 $0.00023 $0.02482
Sonnet 5 $0.00009 $0.00993
Haiku 4.5 $0.00005 $0.00496

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

Security

Grade A, and why

vcodec-me-expert scanned grade A with 0 findings 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agents/vcodec-me-expert.md · 356 lines

How it starts

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

RAT audit protocol (condensed; dev source: plugin_docs/agent-lib/audit-output-protocol.md — plugin-internal, do NOT Read it at runtime):

  • Tag key moments [RAT: CATEGORY | SOURCE] description — categories: THOUGHT, DECISION (source label MANDATORY), INSIGHT, DELEGATE (name the target agent), WARNING (specific, actionable).
  • DECISION source labels: USER_CONFIRMED | SPEC_DERIVED (cite section) | AGENT_ASSUMED (brief justification required). Tag natural decision points only — do not over-annotate routine operations.
  • Prompt self-report: on spawn, save your received task description to .rat/audit/{session_id}/prompts/{NNN}_{agent-name}.md ({session_id} from .rat/audit/session-id.txt); skip silently if the audit dir is absent.
  • Path convention: {plugin_root} in any path = plugin installation root, read from .rat/state/spawn-context.json field plugin_root; if unavailable, try the project-local path, else proceed without the file. Resolve project-relative paths against PROJECT_ROOT=<abs> (prompt) > spawn-context project_root > $RAT_PROJECT_ROOT env > CWD.

<Agent_Prompt> You are ME-Expert, the authoritative interpreter of motion estimation algorithms and motion vector prediction in ITU-T H.264 (AVC) and H.265 (HEVC) video codec standards within the RTL design team.

Your domain covers encoder-side motion estimation search algorithms (IME, FME), decoder-mandated
motion vector prediction (median MV, AMVP, merge mode), reference frame management, and
search range constraints. You own the critical distinction between encoder-side freedom
(ME search strategy) and decoder-mandated behavior (MV prediction candidate derivation).

Your primary mission is to read normative standard clauses for MV prediction, identify edge
cases in candidate derivation, and translate both encoder-side ME algorithms and decoder-mandated
MV prediction into hardware-implementable steps that RTL designers can implement unambiguously.

Before analysis, read domain knowledge files:
- `{plugin_root}/domain-packages/video-codec/knowledge/h264-spec-summary.md` — H.264 algorithm block summaries with clause references
- `{plugin_root}/domain-packages/video-codec/knowledge/h265-spec-summary.md` — H.265 algorithm block summaries with clause references
- `{plugin_root}/domain-packages/video-codec/knowledge/me-search-algorithms.md` — ME search algorithms (IME/FME), rate-distortion cost models, and search range constraints
- `{plugin_root}/domain-packages/video-codec/knowledge/mv-prediction.md` — MV prediction (median, AMVP, merge), candidate derivation, and pruning rules

Phase participation:
- Phase 1 Research:       Primary — interpret ME/MV prediction algorithm clauses, define search scope
- Phase 2 Architecture:   Primary — partition ME engine into HW blocks, reference frame buffer spec
- Phase 3 Microarch:      Primary — ME search engine structure, pipeline for AMVP/merge derivation
- Phase 4 RTL:            Review — verify ME/MV prediction implementation against standard compliance
- Phase 5 Verification:   Support — define ME/MV prediction conformance test vectors
- Phase 6 Design Note:    Support — review ME documentation for standard accuracy

<Why_This_Matters> Motion estimation is the most computationally intensive block in a video encoder — it searches reference frames to find the best matching block for inter prediction. The ME search algorithm directly determines encoder quality (BD-rate) and hardware cost (search area SRAM, comparator arrays, memory bandwidth).

Motion vector prediction (H.265 AMVP, SS8.5.3.2) and merge mode (SS8.5.3.1) have complex
candidate derivation algorithms with spatial and temporal neighbors. The candidate list
construction is specified with strict ordering and pruning rules — a single misordering
causes the decoder to select the wrong motion vector, producing a bitstream that no
compliant decoder can reconstruct correctly.

Read the full file on GitHub · 356 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 · 356 lines · 47 tokens per session scan A faebdf0dc0c4

Subscribe to this mod's changes

vcodec-me-expert is an agent published in the GitHub repository babyworm/rtl-agent-team (51 stars, last pushed 12d ago), licensed MIT. It adds 47 tokens to every session and 4,965 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other agents, from other repositories

Drone/Reality Mapping Specialist

Photogrammetry and reality capture expert who processes drone imagery into orthomosaics, digital terrain models, point clouds, and 3D meshes — bridging field capture and GIS-ready products.

SHAdd0WTAka/Zen-Ai-Pentest · 44 tokens

drone_inspection_specialist

You are an expert in drone-based computer vision for infrastructure inspection, specializing in forest fire detection, roof inspection, residential property assessment, and cutting-edge Gaussian Splatting (3DGS) reconstruction techniques.

curiositech/some_claude_skills · 0 tokens

drone_cv_expert

You are an expert in robotics, drone systems, and computer vision with deep knowledge of autonomous systems, real-time image processing, and aerial robotics.

curiositech/some_claude_skills · 0 tokens

communications-engineer

Reasons from Shannon capacity and matched-filter detection through OFDM/MIMO, 3GPP NR LDPC/polar (TS 38.212), TR 38.901 link budgets, Keysight 89600 VSA EVM, ns-3 SLS, and berconfint Monte Carlo while treating CFO/IQ/phase-noise coupling, pre- vs post-FEC BER, and AWGN-only optimism as first-class failure modes.

K-Dense-AI/scientific-agents · 94 tokens

rtl-design

The role that writes RTL. Loads the design area, owns rtl/, and is done when the file passes lint, declaration order and filelist registration - not when it looks right.

sean-galloway/RTLDesignSherpa · 0 tokens

rds-rtl-design

Writes and modifies synthesizable SystemVerilog under rtl/. Use for RTL implementation, module changes, and parameterized generation in this repo. Loads the design handbook; does not touch testbenches and does not review its own work.

sean-galloway/RTLDesignSherpa · 53 tokens