AgentStack
SKILL verified MIT Self-run

Hotkeyless Ahk Discover

skill-tim0-12432-hotkeylessahk-mcp-skill-hotkeyless-ahk-discover · by tim0-12432

Discover available automation commands on the user's Windows machine via the Hotkeyless AHK HTTP server. Use when the user asks what desktop automation, hotkeys, or AHK commands are available, or before invoking any Hotkeyless AHK command for the first time.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-tim0-12432-hotkeylessahk-mcp-skill-hotkeyless-ahk-discover

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Hotkeyless Ahk Discover? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Hotkeyless AHK – Discover Commands

Hotkeyless AHK is a local HTTP server that exposes AutoHotkey functions as REST endpoints. Before you can invoke any command, you must discover what is available.

Step 1: Fetch available commands

Run exactly this:

curl -s http://localhost:42800/list

The response is a JSON array:

[
  {"command": "OpenBrowser", "note": "None"},
  {"command": "VolumeUp", "note": "None"},
  {"command": "MoveMouse", "note": "None"}
]

Each object has:

  • command: The function name you can invoke via /send/
  • note: Parameter hints or "None" if undocumented

Step 2: Present to user

List all discovered commands in a readable format. Group them by apparent category if possible (e.g. media controls, window management, mouse actions).

If the user asks to do something not covered by any listed command, tell them it's not configured in their Hotkeyless AHK setup.

Configuration

  • Default URL: http://localhost:42800
  • The user may specify a different host or port. Always ask if the default doesn't respond.

Important

  • Always run discovery before invoking commands you haven't seen yet.
  • Do not guess command names. Only use names returned by /list.
  • The available commands are user-configured and differ per machine.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.