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 YuanyuanMa03/academic-research-skills --skill ieee-standards-searchgit clone --depth 1 https://github.com/YuanyuanMa03/academic-research-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/yuanyuanma03/academic-research-skills/ieee-standards-search)<a href="https://agentmods.dev/skills/yuanyuanma03/academic-research-skills/ieee-standards-search"><img src="https://agentmods.dev/badge/skills/yuanyuanma03/academic-research-skills/ieee-standards-search/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/yuanyuanma03/academic-research-skills/ieee-standards-search"><img src="https://agentmods.dev/badge/skills/yuanyuanma03/academic-research-skills/ieee-standards-search.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.00048 | $0.01529 |
| Opus 5 | $0.00024 | $0.00764 |
| Sonnet 5 | $0.00010 | $0.00306 |
| Haiku 4.5 | $0.00005 | $0.00153 |
Grade A, and why
ieee-standards-search 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 12d 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 — 150 lines — stays where its author put it; the contents beside it link to each section on GitHub.
IEEE SA Standards Search
Search the IEEE Standards Association website (standards.ieee.org) for IEEE and ANSI standards.
When to use
- User asks for an IEEE or ANSI standard by number (e.g. "C93.1", "IEEE 4")
- User searches for an IEC standard and needs the IEEE counterpart (e.g. IEC 60358 → IEEE C93.1)
- User wants to find standards on a specific topic (e.g. "power line carrier coupling")
ieee-searchon IEEE Xplore returned no results for a standards query
Important: This skill searches standards.ieee.org, NOT ieeexplore.ieee.org. These are different websites with different structures.
IEC ↔ IEEE Standard Cross-Reference
Common cross-references for the PLC / coupling capacitor / HV test domain:
| IEC Standard | IEEE Counterpart | Topic |
|---|---|---|
| IEC 60358-1/-2/-3/-4 | IEEE/ANSI C93.1-1999 + PC57.13.9 (Draft) | PLC coupling capacitors / CCVT |
| IEC 60481 | IEEE C93.4-2012 | PLC line-tuning equipment (30–500 kHz) |
| (line trap) | IEEE C93.3-2017 | PLC line traps (30–500 kHz) |
| (PLC application) | IEEE 643-1980 | PLC application guide |
| IEC 60060-1/-2 | IEEE 4-2013 | High-voltage testing techniques |
| IEC 60085 | IEEE P1 (Draft) + IEEE C57.12.60-2020 | Insulation thermal evaluation / thermal class |
| IEC 61869-5 | (no direct IEEE counterpart) | CVT additional requirements |
Steps
Step 1: Navigate to IEEE SA search
Use navigate_page to:
https://standards.ieee.org/search/?q={QUERY}
Where {QUERY} is the URL-encoded search terms from $ARGUMENTS.
Always include initScript:
initScript: "Object.defineProperty(navigator, 'webdriver', {get: () => undefined})"
Step 2: Extract results
Use evaluate_script with built-in waiting:
async () => {
// Wait for search results to load (up to 10s)
for (let i = 0; i < 20; i++) {
if (document.body.innerText.includes('result') || document.body.innerText.includes('Sorry')) break;
await new Promise(r => setTimeout(r, 500));
}
const pageText = document.body.innerText;
// Check for no results
if (pageText.includes('no results were found')) {
return { results: [], noResults: true, query: new URL(window.location.href).searchParams.get('q') || '' };
}
// Extract results by parsing the page structure
// IEEE SA search results are rendered as cards/sections with standard number + description
const results = [];
const resultBlocks = document.querySelectorAll('.search-results .result, article, .card');
if (resultBlocks.length > 0) {
resultBlocks.forEach((block, i) => {
const link = block.querySelector('a');
const title = link?.textContent?.trim() || '';
const href = link?.href || '';
const desc = block.textContent.trim().substring(title.length).trim().substring(0, 300);
if (title) {
results.push({ rank: i + 1, title, href, description: desc });
}
});
}
// Fallback: parse from page text if DOM selectors don't match
if (results.length === 0) {
// IEEE SA search results appear as standard number + title + description in page text
const lines = pageText.split('\n').map(l => l.trim()).filter(Boolean);
let current = null;
for (const line of lines) {
// Match patterns like "IEEE C93.1™-1999" or "IEEE 4™-2013" or "PC93.4™"
const stdMatch = line.match(/^(IEEE[\/\s].*?™.*?\d{4}|P[A-Z\d]+.*?™|IEEE\s+\d+.*?™.*?\d{4})/);
if (stdMatch) {
if (current) results.push(current);
current = { rank: results.length + 1, standardNumber: line, title: '', description: '' };
} else if (current && !current.title && line.length > 20 && !line.startsWith('Last modified')) {
current.title = line.substring(0, 200);
} else if (current && line.startsWith('Last modified')) {
current.lastModified = line;
} else if (current && current.title && !current.description && line.length > 30) {
current.description = line.substring(0, 300);
results.push(current);
current = null;
}
}
if (current) results.push(current);
}
// Extract result count
const countMatch = pageText.match(/(\d+)\s+results?\s+found/);
const resultCount = countMatch ? countMatch[1] + ' results found' : '';
return { results: results.slice(0, 20), resultCount, url: window.location.href };
}
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.
- 12d ago First seen · 150 lines · 48 tokens per session scan A 5bd1f7e4c4d0
ieee-standards-search is a skill published in the GitHub repository YuanyuanMa03/academic-research-skills (63 stars, last pushed 22d ago), licensed MIT. It adds 48 tokens to every session and 1,529 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-08-30.
Other skills, from other repositories
cnki-exp-search-automation
A browser-based automation tool for CNKI, the China National Knowledge Infrastructure research database, that runs advanced literature searches and collects result lists and abstracts.
gke-compute-classes
Configures, optimizes, and troubleshoots GKE ComputeClasses. Use when configuring Spot VMs with on-demand fallback, targeting specific accelerators (GPUs/TPUs) or machine families, restricting ComputeClass access, or debugging pending pods related to node pool auto-creation. Do not use for cluster-level Node Auto…
agent-platform-rag-engine-management
Manage and query Agent Platform RAG Engine Corpora and retrieve grounded contexts using the Google GenAI SDK. Use when listing RAG corpora or files, inspecting a corpus, retrieving contexts, or generating content grounded in a RAG corpus. Do not use for standard database queries (use SQL/Spanner skills), Google…
gke-reliability
Improves GKE workload reliability, using PDBs, health probes, and topology spread constraints. Use when configuring GKE workload reliability, setting up PDBs, or configuring GKE health probes (liveness, readiness, startup). Don't use for disaster recovery setup or full cluster backups (use gke-backup-dr instead).
agent-platform-model-registry
Agent Platform Model Registry Management. Use when you need to upload, list, describe, update, or delete machine learning models (and their versions) in the Agent Platform Model Registry. Don't use for model training, model deployment to endpoints, or managing non-Agent Platform models.
google-cloud-solution-agentic-analytics-spark-knowledge-catalog
Discovers requirements and generates guidance to design and deploy a governed, secure agentic-analytics solution for data that's distributed across Google Cloud, other cloud providers, or on-premises. Data that's outside Google Cloud (such as data from Databricks, Snowflake, Salesforce, SAP, or Oracle systems) is…