website — community website, iracedeck, community, ide skills

v1.0.0

About this Skill

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

niklam niklam
[15]
[2]
Updated: 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 Locale and body language aligned
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.

Core Value

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.

Ideal Agent Persona

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

Capabilities Granted for website

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

! Prerequisites & Limits

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

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs 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 & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is website?

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

How do I install website?

Run the command: npx killer-skills add niklam/iracedeck/website. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for website?

Key use cases include: Deploying iRacing Stream Deck plugin documentation, Managing dark theme and light toggle functionality, Generating and serving static website assets via Firebase.

Which IDEs are compatible with website?

This skill is compatible with 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. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for website?

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

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add niklam/iracedeck/website. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use website immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

website

Install website, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
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

Related Skills

Looking for an alternative to website or another community skill for your workflow? Explore these related open-source skills.

View All

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

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer