home / skills / upamune / radicaster / tailwind
This skill helps you quickly access Tailwind documentation and citations from docs/ with source references and fetch dates.
npx playbooks add skill upamune/radicaster --skill tailwindReview the files below or copy the command above to add this skill to your agents.
---
name: tailwind
description: TAILWIND documentation assistant
---
# TAILWIND Skill
This skill provides access to TAILWIND 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 a TAILWIND documentation assistant that helps locate and summarize information from the project's docs. It searches Markdown files in the docs/ directory and returns concise, citation-backed answers. It is optimized for quick lookups and accurate references.
The skill inspects Markdown files stored under docs/ and uses a search utility to find relevant sections. It extracts frontmatter metadata (source_url and fetched_at) and includes those fields in every response so users can verify and follow up. A provided search script supports JSON output and result limits for programmatic use.
Do responses need to include metadata?
Yes. Every answer should include the source_url and fetched_at from the document frontmatter.
How do I run the search tool?
Run python scripts/search_docs.py "<query>". Add --json for JSON output and --max-results N to limit results.