prismatic-docslisted
Install: claude install-skill prismatic-io/prismatic-skills
# Prismatic Documentation
Search and retrieve Prismatic product documentation and code examples to answer conceptual questions, explain features, and provide best-practice guidance.
## Resources
- **Documentation**: `https://prismatic.io/docs/` — Official product documentation
- **Examples**: `https://github.com/prismatic-io/examples` — Working code implementations
## Core Technique: Markdown Fetch
Prismatic docs pages serve clean markdown by appending `.md` to the URL path:
| HTML URL | Markdown URL |
|---------------------------------------------|-----------------------------------------------|
| `https://prismatic.io/docs/connections/` | `https://prismatic.io/docs/connections.md` |
| `https://prismatic.io/docs/config-pages/` | `https://prismatic.io/docs/config-pages.md` |
The `.md` version strips HTML/CSS/JS, returning clean content ideal for LLM consumption.
## Discovery Methods
### Method 1: Index Lookup (llms.txt)
Fetch the page index to find the right documentation page:
```
https://prismatic.io/docs/llms.txt
```
This contains 200+ page titles with URLs. Search for keywords to find relevant pages.
**Warning**: Do NOT use `llms-full.txt` — it exceeds 10MB and will timeout.
### Method 2: Web Search
Use WebSearch scoped to `prismatic.io` when the topic is unclear:
```
site:prismatic.io/docs <topic>
```
### Method 3: Direct Fetch
For known topics, fetch directly using common pat