Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

raycast-script-creator光线投射脚本创建者

Agent Skill

raycast-script-creator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

441

周安装

18

GitHub Stars

20

下载量

141
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:raycast-script-creator(光线投射脚本创建者)
来源仓库:https://github.com/drpedapati/raycast-script-creator
仓库路径:skills/raycast-script-creator
安装命令:
npx skills add https://github.com/drpedapati/raycast-script-creator --skill raycast-script-creator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/drpedapati/raycast-script-creator --skill raycast-script-creator

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 安装方式:通过 GitHub 仓库安装,命令为 npx skills add https://github.com/drpedapati/raycast-script-creator --skill raycast-script-creator。
  • 适用宿主:Codex、Claude、Cursor、Gemini CLI。

SKILL.md

Raycast Script Creator

Overview

Create valid Raycast script-commands with proper metadata formatting and structure. Raycast script-commands are executable scripts that integrate with the Raycast launcher, enabling quick access to custom workflows, system commands, and automation tasks from anywhere on macOS.

When to Use This Skill

Activate this skill when users request:

  • "Create a Raycast script to..."
  • "Make a Raycast command for..."
  • "Build a script-command that..."
  • "Add a Raycast shortcut to..."
  • Any task involving creating automation scripts for the Raycast launcher

Core Principles

1. Metadata is Mandatory

Every Raycast script MUST include properly formatted metadata comments at the top of the file. The three required fields are:

  • @raycast.schemaVersion (always set to 1)
  • @raycast.title (the display name in Raycast)
  • @raycast.mode (how output is presented)

2. Output Mode Selection

Choose the appropriate mode based on the script's purpose:

  • silent - Instant commands with minimal output (toggle settings, quick actions)
  • compact - Long-running background tasks (network requests, API calls)
  • fullOutput - Scripts with substantial output to display (file contents, logs)
  • inline - Auto-refreshing data displayed in search results (requires @raycast.refreshTime)

3. Language Support

Raycast supports multiple scripting languages:

  • Shell/Bash (most common)
  • Python
  • JavaScript/Node.js
  • Ruby
  • Swift
  • AppleScript

Creating Raycast Scripts

Step 1: Understand the User's Request

Determine:

  1. What action should the script perform?
  2. What output (if any) should be displayed?
  3. Does it need user input (arguments)?
  4. Should it run in the background or show results?
  5. Is confirmation needed before execution?

Step 2: Select the Appropriate Template

Choose a template from assets/ based on the preferred language:

  • template.sh - Shell/Bash scripts (recommended for most tasks)
  • template.py - Python scripts
  • template.js - JavaScript/Node.js scripts
  • template.rb - Ruby scripts
  • template.swift - Swift scripts
  • template.applescript - AppleScript

Step 3: Configure Metadata

Start with the template and update the metadata fields:

Required Fields:

# @raycast.schemaVersion 1
# @raycast.title [Descriptive Title]
# @raycast.mode [silent|compact|fullOutput|inline]

Recommended Optional Fields:

# @raycast.icon [emoji or file path]
# @raycast.packageName [Category Name]
# @raycast.description [What the script does]

Additional Optional Fields:

# @raycast.needsConfirmation [true|false]
# @raycast.currentDirectoryPath [directory path]
# @raycast.refreshTime [10s|1m|12h|1d] (required for inline mode)
# @raycast.author [Your Name]
# @raycast.authorURL [Your URL]

Step 4: Implement the Script Logic

Write the actual script code below the metadata comments. The script should:

  • Perform the requested action
  • Output appropriate information (based on mode)
  • Handle errors gracefully
  • Exit with proper exit codes (0 for success, non-zero for failure)

Step 5: Validate the Script

Ensure:

  1. All three required metadata fields are present
  2. The chosen mode matches the script's behavior
  3. If using inline mode, @raycast.refreshTime is specified
  4. The shebang line is correct for the language
  5. File has executable permissions
  6. For bash scripts, consider running through ShellCheck

Common Patterns and Examples

Pattern 1: Open Application or Folder (silent mode)

Use when creating shortcuts to open applications, folders, or files instantly.

#!/bin/bash
# @raycast.schemaVersion 1
# @raycast.title Open Downloads
# @raycast.mode silent
# @raycast.icon 🗂️
# @raycast.packageName System Tools

open ~/Downloads

Pattern 2: Development Environment Launcher (compact mode)

Use for opening projects in editors or starting development servers.

#!/bin/bash
# @raycast.schemaVersion 1
# @raycast.title Open Project in Cursor
# @raycast.mode compact
# @raycast.icon 💻
# @raycast.packageName Developer Tools

cursor ~/Documents/my-project

Pattern 3: System Information Display (fullOutput mode)

Use for displaying detailed information, logs, or multi-line output.

#!/bin/bash
# @raycast.schemaVersion 1
# @raycast.title System Info
# @raycast.mode fullOutput
# @raycast.icon 💻
# @raycast.packageName System Tools

echo "System Information:"
echo "==================="
system_profiler SPHardwareDataType SPSoftwareDataType

Pattern 4: Live Status Monitor (inline mode)

Use for displaying auto-refreshing data like system stats or API data.

#!/bin/bash
# @raycast.schemaVersion 1
# @raycast.title CPU Usage
# @raycast.mode inline
# @raycast.icon 📊
# @raycast.refreshTime 5s
# @raycast.packageName System Monitor

top -l 1 | grep "CPU usage" | awk '{print "CPU: " $3 " " $5}'

Pattern 5: Destructive Action with Confirmation (needsConfirmation)

Use for actions that modify system state or delete files.

#!/bin/bash
# @raycast.schemaVersion 1
# @raycast.title Clear Downloads Folder
# @raycast.mode compact
# @raycast.icon 🗑️
# @raycast.needsConfirmation true
# @raycast.packageName System Tools

rm -rf ~/Downloads/*
echo "Downloads folder cleared"

Pattern 6: Script with Arguments

Use when the script needs user input at runtime.

#!/bin/bash
# @raycast.schemaVersion 1
# @raycast.title Create Folder
# @raycast.mode compact
# @raycast.icon 📁
# @raycast.argument1 { "type": "text", "placeholder": "Folder name" }

mkdir -p "$1"
echo "Created folder: $1"

Important Constraints and Best Practices

File Naming

  • Avoid .template. in filenames (reserved for templates requiring configuration)
  • Use descriptive, kebab-case names: open-downloads.sh, system-info.py
  • Include file extension matching the language

Script Permissions

  • Scripts must be executable: chmod +x script-name.sh
  • Typically stored in ~/.config/raycast/scripts/ or custom script directories

Shell Environment

  • Scripts run in non-login shells by default
  • To use login shell: #!/bin/bash -l
  • /usr/local/bin is automatically in $PATH

Error Handling

  • Use exit code 0 for success
  • Use non-zero exit codes for failures (triggers error notification)
  • Provide meaningful error messages via stderr

Output Guidelines

  • silent mode: Minimal or no output
  • compact mode: Last line shown in toast
  • fullOutput mode: All output displayed
  • inline mode: First line shown and refreshed

Metadata Comments

  • Use # for Shell, Python, Ruby
  • Use // for JavaScript, Swift
  • Place metadata at the top of the file, after the shebang
  • Format: # @raycast.fieldName value

Workflow Decision Tree

When creating a Raycast script, follow this decision process:

  1. What language? → Choose template from assets/
  2. What's the output behavior?

- No output needed → mode: silent - Background task → mode: compact - Detailed output → mode: fullOutput - Auto-refreshing data → mode: inline + add refreshTime

  1. Needs confirmation? → Add needsConfirmation: true
  2. Needs user input? → Add argument1, argument2, or argument3
  3. Part of a group? → Set packageName to category
  4. Visual icon? → Set icon to emoji or file path

Reference Documentation

For detailed information about metadata fields and output modes, refer to:

  • references/raycast-metadata.md - Complete metadata reference with all fields and modes

Templates

All language templates are available in the assets/ directory:

  • assets/template.sh - Bash/Shell
  • assets/template.py - Python 3
  • assets/template.js - JavaScript/Node.js
  • assets/template.rb - Ruby
  • assets/template.swift - Swift
  • assets/template.applescript - AppleScript

Output Format

Always output a complete, valid Raycast script with:

  1. Proper shebang line
  2. All required metadata fields
  3. Appropriate optional metadata
  4. Functional script implementation
  5. Comments explaining key logic (if complex)

The script should be ready to save, make executable, and use immediately in Raycast.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.63%
按下载量换算49

Claude

29.11%
按下载量换算41

Cursor

18.73%
按下载量换算26

Gemini CLI

8.28%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/drpedapati/raycast-script-creator --skill raycast-script-creator 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills