Install
$ agentstack add skill-tim0-12432-hotkeylessahk-mcp-skill-hotkeyless-ahk-discover ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
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.
- Author: tim0-12432
- Source: tim0-12432/HotkeylessAHK-mcp-skill
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.