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

infopageinfopage 命令行

Agent Skill

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

总安装

264

周安装

11

GitHub Stars

公开资料未说明

下载量

88
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cerico/macfair --skill infopage

简介

用于生成信息页面或文档摘要,适合在 Codex、Claude、Cursor、Gemini CLI 中快速展示项目概览。

  • 可提取关键信息、组织内容结构并输出为可读页面格式,支持本地预览与导出。
  • 通过 npx skills add 命令从指定仓库安装,需确认文件读写权限与输出路径安全。
  • 建议结合原始 README 核验功能细节,注意维护状态与模型输出适用范围。
  • infopage 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Infopage

Create document-style HTML pages. Utilitarian, readable, no decoration.

Style

Warm, readable, classic. Serif typography with subtle color accents.

Color Palette

NameHex
cream#f5f3e8
black#222
red#db5439
pinkrgba(220, 84, 57, 0.5)
gold#eebe6d

Valid Combinations

BackgroundText
creamblack
redblack
pinkblack
goldblack
blackcream
blackgold

Use any combination, but:

  • Cards must all use the same combination
  • Page background must differ from card background

Base Template

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>PAGE_TITLE</title>
  <script src="https://cdn.tailwindcss.com"></script>
  <style>
    @import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
    :root {
      --cream: #f5f3e8;
      --black: #222;
      --red: #db5439;
      --pink: rgba(220, 84, 57, 0.5);
      --gold: #eebe6d;
    }
  </style>
  <script>
    tailwind.config = {
      theme: {
        fontFamily: {
          serif: ['"Libre Baskerville"', 'Georgia', 'serif'],
        },
        extend: {
          colors: {
            cream: 'var(--cream)',
            black: 'var(--black)',
            red: 'var(--red)',
            pink: 'var(--pink)',
            gold: 'var(--gold)',
          }
        }
      }
    }
  </script>
</head>
<body class="bg-cream text-black font-serif min-h-screen">
  <div class="max-w-6xl mx-auto px-8 py-16">
    <header class="mb-12">
      <h1 class="text-2xl font-bold uppercase tracking-wide">PAGE_TITLE</h1>
      <p class="text-sm mt-2 italic text-black/70">SUBTITLE</p>
    </header>

    <main>
      <!-- Content -->
    </main>

    <footer class="mt-16 pt-8 border-t border-black/20 text-sm text-black/60">
      Generated DATE
    </footer>
  </div>
</body>
</html>

Patterns

Section with Heading

<section>
  <h2 class="text-lg font-bold uppercase tracking-wide mb-4">Section Title</h2>
  <p class="leading-relaxed">Body text goes here.</p>
</section>

Numbered List

<ol class="space-y-3 list-decimal list-inside">
  <li><span class="font-semibold">Step one.</span> Description.</li>
  <li><span class="font-semibold">Step two.</span> Description.</li>
</ol>

Bullet List

<ul class="space-y-2">
  <li class="flex gap-3">
    <span>*</span>
    <span>Item description</span>
  </li>
</ul>

Divider

<hr class="my-8 border-black">

Key-Value

<dl class="space-y-2">
  <div class="flex gap-4">
    <dt class="font-semibold min-w-32">Label</dt>
    <dd>Value</dd>
  </div>
</dl>

Table

<table class="w-full text-sm border-collapse">
  <thead>
    <tr class="border-b-2 border-red">
      <th class="text-left py-3 px-4 font-bold">Name</th>
      <th class="text-left py-3 px-4 font-bold">Value</th>
    </tr>
  </thead>
  <tbody>
    <tr class="border-b border-black/10">
      <td class="py-3 px-4">Item</td>
      <td class="py-3 px-4 text-black/70">Details</td>
    </tr>
  </tbody>
</table>

Cards (Preferred for Comparisons)

Cards show key facts at a glance. No verbose descriptions.

<div class="grid gap-4 md:grid-cols-2 lg:grid-cols-3">
  <div class="bg-pink border-4 border-red p-5">
    <div class="flex justify-between items-start mb-3">
      <a href="https://example.com" class="font-bold uppercase text-sm tracking-wide hover:underline" target="_blank">App Name</a>
      <span class="text-xs font-bold bg-gold text-black px-2 py-1">92/100</span>
    </div>
    <p class="text-xl font-bold mb-3">$12/mo</p>
    <div class="flex flex-wrap gap-2 mb-3">
      <span class="text-xs border border-black/30 px-2 py-1">Offline</span>
      <span class="text-xs border border-black/30 px-2 py-1">Local AI</span>
    </div>
    <dl class="text-sm space-y-1">
      <div class="flex justify-between">
        <dt class="text-black/70">Free Tier</dt>
        <dd class="font-semibold">Yes</dd>
      </div>
      <div class="flex justify-between">
        <dt class="text-black/70">Trial Length</dt>
        <dd>2,000 words/week</dd>
      </div>
    </dl>
  </div>
</div>

Card content:

  • Clickable title (links to website, no separate "Visit Website")
  • Rank/score badge
  • Price
  • Tags for key features
  • Key facts (free tier, trial length, etc.)
  • No description paragraphs - that's where AI waffle creeps in

Grid columns:

  • 2-3 columns: md:grid-cols-2 lg:grid-cols-3
  • More columns for simpler cards: md:grid-cols-3 lg:grid-cols-4

Note/Callout

<div class="border-l-4 border-red pl-4 my-6 py-3 pr-4">
  <p class="text-sm italic">Note: Important information here.</p>
</div>

Tags/Badges

<span class="text-xs font-bold bg-gold text-black px-2 py-1">Featured</span>
<span class="text-xs font-bold bg-red text-cream px-2 py-1">New</span>
<span class="text-xs border border-black/30 px-2 py-1">Tag</span>

Links

<a href="#" class="text-red hover:underline">Link text →</a>

File Naming

Default: index.html in current directory

If index.html exists:

  1. Ask user before overwriting, OR
  2. Create a subdirectory: ./topic-name/index.html

Never: Long descriptive filenames like compare-voice-apps-on-mac.html

Examples:

# Good
./index.html
./voice-apps/index.html
~/Desktop/examples/index.html

# Bad
./compare-voice-apps-on-mac.html
./my-keyboard-shortcuts-reference.html

Rules

  • Use only palette colors (cream, black, red, pink, gold)
  • Cards use same bg color, distinct from page bg
  • Border-4 for cards, not border-1
  • No rounded corners
  • Serif typography (Libre Baskerville)
  • Generous whitespace
  • Prefer card grids over lists for comparisons
  • Cards are minimal - name + one key fact, click to expand
  • No AI waffle - no "gold standard", "exceptionally accurate", just facts
  • Transitions only on user action (expand/collapse OK, no auto-animations)

TODO: Future Looks

  • Monospace/terminal variant
  • Sans-serif modern variant
  • Dark mode (white on black)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.15%
按下载量换算32

Claude

28.17%
按下载量换算25

Cursor

16.9%
按下载量换算15

Gemini CLI

8.98%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills