Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add Abhinavbwj/AEC-Scholar/plugin install aec-scholarWrote 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/abhinavbwj/aec-scholar/latex-academic)<a href="https://agentmods.dev/skills/abhinavbwj/aec-scholar/latex-academic"><img src="https://agentmods.dev/badge/skills/abhinavbwj/aec-scholar/latex-academic/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/abhinavbwj/aec-scholar/latex-academic"><img src="https://agentmods.dev/badge/skills/abhinavbwj/aec-scholar/latex-academic.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.00126 | $0.01570 |
| Opus 5 | $0.00063 | $0.00785 |
| Sonnet 5 | $0.00025 | $0.00314 |
| Haiku 4.5 | $0.00013 | $0.00157 |
Grade A, and why
latex-academic 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 11d 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 — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Academic LaTeX — Working Guide
Use this to set up and troubleshoot LaTeX manuscripts for AEC/engineering venues. A starter template is in
article-template.tex next to this file (reference it with ${CLAUDE_PLUGIN_ROOT} or copy it for the user).
1. Choose the right document class (match the venue)
- Elsevier (Automation in Construction, Energy and Buildings, etc.):
elsarticle(\documentclass[ review,3p,times]{elsarticle}; usemodel5-names/elsarticle-numbib styles). - IEEE:
IEEEtran(\documentclass[journal]{IEEEtran}or[conference]). - ASCE: the
ascelike-newclass (\documentclass[Journal]{ascelike-new}), ASCE bib style. - Springer:
sn-jnl(Springer Nature) or legacysvjour3. - ACM:
acmart. - Generic/thesis:
article/report/bookor institutional thesis class;memoir/koma-scriptfor control.
Download the venue's official template first; don't hand-roll formatting a class already provides.
2. Minimal structure
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc} % (modern: use lualatex/xelatex + fontspec)
\usepackage[T1]{fontenc}
\usepackage{graphicx,booktabs,siunitx,amsmath,amssymb}
\usepackage[hidelinks]{hyperref}
\usepackage[capitalise]{cleveref}
\title{...}\author{...}\date{}
\begin{document}\maketitle
\begin{abstract}...\end{abstract}
\section{Introduction}...
\bibliographystyle{elsarticle-num}\bibliography{references}
\end{document}
3. Bibliography (two routes — don't mix)
- BibTeX + natbib (classic, what most publisher styles ship):
\usepackage[numbers]{natbib}(or author-year),\bibliographystyle{<style>.bst},\bibliography{references}; cite with\citep{}/\citet{}. - BibLaTeX + biber (modern, flexible):
\usepackage[style=ieee,backend=biber]{biblatex},\addbibresource{references.bib}, cite with\autocite{}/\textcite{}, print with\printbibliography. - Keep one
references.bib(seecitation-formatsfor entry hygiene: braces around acronyms{BIM},--page ranges, baredoi). Compile order (BibTeX):pdflatex → bibtex → pdflatex → pdflatex.
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.
- 11d ago First seen · 93 lines · 126 tokens per session scan A cd96befbd930
latex-academic is a skill published in the GitHub repository Abhinavbwj/AEC-Scholar (18 stars, last pushed 2mo ago), licensed MIT. It adds 126 tokens to every session and 1,570 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-08-30.
Other skills, from other repositories
clinical-case-report
Structured medical case presentation for clinical rounds, conferences, and documentation. Generates SOAP-format or narrative case reports with physiologically accurate vitals, labs, and evidence-based plans. Use when the brief mentions "case report", "case presentation", "SOAP note", "clinical case", "ward rounds"…
instrument-data-to-allotrope
Convert laboratory instrument output files (PDF, CSV, Excel, TXT) to Allotrope Simple Model (ASM) JSON format or flattened 2D CSV. Use this skill when scientists need to standardize instrument data for LIMS systems, data lakes, or downstream analysis. Supports auto-detection of instrument types. Outputs include full…
pydicom
Use pydicom to read, inspect, write, transform, and safely preflight local DICOM datasets and pixel data. Applies to DICOM metadata, transfer syntaxes, compression plugins, frames, private elements, JSON, and bounded de-identification review.
nature-experiment-log
A workflow for turning experiment notes, images, audio, or text into structured Markdown laboratory logs with YAML metadata. It can also organize raw attachments and optionally connect the logs to Feishu or Obsidian.
parsing-ccda-documents
Parses C-CDA / CCD XML clinical documents to extract human-readable section narrative plus coded entries, keyed by section LOINC codes and templateIds. Use before OpenMed processing when ingesting C-CDA R2.1 documents (CCD, Discharge Summary, H&P, Consultation Note) exported from an EHR and you need the narrative…
structuring-radiology-reports
Converts free-text radiology narratives into structured findings and impression — with measurements, laterality, anatomy, and follow-up recommendations — after OpenMed NER. Use when the user has a CT/MRI/X-ray/ultrasound/mammography report and needs the sections split (technique, comparison, findings, impression)…