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-journal-browsegit 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-journal-browse)<a href="https://agentmods.dev/skills/yuanyuanma03/academic-research-skills/ieee-journal-browse"><img src="https://agentmods.dev/badge/skills/yuanyuanma03/academic-research-skills/ieee-journal-browse/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-journal-browse"><img src="https://agentmods.dev/badge/skills/yuanyuanma03/academic-research-skills/ieee-journal-browse.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.01455 |
| Opus 5 | $0.00024 | $0.00727 |
| Sonnet 5 | $0.00010 | $0.00291 |
| Haiku 4.5 | $0.00005 | $0.00145 |
Grade A, and why
ieee-journal-browse 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 13d 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 — 159 lines — stays where its author put it; the contents beside it link to each section on GitHub.
IEEE Xplore Journal/Conference Browse
Browse journal or conference information, metrics, and articles on IEEE Xplore.
URL Patterns
| Page | URL |
|---|---|
| Journal home | {BASE_URL}/xpl/RecentIssue.jsp?punumber={PUNUMBER} |
| Popular articles | {BASE_URL}/xpl/topAccessedArticles.jsp?punumber={PUNUMBER} |
| Current issue | {BASE_URL}/xpl/mostRecentIssue.jsp?punumber={PUNUMBER} |
| All issues | {BASE_URL}/xpl/issues?punumber={PUNUMBER} |
| About journal | {BASE_URL}/xpl/aboutJournal.jsp?punumber={PUNUMBER} |
| Early access | {BASE_URL}/xpl/tocresult.jsp?isnumber={ISNUMBER} |
| Conference home | {BASE_URL}/xpl/conhome/{PUNUMBER}/proceeding |
The punumber (publication number) is the unique identifier for journals and conferences on IEEE Xplore.
Common Journal PUNUMBERs
| Journal | punumber |
|---|---|
| IEEE Trans. Pattern Analysis and Machine Intelligence (TPAMI) | 34 |
| IEEE Trans. Neural Networks and Learning Systems (TNNLS) | 5962 |
| IEEE Trans. Image Processing (TIP) | 83 |
| IEEE Access | 6287639 |
| IEEE Trans. Information Forensics and Security (TIFS) | 10206 |
| IEEE Communications Surveys & Tutorials | 9739 |
| IEEE Internet of Things Journal | 6488907 |
If the user provides a journal name instead of a punumber, search for the journal first, or try constructing the URL from the name.
Steps
Step 1: Navigate to journal page
Use navigate_page with initScript:
navigate_page({
url: "{BASE_URL}/xpl/RecentIssue.jsp?punumber={PUNUMBER}",
initScript: "Object.defineProperty(navigator, 'webdriver', {get: () => undefined})"
})
For conferences, use:
{BASE_URL}/xpl/conhome/{PUNUMBER}/proceeding
Step 2: Extract journal info
Use evaluate_script with built-in waiting. Do NOT use wait_for.
async () => {
// Wait for journal content to load (up to 15s)
for (let i = 0; i < 30; i++) {
if (document.querySelector('h1') && document.querySelectorAll('a[href*="/document/"]').length > 0) break;
await new Promise(r => setTimeout(r, 500));
}
const result = {};
// Journal name
result.name = document.querySelector('h1')?.textContent?.trim() || '';
// Metrics
const metricsContainer = document.querySelector('[class*="publication-info"]') || document.body;
const allText = metricsContainer.innerText || '';
const ifMatch = allText.match(/([\d.]+)\s*Impact Factor/);
const efMatch = allText.match(/([\d.]+)\s*Eigenfactor/);
const aiMatch = allText.match(/([\d.]+)\s*Article Influence/);
const csMatch = allText.match(/([\d.]+)\s*CiteScore/);
result.impactFactor = ifMatch ? ifMatch[1] : '';
result.eigenfactor = efMatch ? efMatch[1] : '';
result.articleInfluence = aiMatch ? aiMatch[1] : '';
result.citeScore = csMatch ? csMatch[1] : '';
// Tabs available
const tabs = [...document.querySelectorAll('.tabs a, .nav-tabs a, [class*="tab-link"]')];
result.tabs = tabs.map(a => ({
text: a.textContent.trim(),
href: a.href || ''
})).filter(t => t.text).slice(0, 10);
// Latest/popular articles on the page
result.articles = [];
const articleLinks = document.querySelectorAll('a[href*="/document/"]');
const seen = new Set();
articleLinks.forEach(link => {
const title = link.textContent.trim();
const arnumber = link.href.match(/\/document\/(\d+)/)?.[1] || '';
if (title && arnumber && !seen.has(arnumber) && title.length > 10) {
seen.add(arnumber);
result.articles.push({ title: title.substring(0, 150), arnumber, url: link.href });
}
});
result.articles = result.articles.slice(0, 15);
// ISSN from page
const pageText = document.body.innerText;
const issnMatch = pageText.match(/ISSN[:\s]*([\d-X]+)/i);
result.issn = issnMatch ? issnMatch[1] : '';
// Publication number
const urlMatch = window.location.href.match(/punumber=(\d+)/);
result.punumber = urlMatch ? urlMatch[1] : '';
return result;
}
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.
- 13d ago First seen · 159 lines · 48 tokens per session scan A efa545c04db2
ieee-journal-browse 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,455 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
agent-platform-tuning
Agent Platform Model Tuning. Use when you need to fine-tune open models or Gemini models using Agent Platform infrastructure. Don't use for model training outside Agent Platform, model deployment to endpoints (use agent-platform-deploy), or managing serving endpoints (use agent-platform-endpoint-management).
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…
gke-alert-configuration
Configures alerting policies in Terraform for Google Kubernetes Engine (GKE) clusters, workloads, and services using PromQL and Google Cloud Managed Service for Prometheus. Use when writing, analyzing, validating, or deploying Terraform alerting policies to monitor GKE service latency, traffic, error rates using…
application-design-center-design-deploy
Processes GCP infrastructure design and deployment workflows within Application Design Center (ADC). Use when: - Designing GCP infrastructure with Terraform. - Validating local HCL. - Performing best-practice plan scans. - Importing templates to Application Design Center (ADC). - Deploying templates. - Troubleshooting…
cloud-run-basics
Manages Cloud Run services, jobs, and worker pools. Use when you need to deploy applications responding to HTTP requests (services), run event-triggered or scheduled tasks (jobs), or handle always-on pull-based background processing (worker pools).
gke-ai-troubleshooting-jobset-interruption
Diagnoses GKE JobSet interruptions, restarts, and preemptions for AI/ML training workloads autonomously. Use when troubleshooting JobSet restart loops, spot VM preemptions, node readiness failures, host VM issues, or coordinator worker crashes. Don't use for general GKE cluster creation, basic workload deployment, or…