-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(extensions): Add Generate Secret & Cursorrules - Developer Productivity Tools #16858
Open
nyxb
wants to merge
9
commits into
raycast:main
Choose a base branch
from
nyxb:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add two new extensions to the Raycast repository: Generate Secret: - Cryptographically secure random secret generator - Multiple lengths (16, 32, 64, 128 characters) - Automatic clipboard copy - Web version integration (generate-secret.nyxb.nexus) Cursorrules: - Integration with cursorrul.es - Easy access to cursor rules within Raycast - Streamlined cursor rule management Changes: - Add extensions/generate-secret/ - Add extensions/cursorrules/ - Update respective documentation
- Add metadata screenshots for store listings - Move demo GIFs to assets folder for READMEs - Update README documentation structure - Fix asset organization according to Raycast guidelines Extensions affected: - generate-secret - cursorrules
Add npm lock files for dependency version control: - extensions/generate-secret/package-lock.json - extensions/cursorrules/package-lock.json Ensures consistent dependency versions across installations
Add initial changelog files for: - generate-secret - cursorrules Document initial release features as required by Raycast guidelines
Remove owner field from generate-secret package.json to comply with Raycast's public extension guidelines. Extensions should be published under personal accounts rather than organizations.
Remove owner field from generate-secret package.json to comply with Raycast's public extension guidelines. Extensions should be published under personal accounts rather than organizations.
- Resize extension icons to required 512x512px - Update metadata screenshots to 2000x1250px format - Fix code formatting with Prettier - Update extension titles to proper Title Case - Run lint fixes on all source files Extensions affected: - generate-secret - cursorrules All changes comply with Raycast store requirements
LitoMore
suggested changes
Feb 6, 2025
…t-in crypto module - Remove crypto npm package dependency - Use node:crypto built-in module with randomBytes - Add node: prefix for better clarity and future-proofing This change removes an unnecessary dependency while maintaining the same secure random generation functionality using Node.js native implementation.
LitoMore
reviewed
Feb 6, 2025
extensions/cursorrules/src/components/actions/CopyRuleAction.tsx
Outdated
Show resolved
Hide resolved
The callback options are handled automatically by the crossLaunchCommand function, so there's no need for the additional parameter or TODO comment.
@LitoMore done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add Generate Secret and Cursorrules Extensions
Description
Adding two new productivity-focused extensions to the Raycast Store:
Screencast
Screenshots for both extensions can be found in their respective metadata folders:
extensions/generate-secret/metadata/
extensions/cursorrules/metadata/
Additional demo GIFs are available in the README files:
extensions/generate-secret/assets/demo.gif
extensions/cursorrules/assets/demo.gif
Checklist
npm run build
and tested this distribution build in Raycastassets
folder are used by the extension itselfREADME
are placed outside of themetadata
folder