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 paths (see reference file).
Workflows
Answer Conceptual Questions
- Identify the topic from the user's question
- Check common documentation paths in
references/documentation-search.md - If path unknown, fetch
llms.txtand search for relevant pages - Convert URL to
.mdformat and fetch with WebFetch - Extract relevant information and present clearly
- Cite the HTML URL (not
.md) so users can visit
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"
Common Documentation Paths
| Topic | Path |
|---|---|
| Config variables | /docs/config-variables/ |
| Config pages | /docs/config-pages/ |
| Connections | /docs/connections/ |
| Customer config | /docs/customer-configuration/ |
| Custom components | /docs/custom-components/ |
| Code-native integrations | /docs/code-native-integrations/ |
| Embedding marketplace | /docs/embedding-marketplace/ |
| Integration triggers | /docs/integration-triggers/ |
| Instances | /docs/instances/ |
| CLI reference | /docs/cli/ |
| API reference | /docs/api/ |
See references/documentation-search.md for complete paths and task mappings.
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