Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions packages/raycast/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

## [1.0.0] - {PR_MERGE_DATE}

### Added

- Initial release
- **Lookup Domain** command for manual domain lookups
- **Inspect Current Tab** command for browser tab inspection
- Support for Safari, Chrome, Arc, Edge, Brave, and Firefox
- Comprehensive domain reports including:
- WHOIS/RDAP registration data
- DNS records with TTL and priority
- SSL certificate chain
- Hosting, DNS, and email provider detection
- HTTP headers and security analysis
- SEO metadata and robots.txt parsing
- Quick actions for opening reports, copying data
- Configurable API base URL for self-hosted instances
21 changes: 21 additions & 0 deletions packages/raycast/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2025 Jake Jarvis

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
59 changes: 59 additions & 0 deletions packages/raycast/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Domainstack for Raycast

Look up WHOIS, DNS, SSL certificates, hosting providers, and SEO data for any domain directly from Raycast.

## Features

- **Lookup Domain**: Enter any domain to get a comprehensive report including:
- WHOIS/RDAP registration data (registrar, dates, nameservers, DNSSEC)
- DNS records (A, AAAA, CNAME, MX, TXT, NS, etc.)
- SSL certificate chain and validity
- Hosting, DNS, and email provider detection
- HTTP headers and security analysis
- SEO metadata and robots.txt

- **Inspect Current Tab**: Instantly analyze the domain of your current browser tab
- Supports Safari, Chrome, Arc, Edge, Brave, Firefox, and other Chromium browsers

## Commands

| Command | Description |
|---------|-------------|
| `Lookup Domain` | Look up information for a specific domain |
| `Inspect Current Tab` | Inspect the domain of the active browser tab |

## Actions

- **Open Full Report**: View the complete report on domainstack.io
- **Visit Domain**: Open the domain in your browser
- **Copy Domain**: Copy the domain name to clipboard
- **Copy Report URL**: Copy the domainstack.io report URL
- **Copy DNS Records**: Copy all DNS records in zone file format

## Rate Limits

The Domainstack API has rate limits to ensure fair usage:
- Registration lookups: 30 requests/minute
- DNS lookups: 60 requests/minute
- Other endpoints: 30 requests/minute

If you hit a rate limit, wait a few seconds before retrying.

## Configuration

### API Base URL

By default, the extension uses `https://domainstack.io`. You can change this in the extension preferences if you're running a self-hosted instance.

## Privacy

This extension sends domain names to the Domainstack API for lookup. No other data is collected or transmitted. See [domainstack.io/privacy](https://domainstack.io/privacy) for the full privacy policy.

## Support

- Report issues: [GitHub Issues](https://github.com/jakejarvis/domainstack.io/issues)
- Website: [domainstack.io](https://domainstack.io)

## License

MIT License - see [LICENSE](LICENSE) for details.
Binary file added packages/raycast/assets/extension-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions packages/raycast/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import raycastConfig from "@raycast/eslint-config";
import { defineConfig } from "eslint/config";

export default defineConfig([...raycastConfig]);
Loading
Loading