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: Discover via llms.txt, read via .md
Prismatic publishes an authoritative, LLM-optimized index of every docs page:
https://prismatic.io/docs/llms.txt
It lists 200+ pages as [Title](full .md URL): one-line description and is the single
source of truth for doc URLs. Each entry carries the page's .md URL, which returns clean
markdown (no HTML/CSS/JS) ideal for LLM consumption.
Look every doc URL up in llms.txt; never hand-construct one. Doc pages live under
nested paths — for example Config Pages is
https://prismatic.io/docs/integrations/config-wizard/config-pages.md. Fetch llms.txt,
search it for your topic, and fetch the exact .md URL it lists.
Warning: fetch llms.txt (the small index), NOT llms-full.txt — it exceeds 10MB and
times out.
Fallback (when llms.txt doesn't surface the topic): WebSearch scoped to
site:prismatic.io/docs <topic>, then fetch that page's .md.
Workflows
Answer Conceptual Questions
- Identify the topic from the user's question
- Fetch
llms.txtand search it for the topic to get the page's exact.mdURL - Fetch that
.mdURL with WebFetch (clean markdown, no HTML/CSS/JS) - Extract relevant information and present clearly
- Cite the page's HTML URL (drop the
.md) so users can open it in a browser
Find Code Examples
- Identify the pattern needed (component, trigger, connection type, etc.)
- Search
https://github.com/prismatic-io/examplesfor relevant examples - Fetch raw file content if detailed analysis needed
- Present code with explanation
- Cite the GitHub URL
Answer "How do I..." Questions
- Search docs for conceptual guidance first
- Find related examples if code patterns help
- Combine documentation and examples for complete answer
- Cite both sources when applicable
When to Use This Skill
Use prismatic-docs for:
- "How do config pages work?"
- "What connection types are available?"
- "Best practices for webhook triggers"
- "How to embed the marketplace"
- "Setup customer-activated connections"
- Code pattern examples
Use prismatic-api (not this skill) for:
- "What integrations do I have?"
- "List my customers"
- "Deploy this instance"
- "Show execution logs"
Finding the right page
Fetch llms.txt and search it for the topic to get the page's .md URL. That one index
covers every doc section — config wizard, connections, custom connectors, code-native,
embed/marketplace, triggers, instances, CLI, API — so it is how you locate any page.
See references/documentation-search.md for task→topic mappings and search tips.
Citation Format
Always cite sources so users can learn more:
For documentation:
For more details, see: https://prismatic.io/docs/connections/
For examples:
See the example: https://github.com/prismatic-io/examples/tree/main/components/example-name
Key References
references/documentation-search.md— Full documentation paths, common tasks mapping, workflowsreferences/example-code.md— GitHub examples navigation, search patterns, common categories