raycast-extension-docs
Guidance for building, debugging, and publishing Raycast extensions using the Raycast documentation set. Use when Codex needs to create or modify Raycast extensions (React/TypeScript/Node), consult Raycast API reference or UI components, build AI extensions, handle manifest/lifecycle/preferences, troubleshoot issues, or prepare/publish extensions to the Raycast Store or Teams.
install
source · Clone the upstream repo
git clone https://github.com/lemikeone/Codex-skill-raycast-extension
Claude Code · Install into ~/.claude/skills/
git clone --depth=1 https://github.com/lemikeone/Codex-skill-raycast-extension ~/.claude/skills/lemikeone-codex-skill-raycast-extension-raycast-extension-docs
manifest:
SKILL.mdsource content
Raycast Extension Docs
Overview
Use the bundled Raycast documentation under
references/ as the source of truth for APIs, patterns, and policies. Route requests to the right section, load only the needed files, and apply the guidance to the user's task.
Quick Routing
- Start with
to locate the right doc page.references/SUMMARY.md - Use
for the general introduction and platform overview.references/README.md - Use
for step-by-step guides (getting started, create, debug, publish).references/basics/ - Use
for API details and component usage.references/api-reference/ - Use
for UI components (List, Form, Detail, Action Panel, etc.).references/api-reference/user-interface/ - Use
andreferences/ai/
for AI extension guidance.references/api-reference/ai.md - Use
for real-world extension patterns.references/examples/ - Use
for terminology, manifest, lifecycle, file structure, best practices, tools, and security.references/information/ - Use
for utility helpers and patterns.references/utils-reference/ - Use
for private/team extension workflows.references/teams/ - Use
andreferences/migration/
for version changes and breaking updates.references/changelog.md - Use
for quick clarifications.references/faq.md
Working Approach
- Identify the user's goal and map it to the most relevant section in
.references/SUMMARY.md - Open the specific doc file(s) and extract only the details needed to answer or implement.
- Cross-check API usage against
and best practices inreferences/api-reference/
.references/information/best-practices.md - When building UI, verify component props and patterns in
.references/api-reference/user-interface/ - When shipping or collaborating, confirm publish/team steps in
orreferences/basics/
.references/teams/
Notes
- Keep answers aligned with the docs; call out when guidance is inferred or when the docs are silent.
- If the user asks about behavior changes, consult
andreferences/migration/
.references/changelog.md