prismatic-docs

Solid

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.

API & Backend 27 stars 1 forks Updated today MIT

Install

View on GitHub

Quality Score: 84/100

Stars 20%
48
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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 1. Identify the topic from the user's question 2. Fetch `llms.txt` and search it for the topic to get the page's exact `.md` URL...

Details

Author
prismatic-io
Repository
prismatic-io/prismatic-skills
Created
6 months ago
Last Updated
today
Language
TypeScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

API & Backend Solid

prismatic-api

Prismatic API access patterns and GraphQL reference. Covers the two-tier access hierarchy (MCP tools → Prism CLI), CLI usage rules, GraphQL query patterns, pagination, authentication, and managing platform resources programmatically.

27 Updated today
prismatic-io
AI & Automation Listed

find-docs

Retrieves up-to-date documentation, API references, and code examples for any developer technology. Use this skill whenever the user asks about a specific library, framework, SDK, CLI tool, or cloud service -- even for well-known ones like React, Next.js, Prisma, Express, Tailwind, Django, or Spring Boot. Your training data may not reflect recent API changes or version updates. Always use for: API syntax questions, configuration options, version migration issues, "how do I" questions mentioning a library name, debugging that involves library-specific behavior, setup instructions, and CLI tool usage. Use even when you think you know the answer -- do not rely on training data for API details, signatures, or configuration options as they are frequently outdated. Always verify against current docs. Prefer this over web search for library documentation and API details.

5 Updated today
melodic-software
AI & Automation Solid

find-docs

Retrieves up-to-date documentation, API references, and code examples for any developer technology. Use this skill whenever the user asks about a specific library, framework, SDK, CLI tool, or cloud service — even for well-known ones like React, Next.js, Prisma, Express, Tailwind, Django, or Spring Boot. Your training data may not reflect recent API changes or version updates. Always use for: API syntax questions, configuration options, version migration issues, "how do I" questions mentioning a library name, debugging that involves library-specific behavior, setup instructions, and CLI tool usage. Use even when you think you know the answer — do not rely on training data for API details, signatures, or configuration options as they are frequently outdated. Always verify against current docs. Prefer this over web search for library documentation and API details.

9 Updated today
JustMichael-80