# Send raycast to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "raycast",
    "name": "raycast",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/xaif/raycast",
    "canonicalUrl": "https://clawhub.ai/xaif/raycast",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/raycast",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raycast",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "examples.md",
      "SKILL.md",
      "references/api/storage.md",
      "references/api/detail.md",
      "references/api/icons-images.md",
      "references/api/hud.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "raycast",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T14:20:50.761Z",
      "expiresAt": "2026-05-19T14:20:50.761Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raycast",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raycast",
        "contentDisposition": "attachment; filename=\"raycast-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "raycast"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/raycast"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/raycast",
    "downloadUrl": "https://openagent3.xyz/downloads/raycast",
    "agentUrl": "https://openagent3.xyz/skills/raycast/agent",
    "manifestUrl": "https://openagent3.xyz/skills/raycast/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/raycast/agent.md"
  }
}
```
## Documentation

### Raycast Extensions Skill

Build powerful extensions with React, TypeScript, and the Raycast API.

### Quick Start (Agent Workflow)

Follow these steps when tasked with implementing or fixing Raycast features:

Identify the core component: Determine if the UI needs a List, Grid, Detail, or Form.
Consult Reference: Open and read the corresponding file in references/api/ (e.g., references/api/list.md).
Use Defaults:

Feedback: Use showToast for Loading/Success/Failure. Use showHUD only for quick background completions.
Data: Use Cache for frequent/transient data, LocalStorage for persistent user data.
Access: Always check environment.canAccess(AI) or environment.canAccess(BrowserExtension) before use.


Implementation: Provide a concise implementation using @raycast/api components.
Citing: Link back to the specific references/api/*.md file you used.

### 1. List & Grid (Searchable UI)

Use List for text-heavy data and Grid for image-heavy data.

List Reference | Grid Reference

<List isLoading={isLoading} searchBarPlaceholder="Search items..." throttle>
  <List.Item
    title="Item Title"
    subtitle="Subtitle"
    accessories={[{ text: "Tag" }]}
    actions={
      <ActionPanel>
        <Action.Push title="View Details" target={<Detail markdown="# Details" />} />
        <Action.CopyToClipboard title="Copy" content="value" />
      </ActionPanel>
    }
  />
</List>

### 2. Detail (Rich Markdown)

Use for displaying long-form content or item details.

Detail Reference

<Detail
  isLoading={isLoading}
  markdown="# Heading\\nContent here."
  metadata={
    <Detail.Metadata>
      <Detail.Metadata.Label title="Status" text="Active" icon={Icon.Checkmark} />
    </Detail.Metadata>
  }
/>

### 3. Form (User Input)

Always include a SubmitForm action.

Form Reference

<Form
  actions={
    <ActionPanel>
      <Action.SubmitForm onSubmit={(values) => console.log(values)} />
    </ActionPanel>
  }
>
  <Form.TextField id="title" title="Title" placeholder="Enter title" />
  <Form.TextArea id="description" title="Description" />
</Form>

### 4. Feedback & Interactivity

Prefer showToast for most feedback.

Toast Reference | HUD Reference

// Success/Failure
await showToast({ style: Toast.Style.Success, title: "Success!" });

// HUD (Overlay)
await showHUD("Done!");

### 5. Data Persistence

Use Cache for performance, LocalStorage for persistence.

Cache Reference | Storage Reference

// Cache (Sync/Transient)
const cache = new Cache();
cache.set("key", "value");

// LocalStorage (Async/Persistent)
await LocalStorage.setItem("key", "value");

### 6. AI & Browser Extension (Restricted APIs)

Always wrap in environment.canAccess checks.

AI Reference | Browser Reference

if (environment.canAccess(AI)) {
  const result = await AI.ask("Prompt");
}

if (environment.canAccess(BrowserExtension)) {
  const tabs = await BrowserExtension.getTabs();
}

### API Reference Tree

UI Components

Action Panel
Detail
Form
Grid
List
User Interface


Interactivity

Actions
Alert
Keyboard
Navigation
Raycast Window Search Bar


Utilities & Services

AI
Browser Extension
Clipboard
Environment
Feedback & HUD

HUD
Toast


OAuth
System Utilities


Data & Configuration

Caching
Colors
Icons & Images
Preferences
Storage


Advanced

Command Related Utilities
Menu Bar Commands
Tool
Window Management

### Examples

For end-to-end examples combining multiple components and APIs, see examples.md.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: xaif
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-12T14:20:50.761Z
- Expires at: 2026-05-19T14:20:50.761Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/raycast)
- [Send to Agent page](https://openagent3.xyz/skills/raycast/agent)
- [JSON manifest](https://openagent3.xyz/skills/raycast/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/raycast/agent.md)
- [Download page](https://openagent3.xyz/downloads/raycast)