TrueCrimeDev/ClautoHotkey

In-depth AHK v2 coding harness build with all the tools to create advanced AHK v2 projects.

47Stars on the repository
62Mods indexed here, across every type
7d agoLast push, which is what freshness is scored on
noneNo LICENSE: all rights reserved, so bodies are not copied

ahk-audit-errors

01

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Audit AHK v2 code for silent failures and inadequate error handling. Hunts for empty catch blocks, swallowed errors, broad bare-catches that hide unrelated failures, and fallbacks that mask problems from the user. TRIGGER when: user says "audit errors", "check error handling", "find silent failures", "review error…

not rated 47 7d ago A 91 tokens

ahk-com

02

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

COM automation and interop for AHK v2 — driving Excel / Word / WMI / Internet Explorer via IDispatch, COM events, ComValue / SafeArrays, and direct vtable ComCall. Use when automating another application, wiring COM events, or calling a COM interface. TRIGGER when: user says "automate Excel/Word", "COM object"…

not rated 47 7d ago A 136 tokens

ahk-convert

03

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Convert AHK v1 code to AHK v2. Applies comprehensive v1-to-v2 conversion rules including command syntax, expression changes, GUI rewrites, and object model updates. TRIGGER when: user says "convert to v2", "v1 to v2", "upgrade script", "migrate from v1", "convert this old script", "make this v2".

not rated 47 7d ago A 84 tokens

ahk-debug-dashboard

04

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Show a compact debug state dashboard during an active debugging session. Queries MCP resources for connection status, breakpoints, variables, and call stack. TRIGGER when: user says "debug dashboard", "show debug state", "debug status", "what's the debugger showing", "debug overview".

not rated 47 7d ago A 63 tokens

ahk-dllcall

05

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Native calls and raw memory for AHK v2 — DllCall to Windows/native APIs, Buffer + NumGet/NumPut for structs, StrPut/StrGet, CallbackCreate, and the alpha.30 typed Struct. Use when calling a DLL/WinAPI function, building or reading a struct, or passing a callback to native code. TRIGGER when: user says "DllCall", "call…

not rated 47 7d ago A 150 tokens

ahk-docs

06

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Search AHK v2 documentation for a function, method, directive, or concept. Returns relevant documentation excerpts with syntax and examples. TRIGGER when: user says "docs for", "how does X work in AHK", "AHK docs", "look up", "what is the syntax for", "documentation".

not rated 47 7d ago A 69 tokens

ahk-eval

07

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Live AHK v2 REPL backed by the fork's native Eval() BIF. Execute AHK expressions and get immediate results without writing a multi-line script. Use when testing snippets, checking syntax, or evaluating expressions without creating files. TRIGGER when: user says "eval", "try this expression", "what does X return"…

not rated 47 7d ago A 113 tokens

ahk-fix

08

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Load AHK v2 error diagnosis, debugging, and fix knowledge. Use when diagnosing errors, fixing broken scripts, or debugging unexpected behavior. TRIGGER when: user mentions error, crash, broken, not working, debug, exception, TypeError, UnsetError, ValueError, OSError, syntax error, runtime error, fix, problem, issue…

not rated 47 7d ago A 122 tokens

ahk-gui-gen

09

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Generate a complete AHK v2 GUI from a natural language description. Creates class-based, mathematically positioned GUIs with proper event binding. TRIGGER when: user says "generate a GUI", "build me a window", "create a dialog", "make a form", "design a settings panel", "build a tool with UI".

not rated 47 7d ago A 74 tokens

ahk-gui

10

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Load AHK v2 GUI knowledge for window creation, layout, controls, events, and dark mode. Use when creating or modifying GUIs, positioning controls, handling events, or applying themes. TRIGGER when: user mentions gui, window, dialog, control, layout, button, ListView, ComboBox, dark mode, OnEvent, OnSize, positioning…

not rated 47 7d ago A 136 tokens

ahk-mistakes

11

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Show your most common AHK v2 mistakes from the error log. Reads .claude/error-log.jsonl and reports recurring patterns with prevention tips. TRIGGER when: user says "my mistakes", "common errors", "what do I keep getting wrong", "error patterns", "recurring bugs".

not rated 47 7d ago A 67 tokens

ahk-modernize

12

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Modernize outdated AHK v2 patterns in a script. Finds and upgrades old syntax like new ClassName(), ComObjCreate(), missing #Requires, and bare = assignments. TRIGGER when: user says "modernize", "upgrade patterns", "update old syntax", "clean up v2 code", "fix old patterns", "convert to modern v2".

not rated 47 7d ago A 78 tokens

ahk-new-class

13

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Scaffold a new AHK v2 class with proper structure, constructor, destructor, and property stubs. TRIGGER when: user says "new class", "create a class", "scaffold class", "class template", "start a new class".

not rated 47 7d ago A 57 tokens

ahk-oop

14

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Load AHK v2 OOP knowledge for class design, objects, arrays, and dynamic properties. Use when working with classes, inheritance, objects, arrays, Map, prototypes, or property descriptors. TRIGGER when: user mentions class, object, inheritance, extends, super, property, DefineProp, Array, Map, prototype, New, Delete…

not rated 47 7d ago A 127 tokens

ahk-ref

15

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Load comprehensive AHK v2 reference covering all domains — OOP, GUI, text, errors, data structures. Use as a general-purpose fallback when no specific domain skill applies, or when the task spans multiple areas. TRIGGER when: user mentions #Include, library, import, reference, comprehensive, overview, data structures…

not rated 47 7d ago A 155 tokens

ahk-run

16

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Run an AHK v2 script against the alpha.30+Console fork and capture its output. Executes headlessly with stdout/stderr capture and exit-code reporting. TRIGGER when: user says "run this", "execute", "test run", "try running", "launch script", "check output".

not rated 47 7d ago A 66 tokens

ahk-text

17

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Load AHK v2 text processing, string operations, regex, and escape knowledge. Use when working with strings, regex, escaping, concatenation, or text manipulation. TRIGGER when: user mentions string, regex, escape, backtick, quote, concatenation, RegExMatch, RegExReplace, StrReplace, SubStr, InStr, StrLen, StrLower…

not rated 47 7d ago A 131 tokens

ahk-versions

18

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

AHK v2 version & portability guidance — what runs on stock v2.0 vs v2.1-alpha vs the +Console fork, and how to write code that works on the build the user actually has. Use when choosing a #Requires floor, checking whether Print / Eval / typed Struct / (a?)() are available, detecting the interpreter at runtime, or…

not rated 47 7d ago A 172 tokens

ahk-winapi

19

TrueCrimeDev/ClautoHotkey

Skill Claude CodeCodex

Windows messages, subclassing, owner-draw, DWM frame styling, and WinRT for AHK v2. Use when intercepting window messages, subclassing a control, applying a dark title bar / Mica / Acrylic / rounded corners, or calling a Windows Runtime (WinRT) API. TRIGGER when: user says "OnMessage", "SendMessage/PostMessage"…

not rated 47 7d ago A 145 tokens

At most 3 mods per repository are shown here, and a mod shipped inside a plugin is left to that plugin's page — the rest are on their repository pages: