โ† All skills
Tencent SkillHub ยท Developer Tools

raycast

Build and maintain Raycast extensions using the Raycast API. Triggers on @raycast/api, List, Grid, Detail, Form, AI.ask, LocalStorage, Cache, showToast, and BrowserExtension. Use this repo's references/api/*.md files as the primary source of truth for component specs and API usage.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Build and maintain Raycast extensions using the Raycast API. Triggers on @raycast/api, List, Grid, Detail, Form, AI.ask, LocalStorage, Cache, showToast, and BrowserExtension. Use this repo's references/api/*.md files as the primary source of truth for component specs and API usage.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Item is unstable.

This item is timing out or returning errors right now. Review the source page and try again later.

Quick setup
  1. Wait for the source to recover or retry later.
  2. Review SKILL.md only after the source returns a real package.
  3. Do not rely on this source for automated install yet.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
examples.md, SKILL.md, references/api/storage.md, references/api/detail.md, references/api/icons-images.md, references/api/hud.md

Validation

  • Wait for the source to recover or retry later.
  • Review SKILL.md only after the download returns a real package.
  • Treat this source as transient until the upstream errors clear.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item is currently unstable or timing out.

  1. Open the source page via Review source status.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item is currently unstable or timing out. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item is currently unstable or timing out. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

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.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
6 Docs
  • SKILL.md Primary doc
  • examples.md Docs
  • references/api/detail.md Docs
  • references/api/hud.md Docs
  • references/api/icons-images.md Docs
  • references/api/storage.md Docs