website — community website, iracedeck, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0

关于此技能

Perfect for AI Agents needing advanced website documentation and deployment capabilities. Open-source Elgato Stream Deck plugin for iRacing.

niklam niklam
[15]
[2]
更新于: 4/2/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
7/11
Quality Score
28
Canonical Locale
en
Detected Body Locale
en

Perfect for AI Agents needing advanced website documentation and deployment capabilities. Open-source Elgato Stream Deck plugin for iRacing.

核心价值

Empowers agents to deploy and manage Astro + Starlight documentation sites via Firebase Hosting, utilizing custom CSS properties and Google Fonts for branding, with support for markdown content and static asset serving.

适用 Agent 类型

Perfect for AI Agents needing advanced website documentation and deployment capabilities.

赋予的主要能力 · website

Deploying iRacing Stream Deck plugin documentation
Managing dark theme and light toggle functionality
Generating and serving static website assets via Firebase

! 使用限制与门槛

  • Requires Firebase Hosting setup
  • Limited to Astro and Starlight frameworks
  • Dependent on specific file structure and configuration

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

website 是什么?

Perfect for AI Agents needing advanced website documentation and deployment capabilities. Open-source Elgato Stream Deck plugin for iRacing.

如何安装 website?

运行命令:npx killer-skills add niklam/iracedeck/website。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

website 适用于哪些场景?

典型场景包括:Deploying iRacing Stream Deck plugin documentation、Managing dark theme and light toggle functionality、Generating and serving static website assets via Firebase。

website 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

website 有哪些限制?

Requires Firebase Hosting setup;Limited to Astro and Starlight frameworks;Dependent on specific file structure and configuration。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add niklam/iracedeck/website。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    website 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

website

安装 website,这是一款面向AI agent workflows and automation的 AI Agent Skill。支持 Claude Code、Cursor、Windsurf,一键安装。

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

iRaceDeck Website

Overview

Astro + Starlight documentation site deployed via Firebase Hosting. Dark theme by default with the iRaceDeck brand.

Key Files

FilePurpose
packages/website/astro.config.mjsStarlight config: sidebar, logo, social links, GA
packages/website/src/styles/custom.cssBrand overrides (accent color, font, dark bg)
packages/website/src/content.config.tsContent collection config with Starlight loader
packages/website/src/content/docs/index.mdxLanding page (splash template)
packages/website/src/content/docs/All documentation pages (markdown)
packages/website/src/assets/Logo image
packages/website/public/Static assets (favicons, webmanifest)
packages/website/firebase.jsonHosting config (serves dist/)

Brand

TokenValue
Accent color#ce2128
Dark background#0a0a0c
FontExo (Google Fonts)
ThemeDark default, light toggle available

Colors are set as Starlight CSS custom properties in src/styles/custom.css.

Content Structure

All docs pages live under src/content/docs/docs/ and are served at /docs/....

text
1src/content/docs/ 2├── index.mdx # Landing page at / (splash template) 3└── docs/ 4 ├── index.md # Docs landing page at /docs/ 5 ├── getting-started/ 6 │ ├── installation.md 7 │ └── troubleshooting.md 8 ├── features/ 9 │ ├── key-bindings.md 10 │ ├── flags-overlay.md 11 │ ├── focus-iracing-window.md 12 │ └── template-variables.md # Source of truth for telemetry template vars 13 ├── actions/ 14 │ ├── overview.md 15 │ ├── display-session/ # 2 actions 16 │ ├── driving/ # 5 actions 17 │ ├── cockpit/ # 5 actions 18 │ ├── view-camera/ # 5 actions 19 │ ├── media/ # 1 action 20 │ ├── pit-service/ # 3 actions 21 │ ├── car-setup/ # 7 actions 22 │ └── communication/ # 2 actions 23 └── reference/ 24 ├── action-types.md 25 └── keyboard-shortcuts.md

Defined in astro.config.mjs under starlight.sidebar. Uses { slug: "..." } entries pointing to content files. Categories match docs/reference/actions.json.

Adding/Editing Pages

  1. Create or edit a .md file in src/content/docs/docs/
  2. Add Starlight frontmatter (title, description, optional sidebar badge)
  3. If new, add the slug to the sidebar in astro.config.mjs
  4. Run pnpm dev to preview, pnpm build to verify

Action Doc Template

See the canonical example at packages/website/src/content/docs/docs/actions/pit-service/tire-service.md and the full rule at .claude/rules/website-action-docs.md. The short version:

md
1--- 2title: {Action Name} 3description: {Brief description} 4sidebar: 5 badge: 6 text: "{N} modes" 7 variant: tip 8--- 9 10{Intro paragraph} 11 12## Modes 13 14Select the mode from the **{Dropdown Label}** dropdown in the Property Inspector. 15 16### {Mode Name} 17 18{Mode description} 19 20##### Details 21 22- **Dial:** {rotation behavior, or `No rotation support`} 23- **Default binding:** {`Key`, `No default key binding`, or `No keyboard binding`} 24- **Telemetry-aware icon:** {`Yes` (with note on what updates) or `No`} 25 26##### Settings 27 28- No additional settings

For modes with settings, replace the ##### Settings block with one or more ##### Setting: {Name} subheaders documenting defaults and options inline.

Deployment

bash
1cd packages/website 2pnpm dev # Local dev server (http://localhost:4321) 3pnpm build # Build to dist/ 4pnpm preview # Preview built site 5pnpm deploy # Build + deploy to Firebase

Domain: iracedeck.com (Firebase Hosting with custom domain).

Common Changes

Update action count on landing page: Edit the stats row and category cards in src/content/docs/index.mdx Add an action page: Create .md in the right category folder, add slug to sidebar in astro.config.mjs, update docs/reference/actions.json, and update .claude/skills/iracedeck-actions/SKILL.md Change brand color: Update --sl-color-accent in src/styles/custom.css Update favicon: Replace files in public/, source from assets/favicon/ Add sidebar section: Edit sidebar array in astro.config.mjs

相关技能

寻找 website 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具