fix(requesthunt): address security audit failures on skills.sh#76
Merged
Jing-yilin merged 1 commit intodevelopfrom Apr 19, 2026
Merged
Conversation
- Document SHA256 checksum verification and GitHub Releases source for CLI installer - Add build-from-source alternative (cargo install) - Recommend environment variable over plaintext command-line API key - Use variable references ($YOUR_KEY) instead of example key literals - Add Content Safety section with untrusted-input handling guidelines - Add security note against hardcoding API keys in agent output Addresses: Agent Trust Hub (FAIL), Socket (WARN), Snyk (FAIL) findings for REMOTE_CODE_EXECUTION, PROMPT_INJECTION, COMMAND_EXECUTION, and insecure credential handling (W007, W011, W012).
This file contains hidden or 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
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.
Summary
Fixes security audit failures reported on skills.sh/requesthunt:
Changes
All changes are in
skills/requesthunt/SKILL.md:1. CLI Installer (REMOTE_CODE_EXECUTION / W012 / Anomaly)
cargo install --path cli)2. API Key Handling (W007)
rh_live_your_key) to variable reference ($YOUR_KEY)REQUESTHUNT_API_KEY) as primary methodconfig set-keyto secondary option with owner-only permissions note3. Content Safety (PROMPT_INJECTION / W011)
Notes
The RequestHunt CLI project itself already implements all these security measures (SHA256 verification in
install.sh, env var support, file permissions). These changes document existing protections in the skill SKILL.md so security scanners can detect them.