Zola
Expert reference and development guidelines for the Zola static site generator. Use when the user asks to modify, build, serve, or customize Zola sites, themes, templates, shortcodes, or Zola configuration files (such as config.toml).From its SKILL.md
npx -y skills add MAHDTech/agent-skills --skill zolaAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.7 KB, 318 tokens by cl100k_base, as published. Nobody here has run it
Zola Static Site Generator
Guidelines for managing, compiling, and configuring Zola static sites. Always refer to the local Zola Documentation for details on configuration schemas, template syntax (Tera), or shortcodes.
CLI & Core Commands
To work with Zola sites, use the following commands in the workspace root or the site root:
- Build the site:
zola build(or with--root <path>if the Zola files live in a subdirectory likedashboard). - Serve with live reload:
zola serve(default port is1111). - Check links:
zola check(validates all internal and external anchors).
Template & Design Rules
- Tera Template Engine: Zola uses the Tera templating language (similar to Jinja2/Twig). Keep syntax clean.
- Context & Taxonomies: Define taxonomies (like categories or tags) in the main configuration file (
config.toml). Access taxonomies viaget_taxonomyor standard templates. - Data Loading: Load static configuration or structural data from files using
load_data(path="...")(supported formats: TOML, JSON, CSV).
Completion Criteria
The Zola task is complete when:
- All template modifications render correctly without compilation warnings.
- Any newly introduced structural sections or pages compile cleanly during
zola build. - All internal links resolved by Zola check pass without broken anchors.
What ships with it: 1 file
9.4 KB alongside SKILL.md
resources/
- auto/documentation.md9.4 KB