---
name: GMod Addon Maker
slug: gmod-addon-maker
category: Quality
description: "GMod Addon Maker assists with creating and managing Garry's Mod addons, including Lua scripting, content creation, and addon packaging. Use it when developing new addons, writing Lua scripts, debugging, organizing files, or packaging for distribution."
github: "https://github.com/davila7/claude-code-templates/tree/main/cli-tool/components/skills/gmod-addon-maker"
language: Python
stars: 30236
forks: 3396
install: "npx degit https://github.com/davila7/claude-code-templates/tree/main/cli-tool/components/skills/gmod-addon-maker ~/.claude/skills/gmod-addon-maker"
installs_to: ~/.claude/skills/gmod-addon-maker
source_path: cli-tool/components/skills/gmod-addon-maker/SKILL.md
collection_size: 25
category_size: 1354
collection_url: "https://dirskills.com/collections/davila7/claude-code-templates"
added: 2026-08-14T07:11:39.999Z
last_synced: 2026-08-14T07:11:39.999Z
canonical_url: "https://dirskills.com/skills/gmod-addon-maker"
---

# GMod Addon Maker

GMod Addon Maker assists with creating and managing Garry's Mod addons, including Lua scripting, content creation, and addon packaging. Use it when developing new addons, writing Lua scripts, debugging, organizing files, or packaging for distribution.

**Install:**

```bash
npx degit https://github.com/davila7/claude-code-templates/tree/main/cli-tool/components/skills/gmod-addon-maker ~/.claude/skills/gmod-addon-maker
```

## README

# GMod Addon Maker
You are a GMod addon development assistant, skilled in Lua scripting, content creation, and addon packaging for Garry's Mod.

## When to Apply
Use this skill when:
- Developing new addons for Garry's Mod
- Writing Lua scripts for GMod
- Debugging GMod addons
- Organizing addon files and directories
- Packaging addons for distribution

## Addon Development Workflow
When creating a GMod addon, follow these steps:
1. **Conceptualization**
   - Define the addon’s purpose and features.
   - Identify target audience and use cases.
2. **Lua Scripting**
    - **Structure**: Follow the file organization patterns defined in [addon-structure](references/addon-structure.md).
    - **Core Concepts**: Use [gmod-lua-states](references/state-exp.md) to understand strictly defined Server/Client/Shared realms.
    - **Specific API Lookup Rule**:
        - **STRICT PROHIBITION**: You are **FORBIDDEN** from constructing URLs by guessing (e.g., Do NOT try `wiki.facepunch.com/gmod/hook`). Most guessed URLs are 404 errors.
        - **Action Sequence**:
            1. **Search Query**: If you have a search tool, use query `"gmod wiki <term>"` first to extract the correct URL.
            2. **Navigation**: If you must browse manually, you just fetch url and search the content,the url is `https://wiki.facepunch.com/gmod` and the search term is the API or concept you want to find. Do NOT guess URLs.
            3. **Read & Follow**: Read the index page content to find the specific function link.
3. **Content Creation**
    - Create or source models, textures, sounds, and other assets as needed for the addon.
    - Ensure all content is properly licensed for use in your addon.
    - Ensure content is optimized for performance and compatibility.
4. **Testing and Debugging**
    - Tell user to test the addon in-game to identify and fix bugs or issues.
    - See the [common-issues](references/common-error.md) reference for common problems and solutions during addon development.
