home / skills / upamune / radicaster / htmx
This skill helps you access HTMX documentation quickly, enabling you to search, read, and cite sources from docs/ with fetched timestamps.
npx playbooks add skill upamune/radicaster --skill htmxReview the files below or copy the command above to add this skill to your agents.
---
name: htmx
description: HTMX documentation assistant
---
# HTMX Skill
This skill provides access to HTMX documentation.
## Documentation
All documentation files are in the `docs/` directory as Markdown files.
## Search Tool
```bash
python scripts/search_docs.py "<query>"
```
Options:
- `--json` - Output as JSON
- `--max-results N` - Limit results (default: 10)
## Usage
1. Search or read files in `docs/` for relevant information
2. Each file has frontmatter with `source_url` and `fetched_at`
3. Always cite the source URL in responses
4. Note the fetch date - documentation may have changed
## Response Format
```
[Answer based on documentation]
**Source:** [source_url]
**Fetched:** [fetched_at]
```
This skill is an HTMX documentation assistant that helps you find and summarize HTMX concepts, attributes, and examples from the bundled documentation. It provides quick, sourced answers and points to the exact doc pages so you can verify details. Use it to speed up implementation and learn recommended patterns.
The skill searches and reads Markdown files stored in the documentation directory to locate relevant sections, examples, and frontmatter metadata. It can run a fast text search or open specific files, extract source_url and fetched_at metadata, and return concise answers with the original source cited. It also supports JSON-formatted search output for programmatic workflows.
How do you ensure answers stay accurate?
I locate the relevant Markdown doc, extract its frontmatter (source_url and fetched_at), and include both so you can verify the original content and when it was fetched.
Can I get search results as machine-readable data?
Yes. Use the search tool with the --json option to receive results in JSON for automation or editor plugins.