canvas-lms-mcp: Skill for Cursor

.cursor/skills/latex-blog-series-publisher/SKILL.md

latex-blog-series-publisher is a skill for Cursor from sweeden-ttu/canvas-lms-mcp. It costs 71 tokens per session (866 once invoked), scanned A, original, MIT.

A skill that turns one LaTeX document into a linked series of Jekyll blog posts, while preserving mathematical notation and Mermaid diagrams. LaTeX is a document-writing system often used for technical and academic material.

In plain words
What is it for?
Use it for lecture notes, technical documents, or other LaTeX sources that need to become a multi-part Jekyll blog series.
Why use it?
It breaks long notes into focused posts and keeps their structure, equations, navigation, and cross-links consistent.

Skill for Cursor

Written for Cursor: installed under .cursor/.

This is sweeden-ttu/canvas-lms-mcp's own configuration. It tells Cursor how to work on canvas-lms-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything canvas-lms-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to sweeden-ttu/canvas-lms-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/sweeden-ttu/canvas-lms-mcp/main/.cursor/skills/latex-blog-series-publisher/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/sweeden-ttu/canvas-lms-mcp

Made for: Cursor.

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 latex-blog-series-publisher

README.md
[![agentmods](https://agentmods.dev/badge/skills/sweeden-ttu/canvas-lms-mcp/latex-blog-series-publisher/github.svg)](https://agentmods.dev/skills/sweeden-ttu/canvas-lms-mcp/latex-blog-series-publisher)
Your own site
<a href="https://agentmods.dev/skills/sweeden-ttu/canvas-lms-mcp/latex-blog-series-publisher"><img src="https://agentmods.dev/badge/skills/sweeden-ttu/canvas-lms-mcp/latex-blog-series-publisher/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.

agentmods 80×15 button for latex-blog-series-publisher

Your own site · 80×15
<a href="https://agentmods.dev/skills/sweeden-ttu/canvas-lms-mcp/latex-blog-series-publisher"><img src="https://agentmods.dev/badge/skills/sweeden-ttu/canvas-lms-mcp/latex-blog-series-publisher.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 866 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00071 $0.00866
Opus 5 $0.00036 $0.00433
Sonnet 5 $0.00014 $0.00173
Haiku 4.5 $0.00007 $0.00087

Measured 11d ago against content hash ea49731e4ea5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

latex-blog-series-publisher 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.

.cursor/skills/latex-blog-series-publisher/SKILL.md · 91 lines

What it actually says

LaTeX → Blog Series Publisher (Jekyll + KaTeX + Mermaid)

Turn one LaTeX source into a navigable blog series with consistent structure, cross-links, and rendering that works in Jekyll with KaTeX and Mermaid.

Inputs to request (if missing)

  • LaTeX source (.tex) and any assets (figures/bib)
  • Target site location (Jekyll root) and desired output folder (_posts/ vs notes/)
  • Desired series title/slug, and target number of parts (or “auto by sections”)
  • Audience level (intro / advanced / mixed)

Core workflow

  1. Parse the LaTeX outline

    • Extract \section, \subsection, \paragraph headings.
    • Identify special blocks: equations, code listings, tables, figures, references.
  2. Design the series plan

    • Map major sections to posts (“Part 1…N”) and keep each post focused.
    • Add a consistent per-post structure:
      • Context + learning goals
      • Main content
      • Worked example
      • Summary + exercises (optional)
  3. Convert content to Markdown suitable for Jekyll

    • Preserve math delimiters as \( \) and \[ \] (KaTeX renders these in the browser).
    • Convert LaTeX lists to Markdown lists.
    • Convert \texttt{} / \verb to backticks.
    • Convert \begin{verbatim} / listings to fenced code blocks.
  4. Handle figures/tables

    • If images are present, reference them under an assets folder (e.g., assets/img/series-slug/).
    • If images are not available, insert placeholders:
      • > TODO: Add figure “...” (from LaTeX Figure X).
  5. Mermaid extraction

    • If the LaTeX uses a convention like \begin{mermaid}...\end{mermaid} (or commented markers), convert to fenced Mermaid:
      • graph TD
        ...
        
    • If no Mermaid exists, propose diagrams where it clarifies architecture or workflows.
  6. Create series navigation

    • Add front matter fields like series, part, and optional prev_url/next_url.
    • Add a “Series contents” block at the top of each post linking to all parts.

Jekyll post template (default)

Use this front matter:

---
layout: post
title: "Series Title — Part X: Specific Topic"
date: 2026-01-30
tags: [trustworthy-ai]
series: series-slug
part: 1
description: "One-sentence summary of this part."
---

Then structure:

  • ## Why this matters
  • ## Key ideas
  • ## Worked example
  • ## Common pitfalls
  • ## Summary
  • ## Exercises (optional)

Quality bar

  • No “wall of text”: break up long sections with headings and examples
  • Each post has a clear learning goal and recap
  • Math renders with KaTeX (keep delimiters consistent)
  • Mermaid diagrams render (use fenced blocks)
  • Internal links work, and series ordering is explicit
  • Technical claims have either a derivation, citation, or an example

What to return to the user

  • A complete list of generated Markdown files and where they should live in the Jekyll repo
  • Any required site additions (KaTeX/Mermaid includes if not already present)
  • A short “edit map” describing which LaTeX sections landed in which post
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. 11d ago First seen · 91 lines · 71 tokens per session scan A ea49731e4ea5

Subscribe to this mod's changes

latex-blog-series-publisher is a skill published in the GitHub repository sweeden-ttu/canvas-lms-mcp (0 stars, last pushed 6mo ago), licensed MIT. It adds 71 tokens to every session and 866 once invoked, about $0.0004 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-31.

Related

Other skills, from other repositories

canvas-cli

Manage Canvas LMS (https://www.instructure.com/canvas) from the terminal with the canvas CLI — courses, assignments, submissions and grading, modules, pages, quizzes, discussions, announcements, users, enrollments, sections, files, and analytics. Use this whenever the user wants to list or create assignments, grade…

jjuanrivvera/canvas-cli · 113 tokens

canvas-admin-roster

Admin skill for walking the Canvas account hierarchy: list accounts and sub-accounts, see courses and users under each, look up which canned reports are available, and enroll or remove users from a specific course — one action at a time. Trigger phrases include "admin roster", "list accounts", "sub accounts", "account…

bruchris/canvas-lms-mcp · 0 tokens

canvas-accessibility-sweep

Educator and learning-designer skill for a pre-launch accessibility and broken-link sweep of a Canvas course. Walks the structural accessibility audit and the link audit over a course's pages, assignments, syllabus, announcements, and (optionally) quizzes, then produces a prioritised remediation list you can work…

bruchris/canvas-lms-mcp · 131 tokens

canvas-office-hours

Educator skill for running office hours through Canvas Scheduler appointment groups. Create and publish sign-up slots for a course, list existing groups and their time slots, and see which students (or student groups) have reserved — one confirmed action at a time. Trigger phrases include "office hours", "appointment…

bruchris/canvas-lms-mcp · 103 tokens

canvas-peer-review-tracker

Educator skill for tracking peer-review assignments in Canvas. Lists who has been asked to review whom, who has submitted versus who is still pending, and lets you assign new reviewers or send reminder messages — one student at a time. Trigger phrases include "peer reviews", "who hasn't done their peer review", "peer…

bruchris/canvas-lms-mcp · 92 tokens

canvas-course-pulse

Educator skill for tracking week-over-week course health trends in Canvas. Surfaces assignment performance trends, login activity, engagement gaps, and struggling students across a longer time horizon than a daily check. Trigger phrases include "course pulse", "course health", "course trends", "week-over-week…

bruchris/canvas-lms-mcp · 90 tokens