beamer-skill copilot-instructions.md

beamer-skill copilot-instructions.md is an instructions file for GitHub Copilot from JaxonJP/beamer-skill. It costs 1,539 tokens per session, scanned A, original, MIT.

A workflow for creating and checking academic slide decks with Beamer, a LaTeX system for presentations. It covers writing slides, compiling them into a presentation, and reviewing their content and layout.

In plain words
What is it for?
Use it to create lectures, compile presentations, proofread slides, check visual layout, review teaching quality, inspect TikZ diagrams, and extract figures from research-paper PDFs.
Why use it?
It gives the agent a repeatable process for finding errors, layout problems, unclear teaching material, and structural issues in Beamer files.

Instructions file for GitHub Copilot

Install

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.

agentmods
npx agentmods add instructions/jaxonjp/beamer-skill/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/JaxonJP/beamer-skill

Made for: GitHub Copilot.

Wrote 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.

agentmods badge for beamer-skill copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/jaxonjp/beamer-skill/copilot-instructions.svg)](https://agentmods.dev/instructions/jaxonjp/beamer-skill/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/jaxonjp/beamer-skill/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/jaxonjp/beamer-skill/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,539 This file is loaded in full into every session.
When invoked 1,539 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.01539 $0.01539
Opus 5 $0.00770 $0.00770
Sonnet 5 $0.00308 $0.00308
Haiku 4.5 $0.00154 $0.00154

Measured 4d ago against content hash d3ab2b8aaec3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

beamer-skill copilot-instructions.md 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 4d 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.

.github/copilot-instructions.md · 106 lines

How it starts

The opening of the file, as written. The whole thing — 106 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Beamer Slide Workflow — GitHub Copilot Instructions

You are an expert Beamer LaTeX assistant. Follow these rules when creating, editing, reviewing, or compiling academic presentations.

Core Workflow

create → sync/compile → review → polish → verify

Actions

Action Description
create [topic] Iterative lecture creation: material analysis → needs interview → structure plan → draft → quality loop
compile [file] Prefer local XeLaTeX when available; otherwise ask whether to install local TeX dependencies or sync to USTC LaTeX (default https://latex.ustc.edu.cn) for remote compile diagnostics
review [file] Read-only proofreading (grammar, typos, overflow, consistency, academic quality)
audit [file] Visual layout audit (overflow, fonts, boxes, spacing)
pedagogy [file] Pedagogical review with 13 validation patterns
tikz [file] TikZ diagram review
excellence [file] Comprehensive multi-dimensional quality review
validate [file] Structural validation against constraints
extract-figures [pdf] Extract figures from paper PDFs for slides

Default Preamble

\documentclass[aspectratio=169,10pt]{beamer}
\usetheme{Madrid}
\usecolortheme{default}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{footline}[frame number]

\usepackage{amsmath,amssymb,amsthm,booktabs,mathtools}
\usepackage{stmaryrd}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{tikz}
\usetikzlibrary{arrows.meta,positioning,decorations.pathreplacing}

% Semantic colors (colorblind-safe)
\definecolor{positive}{HTML}{0173B2}
\definecolor{negative}{HTML}{DE8F05}
\definecolor{emphasis}{HTML}{029E73}
\definecolor{neutral}{gray}{0.55}
\newcommand{\pos}[1]{\textcolor{positive}{#1}}
\newcommand{\con}[1]{\textcolor{negative}{#1}}
\newcommand{\HL}[1]{\textcolor{emphasis}{#1}}

Hard Rules (Non-Negotiable)

  1. No overlays — never \pause, \onslide, \only, \uncover. Use multiple slides + color emphasis.
  2. Max 2 colored boxes per slide.
  3. Motivation before formalism — "Why?" before "What?".
  4. Worked example within 2 slides of every definition.
  5. XeLaTeX on the platform — prefer XeLaTeX, never pdflatex.
  6. Beamer .tex is the single source of truth.
  7. Verify after every task — sync to the remote platform, inspect remote compile status/logs, open the resulting PDF.
  8. Telegraphic style — keyword phrases, not full sentences.
  9. Every slide earns its place — must contain formula, diagram, table, theorem, or algorithm.
  10. Box-interior overflow guard — limit box content to one display equation OR 2-3 short bullets. Never \qquad inside boxes. Beamer suppresses overflow warnings inside blocks — always visually verify.
  11. Reference slide — second-to-last (before Thank You), \begin{thebibliography}{9} with \small.
  12. Color contrast ≥ 4.5:1 (WCAG AA). Never red+green binary contrasts. Use \pos{}, \con{}, \HL{}.
  13. Never use \tiny for user-facing content.
  14. Backup slides — 3-5 after Thank You with \appendix. Not counted in timing.
  15. Columns: \begin{columns}[T], comparison 0.48+0.48, figure+text 0.50+0.45. Never nest.

Read the full file on GitHub · 106 lines

Changes

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.

  1. 4d ago First seen · 106 lines · 1,539 tokens per session scan A d3ab2b8aaec3

Subscribe to this mod's changes

beamer-skill copilot-instructions.md is an instructions file published in the GitHub repository JaxonJP/beamer-skill (23 stars, last pushed 3mo ago), licensed MIT. It adds 1,539 tokens to every session, about $0.0077 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.

Related

Other instructions, from other repositories

book-to-skill CLAUDE.md

Claude Code instructions for virgiliojr94/book-to-skill, a project described as: Turn any technical book PDF into a Claude Code skill — ready to study, reference, and use while you work.

virgiliojr94/book-to-skill · 30 tokens

textbook-to-note AGENTS.md

Instructions for drpwchen/textbook-to-note, covering agents.md — instructions for your ai coding agent, what you're setting up, step 1: which profile is the user setting up?, step 1.1: understand the user's situation and step 2: install dependencies.

drpwchen/textbook-to-note · 4,177 tokens

agent-edu-reviewkit AGENTS.md

Instructions for lijiawei255/agent-edu-reviewkit, covering agent 指令, 项目概述, 主要技能, agent 平台兼容性 and opencode 适配(p1).

lijiawei255/agent-edu-reviewkit · 2,157 tokens

agent-edu-reviewkit CLAUDE.md

Instructions for lijiawei255/agent-edu-reviewkit, covering claude.md, project structure, how the skill works, multi-agent support and key conventions.

lijiawei255/agent-edu-reviewkit · 1,145 tokens

math-beamer-slides-skill math-beamer.instructions.md

Instructions for YixuanYang00/math-beamer-slides-skill, covering math beamer slides instructions, reference routing, core rules and verification.

YixuanYang00/math-beamer-slides-skill · 875 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens