Vuepress Plume Markdown logo

Vuepress Plume Markdown

Community
pengzhanbo
vuepress-plume-markdown

Help users write markdown files with VuePress Plume theme extensions, including containers, charts, embeds, code features, and all markdown enhancements. Invoke when user writes markdown content or asks about Plume's markdown syntax.

Overview

Publisherpengzhanbo
Repositoryvuepress-theme-plume
Skill namevuepress-plume-markdown
Stars
493
Forks
125
Bundled files
40
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 40 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by pengzhanbo on GitHub. Read the source before you install it.

Installation

Install the Vuepress Plume Markdown AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/pengzhanbo/vuepress-theme-plume.git /tmp/vuepress-theme-plume
mkdir -p .claude/skills
cp -r /tmp/vuepress-theme-plume/skills/vuepress-plume-markdown .claude/skills/vuepress-plume-markdown
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Vuepress Plume Markdown in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Vuepress Plume Markdown on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Vuepress Plume Markdown is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

VuePress Plume Markdown Skill

This skill provides assistance with VuePress Plume markdown extensions, charts, embeds, and code features. It helps users write rich content using the features provided by the theme.

When to Invoke

  • Writing content in Markdown files
  • Using advanced features like containers, code groups, or diagrams
  • Embedding media or external content
  • Configuring code block features (highlight, focus, diff, etc.)
  • Using markdown enhancement syntax

Documentation Sources

Enabling Features

Most markdown extensions need to be enabled in .vuepress/config.ts:

ts
export default defineUserConfig({
  theme: plumeTheme({
    markdown: {
      // Containers
      hint: true, // Info, tip, warning, caution containers (default: true)
      alert: true, // GitHub-style alerts (default: true)

      // Code
      codeTabs: true, // Code block tabs (default: true)
      tabs: true, // General tabs (default: true)

      // Content
      annotation: false, // Inline annotations
      abbr: false, // Abbreviations
      mark: 'eager', // Mark/highlight text (default: 'eager')

      // Layout
      fileTree: true, // File tree container (default: true)
      flex: false, // Flex layout
      collapse: false, // Collapsible sections
      chat: false, // Chat dialog
      timeline: false, // Timeline
      field: false, // Field container
      table: false, // Enhanced table container
      demo: false, // Demo container

      // Embeds
      pdf: false, // PDF embed
      bilibili: false, // Bilibili video
      youtube: false, // YouTube video
      artPlayer: false, // ArtPlayer video
      audioReader: false, // Audio

      // Code demos
      codepen: false, // CodePen
      codeSandbox: false, // CodeSandbox
      jsfiddle: false, // JSFiddle
      repl: false, // REPL

      // Charts
      chartjs: false, // Chart.js
      echarts: false, // ECharts
      mermaid: false, // Mermaid
      markmap: false, // Markmap
      plantuml: false, // PlantUML
      flowchart: false, // Flowchart

      // Other
      npmTo: false, // npm/yarn/pnpm switcher
      caniuse: false, // Can I Use embed
      icon: { provider: 'iconify' }, // Icons (default: iconify)
      plot: true, // Hidden text (spoiler) (default: true)
      imageSize: false, // Auto image dimensions
      include: true, // Include markdown files (default: true)
      math: { type: 'katex' }, // Math formulas (default: katex)
    },
  }),
})

Markdown Extensions

Containers

  • Abbreviation - Define abbreviations with tooltips
  • Annotation - Add inline annotations
  • Attributes - Add custom attributes to elements
  • Card - Create card-style layouts
  • Chat - Simulate chat conversations
  • Code Tree - Display file trees alongside code blocks
  • Collapse - Create collapsible details/summary blocks
  • Container - Custom containers (info, tip, warning, etc.)
  • Demo Wrapper - Demo container for examples
  • Field - Field/attribute display container
  • File Tree - Display file directory structures
  • Flex - Create flexible column layouts
  • GitHub Alerts - Use GitHub-style alerts
  • Icons - Embed icons from Iconify
  • Include - Include content from other files
  • Mark - Highlight text with ==mark== syntax
  • Math - Render mathematical formulas using KaTeX
  • NPM To - Switch between npm, yarn, pnpm, etc.
  • QR Code - Generate QR codes
  • Steps - Create step-by-step guides
  • Table - Enhanced table containers
  • Tabs - Create tabbed content
  • Timeline - Create timelines

Charts

Embeds

Code Features

See resources/code-features.md for detailed code block features:

  • Code Title - title="filename.ext" after language
  • Line Numbers - :line-numbers, :no-line-numbers, :line-numbers=2
  • Line Highlighting - {1,3,5-7} or // [!code highlight]
  • Line Focus - // [!code focus] or // [!code focus:3]
  • Diff Highlighting - // [!code ++] and // [!code --]
  • Warning/Error - // [!code warning] and // [!code error]
  • Word Highlight - // [!code word:keyword] or // [!code word:keyword:2]
  • Whitespace - :whitespace to show tabs/spaces
  • Collapsed Lines - :collapsed-lines or :collapsed-lines=10

