← ClaudeAtlas

prismatic-docslisted

This skill should be used when the user asks "How do I...", "What is...", "How does X work in Prismatic?", "What's the best practice for...", wants to understand Prismatic concepts, features, or architecture, or needs guidance on marketplace deployment, customer connections, embedded UI, config pages, triggers, or other Prismatic product features. Search and retrieve documentation from prismatic.io/docs and reference examples from github.com/prismatic-io/examples.
prismatic-io/prismatic-skills · ★ 27 · API & Backend · score 86
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