raycast

raycast is a skill for Claude Code, Codex from adriangrantdotorg/Raycast-Skill. It costs 59 tokens per session (835 once invoked), scanned A, original, Apache-2.0.

A development guide for Raycast Extensions, which are small React and Node programs that add commands to the Raycast launcher on macOS.

In plain words
What is it for?
Use it to start an extension, update its package details and commands, run it locally with a build watcher, and improve its interface and workflows.
Why use it?
It provides a consistent way to create, modify, and troubleshoot extensions, including setup, local testing, forms, and successful-action behaviour.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/adriangrantdotorg/raycast-skill/raycast
Any agent
npx skills add adriangrantdotorg/Raycast-Skill --skill raycast
Clone the repo
git clone --depth 1 https://github.com/adriangrantdotorg/Raycast-Skill

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for raycast

README.md
[![agentmods](https://agentmods.dev/badge/skills/adriangrantdotorg/raycast-skill/raycast.svg)](https://agentmods.dev/skills/adriangrantdotorg/raycast-skill/raycast)
Your own site
<a href="https://agentmods.dev/skills/adriangrantdotorg/raycast-skill/raycast"><img src="https://agentmods.dev/badge/skills/adriangrantdotorg/raycast-skill/raycast.svg" alt="Measured on agentmods" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 835 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00059 $0.00835
Opus 5 $0.00030 $0.00417
Sonnet 5 $0.00012 $0.00167
Haiku 4.5 $0.00006 $0.00084

Measured 6d ago against content hash 949883a6dfa0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

raycast scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

- **AppleScript & Keyboard Maestro**: Use Node's `child_process.exec` to run `osascript`.
skills/raycast/SKILL.md · 54 lines

How it starts

The opening of the file, as written. The whole thing — 54 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Raycast Extension Development

This skill defines the preferred workflow and best practices for building, modifying, and troubleshooting custom Raycast extensions.

1. Scaffolding & Setup

  • Preferred Method (Duplication): The fastest way to start a new extension is often duplicating the folder of an existing extension. If you do this, you must carefully update the package.json:
    • "name"
    • "title"
    • "description"
    • "author"
    • "commands" array (update name, title, and description).
  • Standard Method: If not duplicating, use npx @raycast/api@latest create.
  • Local Dev: After creating/duplicating, run npm install followed by npm run dev. This automatically installs the extension in the user's Raycast app locally and starts the build watcher.

2. General UI & UX Requirements

When modifying or creating forms and commands, adhere to these standards:

  • Clean Inputs: Do not set defaultValue with placeholder characters (e.g., - for bullet points) unless explicitly requested.
  • Auto-Close on Success: After successfully completing an action (like adding a Notion page, running a system script, etc.), the extension should disappear and return the user to the root Raycast search, rather than retaining the form on-screen.
    • Import: import { popToRoot } from "@raycast/api";
    • Execute: await popToRoot({ clearSearchBar: true });
  • Icon Changes: If an extension's icon is modified (e.g., extension-icon.png), the Raycast app must be fully restarted to reflect the change. Always explicitly alert the user to "Restart Raycast" when you modify an icon.

3. Data Fetching & State

  • Use @raycast/utils: For dynamic data fetching (e.g., loading dropdown options from a Notion database, or fetching Spotify tracks), rely on useCachedPromise from the @raycast/utils library. This ensures fast initial loads and proper caching.
  • Dynamic Forms: For fields like Notion's select, multi_select, or integrations with existing playlists, dynamic Form.TagPicker or Form.Dropdown components should be populated via useCachedPromise rather than hardcoding.

Read the full file on GitHub · 54 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 54 lines · 59 tokens per session scan A 949883a6dfa0

Subscribe to this mod's changes

raycast is a skill published in the GitHub repository adriangrantdotorg/Raycast-Skill (9 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 59 tokens to every session and 835 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

raycast

Comprehensive operational skill specification for Anthropic Claude to automate, script, troubleshoot, and optimize Raycast, React/TypeScript Extension API (@raycast/api), Script Commands, and URL schemes.

alivirgo/Major-AI-Skills · 42 tokens

algolia-search

Expert patterns for Algolia search implementation, indexing strategies, React InstantSearch, and relevance tuning.

sickn33/agentic-awesome-skills · 22 tokens

antigravity-design-expert

Core UI/UX engineering skill for building highly interactive, spatial, weightless, and glassmorphism-based web interfaces using GSAP and 3D CSS.

sickn33/agentic-awesome-skills · 39 tokens

vercel-react-best-practices

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance…

CherryHQ/cherry-studio · 67 tokens

algolia-search-v2

Algolia Search Integration workflow skill. Use this skill when the user needs Expert patterns for Algolia search implementation, indexing and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.

diegosouzapw/awesome-omni-skills · 50 tokens

glaze-byok-ai

Give Glaze app users a choice of AI engine - built-in Glaze AI (zero setup, uses their Glaze credits), their own free API key (Google Gemini free tier, optionally OpenRouter free models), or their local Claude Code CLI (their Claude subscription). Use whenever an app built with glaze-coder gets an AI feature, so end…

GaimsDevSoftware/glaze-coder · 112 tokens