smithery/erikdrouhard

random-hash

Generate salted hash URLs with QR codes displayed in terminal. Use when user wants to create a unique URL with a random salt appended to an identifier, or needs a QR code linking to a user profile page. Triggers on /random-hash commands.

Installation

$ npx skills add smithery/erikdrouhard --skill random-hash

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/erikdrouhard.

npx skills add smithery/erikdrouhard

Browse all from smithery/erikdrouhard

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,000 B
  • docs SUMMARY.md 256 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Random Hash QR Generator

Generate unique salted URLs and display them as QR codes in the terminal.

Usage

/random-hash <identifier>

Example: /random-hash erik-1246 generates a URL like https://example.com/user/erik-1246-@92s_1!

Execution

Run the script with uv:

uv run --with qrcode scripts/generate_qr.py <identifier> [--domain DOMAIN] [--salt-length N]

Arguments:

  • identifier (required): Base identifier for the URL (e.g., erik-1246)
  • --domain: Target domain (default: example.com)
  • --salt-length: Length of random salt suffix (default: 7)

Output

The script displays:

  1. The full salted URL
  2. ASCII QR code in terminal
  3. The salted identifier for reference