Prismic Automation

Automate headless CMS operations including document querying, content searching, and repository reference management.

74.2k|8.5k|Updated Oct 17, 2025
One-click install
npx skills add https://github.com/ComposioHQ/awesome-claude-skills --skill prismic-automation
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Prismic Automation
Source: https://github.com/ComposioHQ/awesome-claude-skills/tree/main/composio-skills/prismic-automation
Command: npx skills add https://github.com/ComposioHQ/awesome-claude-skills --skill prismic-automation

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill removes the manual overhead of navigating the Prismic CMS dashboard by enabling direct, programmatic interaction with your content repository through natural language commands.

Core Features & Use Cases

  • Content Retrieval: Query documents using complex predicates, fetch by type, or perform full-text searches across your entire repository.
  • Repository Management: Inspect custom types, manage content versions via refs, and retrieve metadata without leaving your coding environment.
  • Use Case: Quickly find all blog posts tagged as 'featured' and retrieve their specific document IDs to update content links or perform bulk content audits.

Quick Start

Use the prismic skill to query all documents of type 'page' and return the master ref for the repository.

Frequently Asked Questions about Prismic Automation

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I query documents by type in Prismic?

Use the PRISMIC_GET_DOCUMENTS_BY_TYPE tool to fetch all documents of a specific custom type. You must provide the type API ID and ensure you have a valid master ref from the repository.

Why do my Prismic queries return no results?

Queries often fail if the required 'ref' token is missing or expired. Always call PRISMIC_REPOSITORY_API_GET_REFS first to obtain the current master ref before executing content queries.

Can I perform full-text searches across my Prismic content?

Yes, use the PRISMIC_CONTENT_API_GET_DOCUMENTS_WITH_FULLTEXT_SEARCH tool. Provide a full-text predicate string to search across all text fields in your documents.

What is the limit for document pagination in Prismic?

The maximum page size for document queries is 100. For larger datasets, use the 'page' and 'pageSize' parameters, or the 'after' cursor for deep pagination beyond 50 pages.

How do I handle language-specific content in Prismic?

Pass the 'lang' parameter with the appropriate locale code (e.g., 'en-us') to your query tools. The default behavior is to return documents in all available languages.