Skip to content

Commit 8e1f475

Browse files
committed
Toolkit: Move extensions.md to commands folder
1 parent cd36cee commit 8e1f475

File tree

5 files changed

+34
-1001
lines changed

5 files changed

+34
-1001
lines changed

.github/workflows/documentation.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ jobs:
2727
else
2828
git config --local user.email "bot@raycast.com" &&
2929
git config --local user.name "Raycast Bot" &&
30-
git add extensions.md extensions.json &&
30+
mv extensions.md commands/README.md
31+
mv extensions.json commands/extensions.json
32+
git add commands/README.md commands/extensions.json &&
3133
git commit -m "Update Script Commands documentation" &&
3234
exit 0;
3335
fi

commands/README.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Raycast Script Commands
2+
3+
[Raycast](https://raycast.com) lets you control your tools with a few keystrokes
4+
and Script Commands makes it possible to execute scripts from anywhere on your desktop.
5+
They are a great way to speed up every-day tasks such as converting data, opening bookmarks
6+
or triggering dev workflows.
7+
8+
This repository contains sample commands and documentation to write your own ones.
9+
10+
### Content
11+
12+
- [Commands](#commands)
13+
14+
## Commands
15+
16+
## Community
17+
18+
This is a shared place and we're always looking for new Script Commands or other ways to improve Raycast.
19+
If you have anything cool to show, please send us a pull request. If we screwed something up,
20+
please report a bug. Join our
21+
[Slack community](https://join.slack.com/t/raycastcommunity/shared_invite/zt-hhzj9i4m-D5~HwnTRsJKrcZmVDJ4mkg)
22+
to brainstorm ideas with like-minded folks.

commands/extensions.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[
2+
{
3+
"name" : "Commands",
4+
"path" : "commands",
5+
"scriptCommands" : [
6+
7+
]
8+
}
9+
]

0 commit comments

Comments
 (0)