Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

landing-page-generator登陆页面生成器

Agent Skill

landing-page-generator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

838

周安装

36

GitHub Stars

3,998

下载量

294
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/florianbruniaux/claude-code-ultimate-guide --skill landing-page-generator

简介

landing-page-generator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配和来源线索筛选等研究检索场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用该技能。
  • 安装前需确认权限范围、维护状态,避免触发联网或文件读写操作。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Landing Page Generator

Generate a complete, deploy-ready landing page from any repository by analyzing its documentation and structure.

When to Use This Skill

  • Creating a landing page for a GitHub repository
  • Generating static sites from existing documentation
  • Standardizing landing pages across multiple projects
  • Converting README content to marketing/showcase pages

What This Skill Does

  1. Analyze Repository: Read README.md, CHANGELOG.md, package.json/VERSION, docs/, assets/
  2. Extract Content: Identify title, tagline, features, installation, screenshots
  3. Map to Sections: Hero, Features, Install, FAQ, Footer (+ optional: Risk Banner, Pricing)
  4. Generate Landing: Create complete static site (HTML + CSS + JS)
  5. Deploy-Ready Output: Include GitHub Actions workflow for GitHub Pages

How to Use

Basic Usage

/landing-page-generator from ~/path/to/repo

With Options

/landing-page-generator from ~/path/to/repo --risk-banner --pricing-table

Available Options

OptionDescriptionDefault
--risk-bannerAdd prominent warning/disclaimer banner above foldfalse
--pricing-tableInclude pricing comparison sectionfalse
--screenshots <path>Path to screenshots folder./assets/
`--theme [dark\light]`Color theme variantdark
--searchEnable Cmd+K searchtrue
--output <path>Output directory./[repo-name]-landing/

Workflow

Step 1: Repository Analysis

Read and analyze these files from the source repo:

README.md        → Primary content source (title, tagline, features, install)
CHANGELOG.md     → Version info, recent changes
package.json     → Version number, dependencies, metadata
VERSION          → Alternative version source
docs/            → Additional documentation pages
assets/          → Screenshots, images
LICENSE          → License type for badge

Step 2: Content Extraction Map

SourceTarget SectionExtraction Method
README title/badgesHeroFirst H1 + shield.io badge lines
README TL;DRHero taglineFirst paragraph or blockquote after title
README featuresFeatures gridH2/H3 sections with bullet lists
README installQuick StartCode blocks with shell commands
README usageExamplesCode blocks with examples
README FAQFAQDetails/summary or H3+P patterns
CHANGELOGWhat's NewLatest 1-3 releases
assets/*.pngScreenshotsGallery section

Step 3: Section Generation

Generate these sections in order:

  1. Header (sticky)

- Logo/project name - Nav links: Features, Install, FAQ - Actions: Search (Cmd+K), GitHub Star, primary CTA

  1. Risk Banner (if --risk-banner)

- Orange/warning style above fold - Clear, visible disclaimer text - Link to detailed disclosure section

  1. Hero Section

- Title from README H1 - Tagline from TL;DR/first paragraph - Stats badges (version, license, platform) - CTAs: "Quick Start" (primary), "View on GitHub" (secondary)

  1. Architecture/Overview (if diagram in README)

- ASCII diagram converted to styled block - Or overview cards

  1. Features Grid

- 4-6 feature cards from README features - Icon + title + description pattern

  1. Pricing Table (if --pricing-table)

- Plans comparison table - Multipliers/usage table if present

  1. Screenshots Gallery (if assets exist)

- Tab-based or carousel gallery - Captions from alt text

  1. Quick Start Section

- One-liner install command (featured code block) - Setup steps - First usage example

  1. Risk Disclosure (if --risk-banner)

- Full disclaimer section - ToS considerations - Recommendations

  1. FAQ Section

- Generated from README FAQ or common questions - Collapsible details pattern

  1. Related Projects (if links in README)

- Cards linking to dependencies/related repos

  1. Footer

- Quick links - License badge - Version info - Author/repo links

Step 4: Output Structure

[project-name]-landing/
├── index.html              # Main landing page
├── styles.css              # Complete stylesheet
├── search.js               # Cmd+K search functionality
├── search-data.js          # Search index (FAQ, features)
├── favicon.svg             # Generated or copied
├── robots.txt              # SEO
├── CLAUDE.md               # Project instructions
├── README.md               # Landing repo documentation
├── assets/                 # Copied screenshots
│   └── [copied from source]
└── .github/
    └── workflows/
        └── static.yml      # GitHub Pages deployment

Step 5: Validation Checkpoint

Before finalizing, verify:

  • All sections render correctly in a browser
  • Links point to valid targets (GitHub repo, docs, install commands)
  • Responsive layout works at mobile (375px), tablet (768px), and desktop (1280px) widths
  • Accessibility: skip links present, ARIA labels on interactive elements, color contrast passes WCAG AA

Tech Stack

  • No build step: Pure HTML + CSS + JS
  • Search: MiniSearch lazy-loaded from CDN with fallback
  • Deployment: GitHub Pages via Actions
  • Styling: CSS custom properties, responsive, dark theme default
  • Accessibility: Skip links, ARIA labels, keyboard navigation

CSS Patterns (from established landings)

Component Classes

/* Buttons */
.btn, .btn-primary, .btn-secondary, .btn-github-star, .btn-outline

/* Cards */
.feature-card, .comparison-card, .path-card

/* Layout */
.container, .features-grid, .hero, .section

/* Utilities */
.visually-hidden, .skip-link

CSS Variables

:root {
  --color-bg: #0d1117;
  --color-surface: #161b22;
  --color-border: #30363d;
  --color-text: #c9d1d9;
  --color-text-muted: #8b949e;
  --color-primary: #58a6ff;
  --color-success: #3fb950;
  --color-warning: #d29922;
  --color-danger: #f85149;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --radius: 6px;
}

Example

User: /landing-page-generator from ~/projects/my-project --risk-banner --pricing-table

Output:

Creates ~/projects/my-project-landing/ with:

  • Complete landing page showcasing the multi-provider router
  • Prominent ToS risk banner (orange, above fold)
  • Provider cards (Anthropic, Copilot, Ollama)
  • Pricing tables from README
  • Screenshots gallery
  • GitHub Pages deployment ready

Tips

  • Always include --risk-banner for projects with legal/ToS considerations
  • Screenshots significantly improve landing quality - ensure assets/ is populated
  • The skill preserves README language (English/French)
  • Review generated FAQ - may need customization
  • Test responsive design after generation

References

See references/landing-pattern.md for detailed pattern documentation. See assets/ for reusable templates and snippets.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.56%
按下载量换算99

Claude

32.03%
按下载量换算94

Cursor

17.34%
按下载量换算51

Gemini CLI

9.37%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills