Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问clear审计通过

slidev-code-blocks幻灯片代码块

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

1,866

周安装

77

GitHub Stars

27

下载量

610
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:slidev-code-blocks(幻灯片代码块)
来源仓库:https://github.com/yoanbernabeu/slidev-skills
仓库路径:skills/slidev-code-blocks
安装命令:
npx skills add https://github.com/yoanbernabeu/slidev-skills --skill slidev-code-blocks
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/yoanbernabeu/slidev-skills --skill slidev-code-blocks

简介

slidev-code-blocks 用于辅助前端页面、组件、样式和交互逻辑的开发与维护,适合生成或审查 React、Vue、CSS 等相关代码。

  • 适用于 Slidev 演示文稿中的代码块展示与格式化场景。
  • 通过 npx skills add 命令从 GitHub 安装,需结合项目现有设计系统使用。
  • 涉及页面改动时应配合本地预览和构建检查确认视觉效果,避免生成孤立片段。
  • 注意该技能当前无详细功能说明,建议进一步查阅源码以了解实际能力边界。

SKILL.md

Slidev Code Blocks

This skill covers everything about displaying code in Slidev presentations, including syntax highlighting with Shiki, line highlighting, code groups, and importing external snippets.

When to Use This Skill

  • Displaying code snippets in presentations
  • Highlighting specific lines of code
  • Creating step-by-step code reveals
  • Showing code comparisons
  • Importing code from external files

Basic Code Blocks

Simple Code Block

function greet(name) { return Hello, ${name}! }

With Language Specification

Shiki supports 100+ languages:

interface User { id: number name: string email: string }

def fibonacci(n): if n <= 1: return n return fibonacci(n-1) + fibonacci(n-2)

fn main() { println!("Hello, Rust!"); }

Line Numbers

Enable Line Numbers

const x = 1 const y = 2 const z = x + y

Global Configuration

In frontmatter:

---
lineNumbers: true
---

Starting Line Number

// This starts at line 5 const x = 1

Line Highlighting

Highlight Specific Lines

const a = 1 const b = 2 // highlighted const c = 3 // highlighted const d = 4

Highlight Ranges

line 1 // highlighted line 2 // highlighted line 3 // highlighted line 4 line 5 // highlighted

Click-Through Highlighting

Reveal highlights step by step:

const name = 'Slidev' // Click 1 const version = '0.50' // Click 2 const author = 'Anthony' // Click 2

console.log(name, version) // Click 3

Highlight All Then Focus

const a = 1 const b = 2 const c = 3

  • Click 0: All lines visible
  • Click 1: Line 1 highlighted
  • Click 2: Line 2 highlighted
  • Click 3: Line 3 highlighted

With Final State

const x = 1 const y = 2

Code Block Options

Maximum Height

// Long code block // with many lines // ...

Wrapping

const veryLongLine = 'This is a very long line that would normally overflow the code block but now it wraps nicely'

Combined Options

function example() { const a = 1 const b = 2 const c = 3

return { sum: a + b + c } }

Code Themes

Configure in setup/shiki.ts

// setup/shiki.ts
import { defineShikiSetup } from '@slidev/types'

export default defineShikiSetup(() => {
  return {
    themes: {
      dark: 'vitesse-dark',
      light: 'vitesse-light',
    },
  }
})

Popular Themes

  • vitesse-dark / vitesse-light
  • dracula
  • one-dark-pro
  • nord
  • material-theme
  • github-dark / github-light

Code Groups

Show multiple code variants in tabs:

// TypeScript version interface User { name: string }

// JavaScript version const user = { name: 'John' }

Use <<< to create tabbed code groups (experimental):

<<< @/snippets/example.ts
<<< @/snippets/example.js

Importing External Code

Full File Import

<<< @/snippets/example.ts

With Line Range

<<< @/snippets/example.ts#L5-10

With Language Override

<<< @/snippets/config{json}

With Highlighting

<<< @/snippets/example.ts {2,4}

Diff Highlighting

Show code changes:

function greet(name: string) { return Hello, ${name}! // [!code --] return Hi, ${name}! // [!code ++] }

Highlight Specific Changes

const config = { theme: 'dark', // [!code highlight] debug: false, // [!code warning] timeout: 1000, // [!code error] }

TwoSlash Integration

TypeScript hover information:

const message = 'Hello' // ^?

Hover annotations:

interface User { name: string age: number }

const user: User = { name: 'John', age: 30 } // ^?

Code Focus

Focus Mode

Dim non-highlighted lines:

const a = 1 const b = 2 // Focused, others dimmed const c = 3

Click Focus Transitions

step1() // First focused step2() // Then this step3() // Finally this

Inline Code

Simple Inline

Use the `useState` hook for state management.

Styled Inline

The function returns `true`{.text-green-500} or `false`{.text-red-500}.

Code Block Styling

Custom CSS Class

const x = 1

.my-code {
  font-size: 0.9em;
  border-radius: 8px;
}

Scoped Styles

# Code Slide

const x = 1

Best Practices

1. Keep Code Concise

Too much code

// Full 100-line file

Focused snippet

// Just the relevant function function handleClick() { setState(value => value + 1) }

2. Use Meaningful Highlights

No context

const x = 1

Guided attention

const x = 1 const important = 'focus here' // highlighted const y = 2

3. Progressive Reveal for Complex Code

// Step 1: Define types interface User { name: string }

// Step 2: Create function function greet(user: User) { return Hello, ${user.name} }

// Step 3: Usage const greeting = greet({ name: 'World' }) console.log(greeting)

4. Use Comments for Context

// BAD: Magic numbers const delay = 1000

// GOOD: Named constants const ANIMATION_DELAY_MS = 1000

Common Patterns

Before/After Comparison

// Before function add(a, b) { return a + b }

// After const add = (a: number, b: number): number => a + b

Step-by-Step Tutorial

// Step 1: Import import { ref } from 'vue'

// Step 2: Create ref const count = ref(0)

// Step 3: Create function function increment() { count.value++ }

Output Format

When creating code slides, provide:

---
layout: default
---

# [Topic]

[Brief explanation of what the code does]

[code]

KEY DECISIONS:

  • Language: [chosen language]
  • Highlighting: [which lines and why]
  • Animation: [click sequence if any]
  • Theme: [if non-default]

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.25%
按下载量换算178

Antigravity

26.07%
按下载量换算159

OpenCode

18.47%
按下载量换算113

Codex

12.24%
按下载量换算75

Cursor

8.61%
按下载量换算53

Gemini CLI

4.06%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills