You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🎉 First of all, thanks for taking the time to contribute! 🎉
4
+
5
+
- If you want to create a new extension, follow the [Create Your First Extension](https://developers.raycast.com/basics/create-your-first-extension) guide.
6
+
- If you want to contribute to an existing extension, follow the [Contribute to an Extension](https://developers.raycast.com/basics/contribute-to-an-extension) guide.
7
+
8
+
We're still figuring things out and updating our guidelines. If at any point something is unclear, please tell us in [our community](https://raycast.com/community).
Copy file name to clipboardexpand all lines: docs/basics/contribute-to-an-extension.md
+4-10
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@
2
2
description: Learn how to import an extension to collaborate with others.
3
3
---
4
4
5
-
# Import an Extension
5
+
# Contribute to an Extension
6
6
7
-
All published extensions are open source and can be found in [this repository](https://github.com/raycast/extensions). This makes it easy for multiple developers to collaborate. This guide explains how to import an extension to develop on it.
7
+
All published extensions are open source and can be found in [this repository](https://github.com/raycast/extensions). This makes it easy for multiple developers to collaborate. This guide explains how to import an extension in order to fix a bug, add a new feature or otherwise contribute to it.
8
8
9
9
### Get source code
10
10
@@ -14,16 +14,10 @@ First, you need to find the source code of the extension. The easiest way to do
14
14
15
15
Then, you need to [clone our repository](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository) to have the source code locally.
16
16
17
-
### Import the extension
18
-
19
-
After you cloned the repository, open the Import Extension command and select the folder of the extension that you want to import. For this guide, we add the [API Examples](https://github.com/raycast/extensions/tree/main/examples/api-examples) extension.
20
-
21
-

22
-
23
17
### Develop the extension
24
18
25
-
Continue to the Manage Extensions command, select the imported extension, and press `↵` to open it in your default text editor. Then run `npm install && npm run dev` from the extension folder in your Terminal to start developing the extension.
19
+
After you've cloned the repository, open the Terminal and navigate to the extension's folder. For this guide, we are modifying the [API Examples](https://github.com/raycast/extensions/tree/main/examples/api-examples) extension. Once there, run `npm install && npm run dev` from the extension folder in your Terminal to start developing the extension.
26
20
27
21

28
22
29
-
You should see your imported extension at the top of your root search and can open its commands. When you're done remixing the extension, submit a pull request to [publish your changes to the store](publish-an-extension.md).
23
+
You should see your imported extension at the top of your root search and can open its commands. When you're done remixing the extension, make sure to add yourself to the contributors section of its [manifest](./../information/manifest.md##extension-properties), then submit a pull request to [publish your changes to the store](publish-an-extension.md).
Copy file name to clipboardexpand all lines: docs/basics/publish-an-extension.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ To share your extension with others, you need to open a pull request in our [rep
23
23
After you opened a pull request, we'll review your extension and request changes when required. Once accepted, the pull request is merged and your extension will be automatically published to the [Raycast Store](https://raycast.com/store).
24
24
25
25
{% hint style="info" %}
26
-
We're still figuring things out and update our guidelines. If something is unclear, please tell us in [our community](https://raycast.com/community).
26
+
We're still figuring things out and updating our guidelines. If something is unclear, please tell us in [our community](https://raycast.com/community).
0 commit comments