RepoJet
s Search repositories across multiple GitHub organizations directly from Raycast.
- Screenshots
- Features
- Setup
- Usage
- Repository Aliases
- Keyboard Shortcuts
- Authentication
- Example Queries
- Rate Limiting
- Releases
- Troubleshooting
Screenshots
|
RepoJet |
![]() Finding the extension |
![]() Initial setup |
![]() Configuration |
![]() Repository list |
![]() Search results |
![]() Bookmarked repos |
![]() Actions menu |
![]() Clone success |
![]() Invalid token |
![]() No results |
![]() Error state |
Features
- Search repositories across multiple GitHub organizations
- Bookmark repositories to keep them at the top of your list
- Repository aliases - set custom short names for quick access (e.g., "gh" for "your-github-repository-with-a-long-name")
- Clone repositories directly to your local machine with one command
- Customizable clone directory - choose where repos are cloned
- Support for private repositories with GitHub Personal Access Token
- Real-time search with instant results
- Quick access to repository URLs and clone commands
Setup
1. Install the Extension
Option 1: Official Extension (Private)
This extension is currently available as a private extension at https://www.raycast.com/konghq/repojet. If you have access, you can install it directly from the Raycast Store.
Option 2: Local Installation
For local development or if you don't have access to the private extension:
- Download the latest release from the Releases page
- Extract the downloaded archive
- In Raycast, use the "Import Extension" command
- Navigate to the extracted folder and select it
- The extension will be installed and ready to use
Option 3: Build from Source
# Clone the repository
git clone https://github.com/arashsheyda/repojet.git
cd repojet
# Install dependencies
npm install
# Build the extension
npm run build
# Import into Raycast
# Use Raycast's "Import Extension" command and select this directory
2. Configure GitHub Token (Optional but Recommended)
To access private repositories and increase API rate limits:
- Go to GitHub Settings > Developer settings > Personal access tokens > Tokens (classic)
- Click "Generate new token (classic)"
- Give it a descriptive name like "Raycast RepoJet Extension"
- Select the
reposcope, this grants:- Full control of private repositories (read access)
- Access to repository metadata
- Read access to organization repositories
- Set an appropriate expiration date (recommended: 90 days or less for security)
- Click "Generate token" at the bottom
- Important: Copy the token immediately - you won't be able to see it again!
- For SSO-enabled organizations: After creating the token, you must authorize it for each organization:
- Go to Personal Access Tokens
- Click on your newly created token
- Under "Configure SSO", click Authorize next to each organization you want to search
- This step is required for accessing repositories in organizations with SAML SSO enabled
Security Note: This extension only requires read access. The token validation will reject tokens with dangerous write/admin scopes like delete_repo, workflow, admin:org, or write:repo_hook.
3. Add Organizations
- Open Raycast
- Search for "GitHub Organization Search" → "Search Repositories"
- If not configured, you'll see setup instructions
- Open Preferences (⌘,)
- Paste your GitHub token in "GitHub Personal Access Token"
- Enter your organization names (comma-separated) in "GitHub Organizations"
- Example:
myorg1, myorg2, personal-org
- Example:
- (Optional) Set your preferred "Clone Directory" for cloning repositories
- Default:
~/Developer - You can use paths like
~/Projects,~/Code, or any absolute path
- Default:
4. Start Searching
Search for repositories by name, description, or language!
Usage
- Open Raycast (default:
⌘Space) - Type "Search Repositories" and hit Enter
- Type to search (e.g., "react", "api", "database", or your custom aliases)
- Results show:
- Repository name and description
- Star count
- Programming language
- Privacy status (if private)
- Bookmark indicator (yellow star) for bookmarked repos
- Alias badge (purple tag) if you've set a custom alias
- Available actions:
- Enter - Open repository in browser
- ⌘D - Clone repository to your configured directory
- ⌘B - Bookmark/unbookmark repository (bookmarked repos stay at the top)
- ⌘L - Set or edit repository alias
- ⌘⇧L - Remove repository alias
- ⌘C - Copy repository URL
- ⌘⇧C - Copy git clone URL
Repository Aliases
Create custom short names for repositories to find them quickly:
Setting an Alias
- Find the repository you want to alias
- Press ⌘L or select "Set Alias" from the actions menu
- Enter a short name (e.g., "lln" for "long-long-name")
- Press Enter to save
Using an Alias
Simply type the alias in the search bar. The repository will be found and prioritized in the results.
Example:
- Repository:
my-organization/very-long-repository-name - Set alias:
vlrn - Search: Type
vlrnto quickly find this repo
Managing Aliases
- Edit: Press ⌘L on a repository with an existing alias to change it
- Remove: Press ⌘⇧L to delete the alias
- Visual indicator: Repositories with aliases show a purple badge with the alias name
Aliases are stored locally and work offline. They complement bookmarks by providing quick text-based access.
Keyboard Shortcuts
- ⌘D - Clone repository to local machine
- ⌘B - Toggle bookmark (keeps repos at the top)
- ⌘L - Set or edit repository alias
- ⌘⇧L - Remove repository alias
- ⌘C - Copy repository URL
- ⌘⇧C - Copy git clone URL
- ⌘, - Open preferences
Authentication
The extension uses GitHub's REST API v3. Authentication is optional but recommended:
- Without token: Limited to public repositories, 60 requests/hour
- With token (classic PAT): Access to private repositories, 5,000 requests/hour
Token Requirements
- Must be a Personal Access Token (classic)
- Required scope:
repo(for private repository access) - Token will be validated for security - tokens with dangerous write/admin scopes will be rejected
Example Queries
react- Find React-related repositoriesdatabase- Find database-related repositorieslanguage:python- Find Python repositoriesstars:>1000- Find popular repositoriesis:private- Find private repositories (requires token)gh- Search using your custom alias (e.g., if you set "gh" as an alias for "your-github-repository-with-a-long-name")
Rate Limiting
GitHub API has rate limits:
- Without token: 60 requests/hour
- With token: 5,000 requests/hour
The extension caches results, so repeated searches are instant.
Releases
Automatic Releases with Conventional Commits
This project uses Conventional Commits for automatic versioning and releases. When you push commits to the main branch, the release workflow automatically:
- Analyzes your commit messages
- Determines the appropriate version bump
- Updates
package.json - Creates a git tag
- Builds and publishes a GitHub release
Downloading Releases
Visit the Releases page to download the latest version for local installation.
Troubleshooting
No results found
- Check that your organizations are spelled correctly
- Ensure the GitHub token is valid (if using private repos)
- Try simpler search terms
"API rate limit exceeded"
- Add a GitHub Personal Access Token to increase limits
- Wait an hour for the limit to reset
Can't access private repositories
- Ensure your token is a Personal Access Token (classic) with
reposcope - For SSO organizations: Make sure you've authorized the token for SSO access to each organization (see step 8 in setup)
- Token might have expired (regenerate if needed)
- Check that you have access to the organizations you're searching










