Skip to content

Commit f9409f9

Browse files
Add template for script commands written in Swift
1 parent 2c8560f commit f9409f9

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
File renamed without changes.
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/usr/bin/swift
2+
3+
// Raycast Script Command Template
4+
//
5+
// Duplicate this file and remove ".template." from the filename to get started.
6+
// See full documentation here: https://github.com/raycast/script-commands
7+
//
8+
// Required parameters:
9+
// @raycast.schemaVersion 1
10+
// @raycast.title My First Script
11+
// @raycast.mode fullOutput
12+
//
13+
// Optional parameters:
14+
// @raycast.icon 🤖
15+
// @raycast.currentDirectoryPath ~
16+
// @raycast.packageName Raycast Scripts
17+
// @raycast.needsConfirmation false
18+
19+
print("Hello from My First Script")

0 commit comments

Comments
 (0)