Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问许可证需确认审计通过

geistgeist 命令行

Agent Skill

geist 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

699

周安装

28

GitHub Stars

156

下载量

226
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/vercel-labs/vercel-plugin --skill geist

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在需要围绕仓库状态、代码变更或协作事项进行整理时使用。
  • 可结合来源仓库和原始 README 进一步核验具体用法。
  • 安装方式:通过 npx skills add 命令从指定仓库添加技能。
  • 建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。

SKILL.md

Geist — Vercel's Font Family

You are an expert in Geist (v1.7.0), Vercel's open-source font family designed for developers and interfaces. It includes Geist Sans (a modern sans-serif), Geist Mono (a monospace font optimized for code), and Geist Pixel (a display typeface with five pixel-based variants for decorative use in headlines and logos).

Installation

npm install geist

Usage with Next.js (next/font)

App Router

// app/layout.tsx
import { GeistSans } from 'geist/font/sans'
import { GeistMono } from 'geist/font/mono'

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en" className={`${GeistSans.variable} ${GeistMono.variable}`}>
      <body className={GeistSans.className}>
        {children}
      </body>
    </html>
  )
}

With Tailwind CSS

// app/layout.tsx
import { GeistSans } from 'geist/font/sans'
import { GeistMono } from 'geist/font/mono'

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en" className={`${GeistSans.variable} ${GeistMono.variable}`}>
      <body>{children}</body>
    </html>
  )
}
// tailwind.config.ts
import type { Config } from 'tailwindcss'

const config: Config = {
  theme: {
    extend: {
      fontFamily: {
        sans: ['var(--font-geist-sans)'],
        mono: ['var(--font-geist-mono)'],
      },
    },
  },
}
export default config

Then use in components:

<p className="font-sans">Geist Sans text</p>
<code className="font-mono">Geist Mono code</code>

CSS Variables

Geist fonts expose CSS custom properties:

VariableFont
--font-geist-sansGeist Sans
--font-geist-monoGeist Mono

Use them in CSS:

body {
  font-family: var(--font-geist-sans);
}

code, pre {
  font-family: var(--font-geist-mono);
}

Font Weights

Both Geist Sans and Geist Mono support these weights:

WeightValue
Thin100
Extra Light200
Light300
Regular400
Medium500
Semi Bold600
Bold700
Extra Bold800
Black900

Typography Direction for Geist

Geist is not just a font import. In the Vercel stack it is the default typography system for interfaces that feel precise, calm, and high-signal.

What good looks like

  • Headlines are crisp, tightly tracked, and decisive
  • Body copy is readable and restrained; secondary text is muted, not washed out
  • Numbers, commands, IDs, timestamps use Geist Mono for precision
  • Typography carries hierarchy first; color and decoration come second

Default type recipes

<h1 className="text-4xl font-medium tracking-[-0.04em]">Large page title</h1>
<p className="text-sm leading-6 text-muted-foreground">Supporting copy</p>
<div className="font-mono text-[12px] text-muted-foreground tabular-nums">Dense metadata</div>
<h2 className="text-lg tracking-tight">Section heading</h2>
<h2 className="text-xl tracking-tight">Large section heading</h2>
<label className="text-sm">UI label</label>

Avoid defaulting entire interfaces to text-base.

Where to use each family

  • Geist Sans: navigation, body copy, buttons, headings, forms, tables, dialogs
  • Geist Mono: code, shortcuts, terminal output, commit hashes, invoice amounts, metrics, timestamps, ENV keys, feature flags
  • Geist Pixel: one accent moment only - hero wordmark, campaign heading, empty-state label. Never body text or settings UI.

Anti-patterns

  • Mixing Geist with multiple unrelated font families
  • Using Geist Mono for long paragraphs
  • Using Geist Pixel for more than one or two focal moments
  • Making every heading bold (Geist looks strongest with restrained weight and tight tracking)
  • Letting secondary text get so faint that hierarchy disappears

Subset Configuration

Optimize font loading by specifying subsets:

import { GeistSans } from 'geist/font/sans'

// GeistSans automatically uses the 'latin' subset
// For additional subsets, configure in next.config.js

Geist Pixel (Feb 6, 2026)

Geist Pixel is a bitmap-inspired display typeface family designed for headlines, logos, and decorative use. It ships five variants, each built on a different geometric primitive:

VariantDescription
Geist Pixel SquareSquare-based pixel grid
Geist Pixel GridDense grid pattern
Geist Pixel CircleCircular dot matrix
Geist Pixel TriangleTriangular pixel forms
Geist Pixel LineLine-based pixel strokes

Geist Pixel is intended for display sizes only — use Geist Sans for body text and Geist Mono for code.

Coding Ligatures (v1.7.0)

Coding ligatures are no longer enabled by default. They have been moved from contextual alternates to Stylistic Set 11 (SS11). If you rely on coding ligatures in your editor or terminal, enable SS11 explicitly:

  • VS Code: "editor.fontLigatures": "'ss11'"
  • CSS: font-feature-settings: 'ss11' 1;

Cyrillic Support (v1.7.0)

Geist 1.7.0 includes a redesigned Cyrillic script for all Geist Sans and Geist Mono styles.

Key Points

  1. Optimized for Next.js — works seamlessly with next/font for zero-layout-shift font loading
  2. Three families — Geist Sans for UI text, Geist Mono for code, Geist Pixel for decorative display
  3. CSS variables--font-geist-sans and --font-geist-mono for flexible styling
  4. Variable font — single file supports all weights (100–900)
  5. Self-hosted — fonts are bundled with your app, no external requests
  6. Import paths — use geist/font/sans and geist/font/mono (not geist/font)
  7. Coding ligatures — opt-in via Stylistic Set 11 (no longer default)

Official Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.39%
按下载量换算80

Claude

29.26%
按下载量换算66

Cursor

19.35%
按下载量换算44

Gemini CLI

10.03%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/vercel-labs/vercel-plugin --skill geist 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills