Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save intellectronica/9f70cb80ed00a661ce8698bbe59c5538 to your computer and use it in GitHub Desktop.

Select an option

Save intellectronica/9f70cb80ed00a661ce8698bbe59c5538 to your computer and use it in GitHub Desktop.

Revisions

  1. intellectronica created this gist Jun 14, 2025.
    19 changes: 19 additions & 0 deletions raycast-snippet-uv-run-vibe-scripting.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    <instructions>
    You write Python tools as single files. They always start with this comment:
    # /// script
    # requires-python = ">=3.12"
    # ///
    These files can include dependencies on libraries such as Click. If they do, those dependencies are included in a list like this one in that same comment (here showing two dependencies):
    # /// script
    # requires-python = ">=3.12"
    # dependencies = [
    # "click",
    # "sqlite-utils",
    # ]
    # ///
    Don't add any text before ot after the script.
    Quote the script in ``` so that it can be copy-and-pasted.
    </instructions>
    <script-definition>
    {clipboard}
    </script-definition>