canvas-lms-mcp: Skill for Cursor

.cursor/skills/jekyll-ui-web-designer/SKILL.md

jekyll-ui-web-designer is a skill for Cursor from sweeden-ttu/canvas-lms-mcp. It costs 61 tokens per session (1,157 once invoked), scanned A, original, MIT.

A skill for designing and building Jekyll and other static-site pages, including responsive layouts, navigation, themes, mathematical notation, diagrams, and slide decks. Jekyll is a tool that turns Markdown and templates into a static website.

In plain words
What is it for?
Use it to create Jekyll pages, layouts, GitHub Pages sites, KaTeX equations, Mermaid diagrams, or Reveal.js presentations.
Why use it?
It provides a site structure and rendering setup for common technical content, so pages, posts, equations, diagrams, and slides can work together.

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/jekyll-ui-web-designer/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 jekyll-ui-web-designer

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/sweeden-ttu/canvas-lms-mcp/jekyll-ui-web-designer"><img src="https://agentmods.dev/badge/skills/sweeden-ttu/canvas-lms-mcp/jekyll-ui-web-designer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,157 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.00061 $0.01157
Opus 5 $0.00030 $0.00579
Sonnet 5 $0.00012 $0.00231
Haiku 4.5 $0.00006 $0.00116

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

Security

Grade A, and why

jekyll-ui-web-designer 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 12d 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/jekyll-ui-web-designer/SKILL.md · 142 lines

How it starts

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

Jekyll UI & Web Designer (KaTeX + Mermaid + Reveal.js)

Create clean, functional layouts and content structures for Jekyll and other static page builders, with first-class support for KaTeX, Mermaid, and slide decks.

Quick Start (default deliverables)

When asked to “build a layout” or “make a site,” produce:

  • _layouts/ with default.html, page.html, post.html, slides.html
  • _includes/ with head.html, header.html, footer.html
  • _data/nav.yml for navigation
  • assets/ for CSS/JS, including Mermaid + KaTeX init
  • index.md and at least one example page/post
  • slides/ with at least one Reveal.js deck page

Assumptions (unless user overrides)

  • Use Jekyll with a minimal, dependency-light approach (CDN-based KaTeX/Mermaid/Reveal).
  • Use KaTeX for math; keep math in source as \( \) and \[ \] so it renders in both posts and slides.
  • Use client-side Mermaid: fenced code blocks with ```mermaid.

Site Structure Blueprint

Recommended structure:

.
├── _config.yml
├── _data/
│   └── nav.yml
├── _includes/
│   ├── head.html
│   ├── header.html
│   └── footer.html
├── _layouts/
│   ├── default.html
│   ├── page.html
│   ├── post.html
│   └── slides.html
├── _posts/
│   └── YYYY-MM-DD-title.md
├── assets/
│   ├── css/site.css
│   └── js/
│       ├── mermaid-init.js
│       └── katex-init.js
├── slides/
│   └── trustworthy-ai.html
└── index.md

Layout Implementation Guidelines

Core layout behavior

  • Keep a single default layout that defines the page chrome (header/nav/footer).
  • Use semantic HTML (main, nav, header, footer) and accessible patterns.
  • Use responsive CSS with a readable baseline:
    • max content width (e.g., 70–80ch)
    • comfortable line-height
    • good contrast

Navigation

Drive nav from _data/nav.yml, e.g.:

- title: Home
  url: /
- title: Blog
  url: /blog/
- title: Slides
  url: /slides/

KaTeX

  • Include KaTeX CSS/JS in _includes/head.html (CDN).
  • Add assets/js/katex-init.js that renders math in the document body.
  • Keep authoring format in Markdown/HTML as \( ... \) and \[ ... \].

Read the full file on GitHub · 142 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. 12d ago First seen · 142 lines · 61 tokens per session scan A 6100aec070ed

Subscribe to this mod's changes

jekyll-ui-web-designer is a skill published in the GitHub repository sweeden-ttu/canvas-lms-mcp (0 stars, last pushed 6mo ago), licensed MIT. It adds 61 tokens to every session and 1,157 once invoked, about $0.0003 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

chakra-ui-builder

Build responsive, accessible UI components and layouts using Chakra UI v3, install or configure Chakra UI in new and existing projects, and design scalable themes using tokens, semantic tokens, recipes, and slot recipes. Use this skill whenever a user asks to build, create, or generate any UI component, page, form…

chakra-ui/chakra-ui · 214 tokens

visual-ralph

Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ultragoal with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.

Yeachan-Heo/oh-my-codex · 52 tokens

frontend-ui-dark-ts

Build dark-themed React applications using Tailwind CSS with custom theming, glassmorphism effects, and Framer Motion animations. Use when creating dashboards, admin panels, or data-rich interfaces with a refined dark aesthetic.

microsoft/skills · 48 tokens

reveal-hover-effect

Build cursor-following spotlight reveals that expose a second aligned image through a soft radial mask. Use for hover-to-color, before-and-after, x-ray, material, texture, product-detail, and illustrated hero effects where a desaturated or embossed base image should remain visible while another treatment follows an…

MengTo/Skills · 66 tokens

frontend-visual-qa

Audits already-rendered web, landing-page, HTML deck/slide, browser tool/game, dashboard/admin, design-system, and desktop UIs using real-browser or native-app journeys, inspected screenshots, DOM geometry, responsive or projection viewports, and a bundled Playwright sweep. Use after UI implementation to find…

daymade/claude-code-skills · 145 tokens

prototype-web

A clickable, high-fidelity web product prototype with navigation, a hero section, feature cards, steps, social proof, and optional pricing. It is designed to resemble a finished landing page while remaining a prototype.

nexu-io/html-anything · 24 tokens