authoring-godot-prompter-skills

Defines SKILL.md and agent file format conventions for the GodotPrompter repository.

657|31|Updated Apr 3, 2026
One-click install
npx skills add https://github.com/jame581/GodotPrompter --skill authoring-godot-prompter-skills
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: authoring-godot-prompter-skills
Source: https://github.com/jame581/GodotPrompter/tree/main/.claude/skills/authoring-godot-prompter-skills
Command: npx skills add https://github.com/jame581/GodotPrompter --skill authoring-godot-prompter-skills

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Contributors to the GodotPrompter repository need consistent formatting rules when writing or editing SKILL.md files and agent definitions, including required frontmatter, section ordering, and code example conventions.

Core Features & Use Cases

  • SKILL.md Template: Specifies YAML frontmatter with name and description, followed by title, related skills line, numbered sections, and an implementation checklist.
  • Agent Definition Format: Documents the frontmatter structure for agents/<name>.md files, including description with example blocks and model inheritance.
  • Validation Workflow: Directs authors to run node scripts/validate-skills.mjs to enforce frontmatter, cross-references, and the 16 KB size budget.
  • Use Case: When adding a new Godot skill to the repo, follow this format guide to structure the SKILL.md with GDScript examples first, then C# equivalents, and validate before committing.

Quick Start

Ask the agent to show the required format and conventions for writing a new SKILL.md file in this repository.

Frequently Asked Questions about authoring-godot-prompter-skills

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I write a SKILL.md file for a Godot skill?

Start with YAML frontmatter containing name and description, then add a title, a related skills line, numbered sections with patterns, GDScript examples followed by C# equivalents, and an implementation checklist at the end.

What frontmatter is required in a SKILL.md file?

Every SKILL.md must begin with YAML frontmatter containing a name field and a description field formatted as 'Use when [trigger] — [brief scope]'. This frontmatter is used for skill discovery.

How do I validate a new skill before committing?

Run node scripts/validate-skills.mjs from the repository root. The validator enforces correct frontmatter, cross-references between skills, and the 16 KB size budget for SKILL.md files.

What is the size limit for SKILL.md files?

SKILL.md files are limited to a 16 KB token budget, enforced by the validate-skills.mjs script. Content conventions governing the budget are documented in the root CLAUDE.md file.

Should GDScript or C# examples come first in skill documentation?

GDScript examples come first, followed by the C# equivalent. Use the gdscript and csharp language tags on code blocks so both variants render correctly.