npx claudepluginhub minami110/claude-godot-tools --plugin gdscript-toolkitWant just this skill?
Then install: npx claudepluginhub u/[userId]/[slug]
Search Godot Engine and GDScript documentation using Deepwiki and Context7. Use when implementing Godot features, looking up APIs, or finding code examples. USE PROACTIVELY when planning Godot/GDScript implementations.
This skill is limited to using the following tools:
GDScript API Lookup
Research Godot/GDScript implementations using Deepwiki (architecture) and Context7 (API docs).
Workflow
Step 1: Deepwiki ask_question (FIRST)
Ask about implementation approach:
mcp__deepwiki__ask_question
repoName: "godotengine/godot"
question: "How to implement [feature]? What nodes and signals should be used?"
Returns:
- Recommended nodes and scene structure
- Signals and methods to use
- Implementation steps
Step 2: Context7 (Code Examples)
Get code examples using keywords from Step 1:
mcp__context7__query-docs
libraryId: "/websites/godotengine_en"
query: "[keywords from Deepwiki response]"
Note: Use /websites/godotengine_en for latest documentation (83,702+ snippets).
Example Queries
| Task | Deepwiki Question | Context7 Topic |
|---|---|---|
| Damage zone | "How to implement a hazard that damages player on collision in 2D?" | "Area2D body_entered signal" |
| Pickup item | "How to implement collectible items in 2D?" | "Area2D collision pickup" |
| Moving platform | "How to implement moving platforms in 2D platformer?" | "AnimatableBody2D platform" |
| Enemy AI | "How to implement basic enemy AI with patrol and chase behavior?" | "NavigationAgent2D pathfinding" |
| Save system | "How to implement save/load game state?" | "ConfigFile save load" |
Sources
- Deepwiki: Godot Engine source code insights (godotengine/godot)
- Context7: Official Godot documentation (/websites/godotengine_en)
Similar Skills
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.