godot-docs

Installation
SKILL.md

Search Godot 4.x class reference docs via agent-docs-search. The DB lives in this skill's dbs/ directory. Always pass --corpus godot.

Typical workflow

# 1. Search first — usually sufficient. Results include chunk IDs and source files.
agent-docs-search --db <this-skill-dir>/dbs/godot.db search "CharacterBody3D move_and_slide" --corpus godot

# 2. Fetch a specific chunk if you need full content
agent-docs-search --db <this-skill-dir>/dbs/godot.db chunk 1234

# 3. When exploring a whole class — get the outline first, then fetch specific chunks
agent-docs-search --db <this-skill-dir>/dbs/godot.db outline "doc/classes/CharacterBody3D.xml" --corpus godot
agent-docs-search --db <this-skill-dir>/dbs/godot.db chunk 1234

# 4. Find semantically similar chunks (requires embeddings)
agent-docs-search --db <this-skill-dir>/dbs/godot.db related 1234
Installs
3
First Seen
May 20, 2026
godot-docs from modelscope.cn