defold-skill-maintain
Defold Skill Maintenance
Handles maintenance tasks for other Defold skills: updating link indexes and managing proto file references.
Read guide first about the best practices for Agent Skills: references/The-Complete-Guide-to-Building-Skill-for-Claude.md.
Capability 1: Updating link lists in fetch skills
The defold-api-fetch, defold-docs-fetch, and defold-examples-fetch skills contain hardcoded link tables. These tables should be kept in sync with the official Defold index files.
Index sources
- API index:
https://defold.com/llms/apis.md— links to per-namespace API Markdown files - Manuals index:
https://defold.com/llms/manuals.md— links to per-manual Markdown files - Examples index:
https://defold.com/llms/examples.md— links to per-example Markdown files
Procedure: update link lists
- Fetch the relevant index page(s) by downloading the URL content.
- Parse the Markdown content. Each index page contains links in the form
[Title](url)grouped by sections. - Compare parsed links against the current SKILL.md of the target skill.
- Update the SKILL.md link tables to match the index, preserving the table structure and the
## Usagefooter section.
Target skill files
.agents/skills/defold-api-fetch/SKILL.md— updated fromapis.md.agents/skills/defold-docs-fetch/SKILL.md— updated frommanuals.md.agents/skills/defold-examples-fetch/SKILL.md— updated fromexamples.md
Rules
- Keep the YAML frontmatter (
---block) unchanged. - Keep the intro line
Fetch documentation from the links below (the URLs point to plain Markdown files).unchanged. - Keep the
## Usagesection at the bottom unchanged. - Replace the link tables between frontmatter and Usage section with the parsed content from the index.
- Preserve section grouping and table formatting style that already exists in each skill.
Capability 2: Managing proto file references
For detailed instructions on creating, updating, and maintaining proto file references for the defold-proto-file-editing skill, see references/proto-reference-guide.md.
Scripts
scripts/fetch_proto.py— downloads proto schemas from the stable Defold SDK into.agents/skills/defold-skill-maintain/assets/proto/. Run when proto schemas are missing or need updating:python .agents/skills/defold-skill-maintain/scripts/fetch_proto.py
More from indiesoftby/defold-agent-config
defold-project-setup
Downloads Defold project dependencies into .deps/ folder. Also provides recommended game.project settings. Use FIRST before any other task when .deps/ folder is missing or empty, or after editing dependency URLs in game.project. Also use when creating a new project, configuring game.project, or asking about recommended project settings.
10defold-docs-fetch
Fetches Defold manuals and documentation. Use when looking up how Defold features work, understanding concepts, components, workflows, platform setup, or needing guidance beyond API reference.
2defold-api-fetch
Fetches Defold API documentation. Use when working with Defold engine APIs, looking up Lua/C++ functions, or needing API reference for game development.
1xmath-usage
Provides xmath API reference and in-place math optimization patterns for Defold. Use when writing performance-critical math code, optimizing vector/quaternion/matrix operations, or when the user mentions xmath, zero-allocation math, or reducing Lua GC pressure.
1defold-assets-search
Searches the Defold Asset Store for community libraries and extensions. Use BEFORE writing custom modules for pathfinding, RNG, UI, save/load, localization, tweening, input handling, etc. Helps find, compare, and install Defold dependencies.
1defold-project-build
Builds the project using the running Defold editor, returns build errors, and launches the game if build succeeds.
1