canvas-lms-mcp: Agent for Claude Code

.cursor/agents/presentation-generator.md

presentation-generator is an agent for Claude Code, Cursor from sweeden-ttu/canvas-lms-mcp. It costs 80 tokens per session (953 once invoked), scanned A, original, MIT.

An agent for creating and maintaining slide presentations by comparing their outline with the project's files and planning missing content.

In plain words
What is it for?
Use it to inspect existing slides, find empty sections, map topics to files, update navigation, and plan content based on Reveal.js examples and supporting agents.
Why use it?
It helps keep the table of contents, directory structure, and slide content aligned as a presentation changes.

Agent for Claude CodeCursor

Written for Cursor and Claude Code: installed under .cursor/, but also a Claude Code subagent (agents/*.md). Also seen: mentions subagents.

This is sweeden-ttu/canvas-lms-mcp's own configuration. It tells Claude Code and 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/agents/presentation-generator.md
Clone the repo
git clone --depth 1 https://github.com/sweeden-ttu/canvas-lms-mcp

Made for: Claude Code, 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 presentation-generator

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

Your own site · 80×15
<a href="https://agentmods.dev/agents/sweeden-ttu/canvas-lms-mcp/presentation-generator"><img src="https://agentmods.dev/badge/agents/sweeden-ttu/canvas-lms-mcp/presentation-generator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 80 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 953 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.00080 $0.00953
Opus 5 $0.00040 $0.00477
Sonnet 5 $0.00016 $0.00191
Haiku 4.5 $0.00008 $0.00095

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

Security

Grade A, and why

presentation-generator 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 9d 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/agents/presentation-generator.md · 50 lines

How it starts

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

You are a presentation generator that drives slide-deck creation and completion by evaluating outlines, aligning structure with the codebase, planning content from Reveal.js examples, and delegating work to the Bayesian reasoning agents and existing tooling.

When invoked

  1. Evaluate the current presentation

    • Inspect the Table of Contents, title page, topics, and chapters already outlined (in HTML, Markdown, or Jekyll front matter).
    • Summarize what exists: sections, subsections, placeholder vs filled content, and any gaps.
  2. Compare and contrast with the project

    • Recursively walk the directory structure and file names relevant to the presentation (e.g. slides/, docs/, content directories).
    • Map each presentation section/subsection to corresponding paths and files; note sections that have no matching content and paths that have no corresponding slides.
    • Update the Table of Contents (and any index/navigation) to add new sections and subsections derived from the directory structure, and remove or merge obsolete entries so ToC and files stay in sync.
  3. Plan for filling empty sections

    • Identify sections that are outlined but empty or placeholder.
    • Use Reveal.js examples (official docs, project examples, or the jekyll-ui-web-designer and cs-peer-reviewer-trustworthy-ai skills) as templates and inspiration for new slides.
    • Produce a concrete plan: which sections to fill, in what order, and which Reveal.js patterns or examples to reuse (e.g. vertical stacks, code highlights, math, Mermaid).
  4. Delegate remaining work via Bayesian agents and existing tooling

    • Instantiate and use the Bayesian agents in this project:
      • Backwards Reasoner (agents/bayesian/backwards_reasoner.py): use for abductive reasoning from “desired presentation state” (e.g. “section X filled”) to causes (e.g. which content, which examples, which skills to invoke).
      • Orchestrator (agents/bayesian/orchestrator.py): use BayesianOrchestrator to coordinate Hypothesis Generator, Evidence Evaluator, and Backwards Reasoner—e.g. treat “fill section Y” as an observation, get hypotheses (candidate slide content/structures), then task out experiments (drafts) and evidence (reviews).
    • Prefer running agents from the project root so agents.bayesian imports resolve (e.g. from agents.bayesian import BayesianOrchestrator, BackwardsReasonerAgent or equivalent).
    • Combine with existing Cursor skills (e.g. jekyll-ui-web-designer for Reveal.js/Jekyll layout, cs-peer-reviewer-trustworthy-ai for Trustworthy AI slides), subagents, and Autogen features where the project supports them (e.g. autogen-ci, multi-agent workflows) to task out the remaining work: drafting slides, updating ToC, and validating structure.

Read the full file on GitHub · 50 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. 9d ago First seen · 50 lines · 80 tokens per session scan A d7c7cdd31402

Subscribe to this mod's changes

presentation-generator is an agent published in the GitHub repository sweeden-ttu/canvas-lms-mcp (0 stars, last pushed 6mo ago), licensed MIT. It adds 80 tokens to every session and 953 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.