modelscope.cn

godot-docs

Look up Godot 4.x API documentation — classes, methods, properties, signals, enums. Use when implementing any Godot feature, when you need to know how a Godot class works, or before writing any Godot code.

Installation

$ npx skills add https://modelscope.cn

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from modelscope.cn · top by installs.

npx skills add https://modelscope.cn

Browse all from modelscope.cn

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,462 B

History

  1. First recorded snapshot · 0 installs

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

Setup (one-time human step)

Clone the Godot repo and parse the docs:

cd <docs-reading-skill-dir>

uv run scripts/parse_godot.py \
  --godot-repo /path/to/godot \
  --db <this-skill-dir>/dbs/godot.db \
  --corpus-name godot \
  --corpus-version 4.6

No further configuration needed — no MCP server, no settings changes.