Standard Markdown Extensions

VuePress Plume supports these standard markdown extensions:

  • Tables - GitHub-flavored tables
  • Task Lists - - [ ] and - [x]
  • Footnotes - [^1] and [^1]: note
  • Superscript - 19^th^
  • Subscript - H~2~O
  • Custom Anchors - ## Title {#custom-anchor}
  • Alignment - ::: left/center/right
  • Table of Contents - [[TOC]]

Code Block Features

Basic Syntax

md
```language
code content
```

With Features

md
```ts title="example.ts":line-numbers {2,4-6}
// [!code highlight]
const example = 'highlighted'
// [!code ++]
const added = 'new code'
// [!code --]
const removed = 'old code'
// [!code warning]
const warning = 'be careful'
// [!code error]
const error = 'something wrong'
// [!code focus]
const focused = 'focused line'
// [!code word:example]
console.log(example)
```

Language-Specific Comments

Different languages use different comment syntax:

LanguageHighlightFocusDiff AddDiff Remove
JS/TS/JSX/TSX// [!code highlight]// [!code focus]// [!code ++]// [!code --]
Python/Ruby/YAML# [!code highlight]# [!code focus]# [!code ++]# [!code --]
CSS/SCSS/* [!code highlight] *//* [!code focus] *//* [!code ++] *//* [!code --] */
HTML/XML<!-- [!code highlight] --><!-- [!code focus] --><!-- [!code ++] --><!-- [!code --] -->
Bash/Shell# [!code highlight]# [!code focus]# [!code ++]# [!code --]
SQL-- [!code highlight]-- [!code focus]-- [!code ++]-- [!code --]

Global Configuration

Enable features globally in .vuepress/config.ts:

ts
export default defineUserConfig({
  theme: plumeTheme({
    codeHighlighter: {
      lineNumbers: true, // Enable line numbers globally
      whitespace: false, // Show whitespace globally
      collapsedLines: false, // Collapse lines globally
      theme: { light: 'github-light', dark: 'github-dark' },
      twoslash: false, // TypeScript twoslash
    },
  }),
})

When enabled globally, use :no-line-numbers, :no-whitespace, :no-collapsed-lines to disable per block.

Frontmatter

Common frontmatter for markdown files:

md
---
title: Article Title
createTime: 2024/01/01 12:00:00
permalink: /article/unique-id/
tags:
  - tag1
  - tag2
description: Article description for SEO
---

Post-specific Frontmatter

md
---
sticky: true        # or number for ordering
article: true       # false to hide from list
draft: true         # dev only
cover: /image.jpg   # Cover image
coverStyle:
  layout: right     # left, right, odd-left, odd-right, top
  ratio: '16:9'
  width: 240
  compact: false
---

Home Page Frontmatter

md
---
pageLayout: home
config:
  - type: hero
    full: true
    effect: hyper-speed
    forceDark: true
    hero:
      name: Site Name
      tagline: Tagline
      text: Description
      actions:
        - text: Get Started
          link: /guide/
          theme: brand
  - type: features
    features:
      - title: Feature 1
        icon: icon-name
        details: Description
  - type: image-text
    title: Section Title
    image: /images/feature.svg
    list:
      - title: Item 1
        description: Description
  - type: text-image
    title: Section Title
    image: /images/feature.svg
    list:
      - title: Item 1
        description: Description
  - type: custom
---

LLMs txt Markup

When llmstxt is enabled, you can use special markup:

<llm-only> - Content visible only to LLMs

md
<llm-only>

## Section for LLMs

This content only appears in LLM-generated files.

</llm-only>

<llm-exclude> - Content hidden from LLMs

md
<llm-exclude>

## Section for humans

This content will not appear in LLM files.

</llm-exclude>

Components

Swiper (Carousel)

Requires installing swiper:

bash
npm install swiper
md
<script setup>
import Swiper from 'vuepress-theme-plume/features/Swiper.vue'
</script>

<Swiper :items="['img1.jpg', 'img2.jpg']" />

Props: items, width, height, mode ('banner'|'carousel'|'broadcast'), navigation, effect, delay, speed, loop, pauseOnMouseEnter, swipe

References

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Vuepress Plume Markdown AI skill do?

Help users write markdown files with VuePress Plume theme extensions, including containers, charts, embeds, code features, and all markdown enhancements. Invoke when user writes markdown content or asks about Plume's markdown syntax.

Why use Vuepress Plume Markdown on TypingMind?

Because you install it once and use it with any model. Vuepress Plume Markdown is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Vuepress Plume Markdown in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/pengzhanbo/vuepress-theme-plume/tree/main/skills/vuepress-plume-markdown. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Vuepress Plume Markdown?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Vuepress Plume Markdown?

As many as you like. As long as a model supports skills, you can use Vuepress Plume Markdown with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Vuepress Plume Markdown AI skill free?

Yes. It is published on GitHub by pengzhanbo under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