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 Lonsdale201/wp-agent-skills --skill jsf-custom-provider-querygit clone --depth 1 https://github.com/Lonsdale201/wp-agent-skillsWrote 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/lonsdale201/wp-agent-skills/jsf-custom-provider-query)<a href="https://agentmods.dev/skills/lonsdale201/wp-agent-skills/jsf-custom-provider-query"><img src="https://agentmods.dev/badge/skills/lonsdale201/wp-agent-skills/jsf-custom-provider-query/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/lonsdale201/wp-agent-skills/jsf-custom-provider-query"><img src="https://agentmods.dev/badge/skills/lonsdale201/wp-agent-skills/jsf-custom-provider-query.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00090 | $0.01293 |
| Opus 5 | $0.00045 | $0.00647 |
| Sonnet 5 | $0.00018 | $0.00259 |
| Haiku 4.5 | $0.00009 | $0.00129 |
Grade A, and why
jsf-custom-provider-query 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 — 164 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Custom providers and listing query types
These are different extension axes:
- A provider teaches JSF where a renderer lives and how to produce its AJAX replacement.
- A query type teaches the native JSF Listing how to fetch and identify items from another data source.
Prefer a query type when the native JSF Listing/card renderer is suitable. Create a provider only when the target renderer itself is unsupported.
Register a provider
The provider base class is loaded immediately before the registration action, so require the subclass inside that action:
add_action(
'jet-smart-filters/providers/register',
static function ( $manager ): void {
require_once __DIR__ . '/class-acme-provider.php';
$manager->register_provider(
Acme_JSF_Provider::class,
__DIR__ . '/class-acme-provider.php'
);
}
);
The subclass must implement get_name(), get_id(),
ajax_get_content(), and get_wrapper_selector(). Override
get_list_selector(), get_item_selector(),
get_wrapper_action(), in_depth(), id_prefix(), or is_data()
only when the renderer needs different behavior.
final class Acme_JSF_Provider extends Jet_Smart_Filters_Provider_Base {
public function get_name() {
return __( 'Acme Catalog', 'acme' );
}
public function get_id() {
return 'acme-catalog';
}
public function get_wrapper_selector() {
return '.acme-catalog';
}
public function get_item_selector() {
return '.acme-catalog__item';
}
public function get_wrapper_action() {
return 'replace';
}
public function in_depth() {
return true;
}
public function ajax_get_content() {
$settings = jet_smart_filters()->data->get_request_var( 'settings' );
$query = jet_smart_filters()->query->get_query_args();
acme_render_catalog(
is_array( $settings ) ? $settings : array(),
is_array( $query ) ? $query : array()
);
}
}
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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 · 164 lines · 90 tokens per session scan A b6ddc056fbf4
jsf-custom-provider-query is a skill published in the GitHub repository Lonsdale201/wp-agent-skills (22 stars, last pushed 2d ago), licensed MIT. It adds 90 tokens to every session and 1,293 once invoked, about $0.0005 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
airflow-plugins
Builds Airflow 3.1+ plugins that embed FastAPI apps, custom UI pages, React components, middleware, macros, and operator links directly into the Airflow UI. Use when building anything custom inside Airflow 3.1+ that involves Python and a browser-facing interface - creating an Airflow plugin, adding a custom UI page or…
nextjs-app-router
Provides patterns and code examples for building Next.js 16+ applications with App Router architecture. Use when creating projects with App Router, implementing Server Components and Client Components ("use client"), creating Server Actions for forms, building Route Handlers (route.ts), configuring caching with "use…
nextjs-data-fetching
Provides Next.js App Router data fetching patterns including SWR and React Query integration, parallel data fetching, Incremental Static Regeneration (ISR), revalidation strategies, and error boundaries. Use when implementing data fetching in Next.js applications, choosing between server and client fetching, setting…
nextjs-patterns
Next.js best practices, server components, app router patterns, caching strategies, and full-stack architecture.
yida-canvas-data-binding
A method for connecting a YidaCodeCanvas page to real data from Yida forms, connectors, or same-site APIs. YidaCodeCanvas is the component used to run custom React pages inside Yida.
openyida
A skill for creating and changing applications on 宜搭 (Yida), a Chinese low-code platform for building business apps with less hand-written code. It first checks the available tools, login status, project folder, and target application before making changes.