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 skills add uk-agents/uk-legal-plugins --skill find-member-contributiongit clone --depth 1 https://github.com/uk-agents/uk-legal-pluginsWrote 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.
[](https://agentmods.dev/skills/uk-agents/uk-legal-plugins/find-member-contribution)<a href="https://agentmods.dev/skills/uk-agents/uk-legal-plugins/find-member-contribution"><img src="https://agentmods.dev/badge/skills/uk-agents/uk-legal-plugins/find-member-contribution/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/uk-agents/uk-legal-plugins/find-member-contribution"><img src="https://agentmods.dev/badge/skills/uk-agents/uk-legal-plugins/find-member-contribution.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00112 | $0.01250 |
| Opus 5 | $0.00056 | $0.00625 |
| Sonnet 5 | $0.00022 | $0.00250 |
| Haiku 4.5 | $0.00011 | $0.00125 |
Grade A, and why
find-member-contribution 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 9d 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.
How it starts
The opening of the file, as written. The whole thing — 107 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/find-member-contribution
- Resolve the member_id first: call
parliament_find_member(name=...). - Search Hansard by topic or bill name — NOT by member name:
parliament_search_hansard(query=...). - Retrieve contributions filtered by member:
parliament_get_debate_contributions(debate_ext_id=..., member_id=...). - If multiple debates returned, retrieve contributions from each and present in date order.
- Tag every contribution
[uk-legal MCP — Hansard]with a full column citation.
Purpose
Retrieve verbatim Hansard contributions by a named peer or MP for a specific debate, bill, or topic. The principal failure mode for this task is text-searching Hansard directly by member name — that returns debates where the name appears incidentally, not the member's own contributions. This skill addresses it: resolve member_id first, search by topic second, filter by member_id third.
Workflow
Source discipline: If a
uk-legal MCPtool returns empty or errored (status:empty/not_found/upstream_validation/ etc.), do NOT supplement from training data or web search. Report the empty result to the user with the tool'snext_steps/detailfield surfaced, and ask for clarifying information (different spelling of a name, a date range, the source URL) rather than fabricating a plausible-looking answer. Empty results are HONEST signal — not a failure mode to paper over.
Step 1 — Resolve the member_id
Call parliament_find_member(name=...) using the name or title the user provided.
- If multiple members match (e.g. "Lord Smith" matches several peers), list all candidates with their full parliamentary titles and ask the user to disambiguate.
- If
parliament_find_memberreturns empty ornot_found, the name or title may be incomplete or misspelled — ask the user for the member's full parliamentary title and do not proceed to Step 2 without a confirmed member_id.
Step 2 — Find the debate
Call parliament_search_hansard(query=...) using the BILL NAME or TOPIC the user
mentioned — NOT the member's name. The tool returns up to four debates with
debate_ext_id, sitting_date, and house.
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.
- 9d ago First seen · 107 lines · 112 tokens per session scan A ec3c94cb47d3
find-member-contribution is a skill published in the GitHub repository uk-agents/uk-legal-plugins (9 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 112 tokens to every session and 1,250 once invoked, about $0.0006 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.
Other skills, from other repositories
pgvector-semantic-search
Use this skill for setting up vector similarity search with pgvector for AI/ML embeddings, RAG applications, or semantic search. Trigger when user asks to: Store or search vector embeddings in PostgreSQL Set up semantic search, similarity search, or nearest neighbor search Create HNSW or IVFFlat indexes for vectors…
find-hypertable-candidates
Use this skill to analyze an existing PostgreSQL database and identify which tables should be converted to Timescale/TimescaleDB hypertables. Trigger when user asks to: Analyze database tables for hypertable conversion potential Identify time-series or event tables in an existing schema Evaluate if a table would…
postgres-hybrid-text-search
Use this skill to implement hybrid search combining BM25 keyword search with semantic vector search using Reciprocal Rank Fusion (RRF). Trigger when user asks to: Combine keyword and semantic search Implement hybrid search or multi-modal retrieval Use BM25/pgtextsearch with pgvector together Implement RRF (Reciprocal…
postgres
Use this skill for any PostgreSQL database work — table design, indexing, data types, constraints, extensions (pgvector, PostGIS, TimescaleDB), search, and migrations. Trigger when user asks to: Design or modify PostgreSQL tables, schemas, or data models Choose data types, constraints, indexes, or partitioning…
specify-factory
Decompose a multi-feature or multi-component specification into factory-consumable artifacts. Use this for high-complexity work — multiple features, three or more components, or parallel-eligible workstreams.
debug
Systematically diagnose and resolve bugs through conversational investigation and root cause analysis.