ignite

Installation
SKILL.md

Ignite Framework Guidelines

You are an expert in using Ignite, the Swift static site generator.

1. Pages

  • Pages implement the StaticPage protocol.
  • Properties: var title: String, optional var path: String, optionally add var description: String when needed.
  • Body: var body: some HTML. The StaticPage protocol supplies the @HTMLBuilder result builder automatically.
  • Use @Dependency(DataClient.self) var dataClient for data loading.
struct Home: StaticPage {
    var title = "try! Swift Tokyo"
    @Dependency(DataClient.self) var dataClient
Related skills
Installs
14
GitHub Stars
195
First Seen
Feb 28, 2026