Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

godot-interactive戈多互动

Agent Skill

godot-interactive 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

216

周安装

9

GitHub Stars

10

下载量

72
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:godot-interactive(戈多互动)
来源仓库:https://github.com/alexmeckes/godot-claude-skills
仓库路径:skills/godot-interactive
安装命令:
npx skills add https://github.com/alexmeckes/godot-claude-skills --skill godot-interactive
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/alexmeckes/godot-claude-skills --skill godot-interactive

简介

godot-interactive 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。

  • 适用于戈多互动类游戏或交互逻辑相关的技术调研与资料搜集。
  • 通过 npx skills add 命令从指定仓库安装,需确保宿主平台兼容。
  • 安装前应检查仓库维护状态与安全策略,避免引入不可靠组件。
  • 该技能可能涉及外部查询或文件操作,建议先在小范围测试再推广使用。

SKILL.md

Godot Interactive

Use a persistent godot-mcp session to work on Godot 4.x projects without rediscovering the editor state every turn. This skill is the Godot analogue of playwright-interactive: it keeps one live editor connection alive when possible, combines it with file-based scene/script/shader tools, and requires explicit validation evidence before signoff.

Prefer the smallest evidence-producing loop. For live-editor tasks, stay on the live godot_editor_* and godot_runtime_* surface unless a file-only detail is truly required.

Preconditions

  • godot-mcp must be configured for the current project.
  • For live editing, Godot 4.x must be running with the target project open and the AI Bridge plugin enabled.
  • The bridge target should come from the active godot_mcp MCP configuration. 127.0.0.1:6550 is a common default, but local setups may override it.
  • For automated gameplay input or screenshots, prefer the first-class godot_runtime_* tools when they are present. If they are absent, fall back to a project-provided runtime harness or manual verification.
  • If tool choice is unclear, call godot_help first.
  • If the bridge is unavailable, continue with file-based tools and manual Godot review instead of inventing live-editor results.
  • Treat a dropped bridge connection as a session problem. Reconnect before doing more live-editor work.
  • If the user explicitly targets the running editor or currently open scene, treat the connected editor project as the source of truth. Do not burn time reconciling it with the shell workspace unless the task also depends on workspace files or the user suggests the wrong editor is open.

Workflow Decision Tree

  • Use the live-editor workflow for node hierarchy changes, layout tuning, quick property edits, opening/running scenes, and immediate runtime inspection.
  • Use the file-based workflow for larger structural edits, generated scenes/scripts/shaders/resources, or any work done before Godot is open.
  • Use the runtime-automation workflow whenever dedicated godot_runtime_* tools exist. If they do not, only use it when the project already exposes a real runtime harness.
  • Use the hybrid workflow for most real tasks: edit files, refresh the editor, inspect the scene tree, run the scene, collect output/errors, and iterate.

Core Workflow

  1. Build a QA inventory before changing anything.

- Combine the user's requirements, the behaviors you implement, and the claims you expect to make in the final response. - For each claim, decide what evidence will prove it: scene tree state, validation output, runtime output/errors, manual in-engine verification, or a saved screenshot if the project supports it. - Add at least 2 off-happy-path checks for fragile gameplay, scene state, or editor synchronization.

  1. Confirm the active project and current scene state.

- Prefer godot_connection_status, godot_editor_get_project_info, and godot_editor_get_scene_tree. - If no live session exists yet, decide whether to start with file-based edits or connect immediately.

  1. Inspect before editing.

- For files: use godot_read_scene, godot_list_scene_nodes, godot_read_script, godot_read_shader, or godot_read_resource. - For live scenes: use godot_editor_get_scene_tree and optionally godot_editor_select_node. - For file-based scene checks, prefer godot_list_scene_nodes before godot_read_scene. - Do not read the full .tscn with godot_read_scene during a live task unless the live tree cannot answer the question. Large scene dumps slow the feedback loop. - Do not read the full .tscn during a file task unless you need serialized details like connections, external resources, or exact property payloads that godot_list_scene_nodes cannot provide.

  1. Make the smallest meaningful change.

- Prefer incremental edits over large speculative rewrites. - Keep node names and paths stable when possible so follow-up changes remain cheap. - When the goal is fast feedback rather than final UI quality, prefer a temporary probe node over exploratory edits to production nodes.

  1. Refresh or save based on how the change was made.

- External file edits while Godot is open: godot_editor_refresh_filesystem. - Live scene edits you intend to keep: godot_editor_save_scene.

  1. Validate before running.

- Use godot_validate_scene on touched scenes. - Use godot_validate_script on touched scripts. - Use godot_help or docs tools if a class/property choice is still uncertain.

  1. Run and inspect.

- Use godot_editor_run_scene. - Inspect godot_editor_get_errors, godot_editor_get_output, and, when needed, godot_editor_get_log_file. - Use godot_runtime_* tools for gameplay input, runtime waits, and screenshot capture when they are available. - Do not call godot_runtime_status before a scene is running unless you are checking whether a previous run is still active. Start the scene first. - After a live node add, prefer godot_editor_modify_node or structured properties on godot_editor_add_node before reaching for godot_editor_execute_gdscript. - Use godot_editor_execute_gdscript only for editor-side diagnostics or setup. It is not a general substitute for runtime gameplay input or frame capture. - If a screenshot or runtime assertion fails, inspect the specific node path and its properties first. Only expand to broad log review if the node-level check does not explain the failure.

  1. Update the QA inventory if exploration reveals new states, controls, failure modes, or visible claims.
  2. Sign off only from explicit evidence, and note any remaining manual verification gaps.

Fast Probe Presets

Use this path when the user wants faster feedback, a runtime target, or proof of interaction rather than final polish.

  • Prefer a temporary Label, Button, or LineEdit probe under a known live parent instead of spending turns rediscovering common Control properties.
  • Use the copyable presets in references/fast-probe-presets.md for deterministic geometry and obvious text.
  • Default to top-left anchored controls with fixed position, fixed size, and loud text or placeholder values so runtime click and screenshot evidence are unambiguous.
  • Save and validate immediately after adding the probe, then run the scene and gather evidence.
  • Remove the probe, save again, and revalidate before signoff unless the user explicitly wants to keep it.
  • Do not call docs tools or godot_help for common probe controls unless the preset fails, the project has unusual container behavior, or the user needs final-quality UI behavior rather than a temporary target.

Start Or Reuse Live Session

Keep the same bridge connection alive across iterations when possible.

Typical attach sequence:

godot_connect {}
godot_connection_status {}
godot_editor_get_project_info {}
godot_editor_get_scene_tree {}

If you need to override the configured bridge target for troubleshooting or multiple editors:

godot_connect { "host": "127.0.0.1", "port": 6550 }

If you need a specific scene:

godot_editor_open_scene { "scenePath": "res://scenes/main.tscn" }
godot_editor_get_scene_tree {}

Rules:

  • Reuse the existing connection instead of reconnecting on every turn.
  • If Godot was restarted, the project changed, or the bridge timed out, reconnect and reacquire the scene tree before making assumptions.
  • If a node path changed, rerun godot_editor_get_scene_tree instead of guessing the new path.

File-Based Workflow

Use file-based tools when the bridge is unavailable or when broad edits are easier outside the editor.

Common loop:

  1. Read the current artifact.
  2. Edit with the appropriate godot_* file tool.
  3. Validate the changed file.
  4. If Godot is open, call godot_editor_refresh_filesystem.
  5. Open or rerun the scene in the editor to verify behavior.

Typical pairings:

  • Scene structure: godot_read_scene, godot_add_node, godot_modify_node, godot_validate_scene
  • Scripts: godot_read_script, godot_write_script, godot_validate_script
  • Shaders: godot_read_shader, godot_write_shader
  • Resources: godot_read_resource, godot_write_resource
  • UI generation: godot_ui_* tools followed by validation and a live run pass

Use file reads only when you need file-only structure such as external resources, connections, or exact serialized properties. For most live scene checks, godot_editor_get_scene_tree is the faster baseline.

Refresh And Rerun Decision

  • External .tscn, .gd, .gdshader, .tres, or project.godot changes while the editor is open: run godot_editor_refresh_filesystem.
  • Live scene changes you want persisted: run godot_editor_save_scene.
  • Runtime behavior changes, script changes, or scene logic changes: rerun the scene.
  • Bridge disconnect, editor restart, or project reopen: reconnect and reacquire state.
  • Stale node paths: reread the scene tree before issuing more live node commands.

Runtime Automation Workflow

Use this whenever the current MCP surface exposes godot_runtime_* tools. If those tools are absent, only use it when a real project-side runtime harness already exists.

  • First inspect the available automation surface.

- Check the MCP tool list for dedicated godot_runtime_* tools first. - Search the project for an existing debug/test harness, local automation server, screenshot helper, or deterministic test runner. - Read the harness entrypoint before using it so you know whether it targets the editor process or the running game process.

  • Treat editor-side and runtime-side code as different environments.

- godot_editor_execute_gdscript runs in the editor/plugin context. - The current godot_runtime_* tools target the running game process through the AI Bridge runtime harness. - A project-specific fallback still needs its own harness, test scene, autoload, CLI, or transport to accept input commands and emit screenshots or state snapshots.

  • Prefer automation evidence in this order:

- dedicated godot_runtime_* tools - project-provided deterministic harness that writes artifacts or structured results - manual in-engine verification

  • For input automation:

- Prefer real input-event injection for UI, cursor, and focus-sensitive checks. - Prefer action-level helpers only for gameplay semantics where position and event routing do not matter. - Make the target control easy to hit before running: deterministic position, visible size, and obvious text or placeholder. - For temporary UI targets, start with the preset Label, Button, or LineEdit payloads instead of discovering properties from scratch.

  • For screenshot automation:

- Prefer deterministic output paths and stable capture timing. - Pair screenshots with structured state, logs, or scene assertions so visual claims are not based on a single image alone.

  • If no runtime harness exists, do not pretend the editor bridge can replace it. Call out the verification limit explicitly.

Checklists

Session Loop

  • Keep one live connection alive when the editor is available.
  • Reinspect current state before a new edit burst.
  • Make one coherent change set.
  • Refresh or save based on where the change happened.
  • Validate touched files.
  • Run the relevant scene.
  • Inspect runtime output and errors.
  • Update the QA inventory if new states or claims appear.

Validation And Runtime Checks

  • Structural changes: godot_validate_scene
  • Script changes: godot_validate_script
  • Runtime/editor issues: godot_editor_get_errors
  • General trace output: godot_editor_get_output
  • Longer or incremental log review: godot_editor_get_log_file
  • Focused introspection: godot_editor_execute_gdscript
  • Runtime automation: godot_runtime_status, godot_runtime_wait, godot_runtime_press_action, godot_runtime_release_action, godot_runtime_tap_action, godot_runtime_mouse_move, godot_runtime_click, godot_runtime_type_text, godot_runtime_capture_screenshot

When using godot_editor_execute_gdscript:

  • Keep scripts short and diagnostic.
  • Prefer returning structured values.
  • Treat the result as editor-side inspection evidence, not proof that a player-facing interaction works.

Signoff

  • Coverage is explicit against the QA inventory.
  • Touched scenes and scripts were validated.
  • The final scene tree or file structure was rechecked after edits.
  • A runtime pass was completed for behavior-affecting changes.
  • The response clearly distinguishes between validated behavior and assumptions.
  • If the claim depends on player input, timing, or visuals, manual in-engine verification or an existing automated harness was used.
  • Any missing evidence is called out explicitly.

Visual Evidence And Limits

This is still the largest difference from playwright-interactive, even after adding runtime tools.

  • godot-mcp now exposes first-class runtime input and screenshot tools through godot_runtime_*, but the workflow is still less browser-like than Playwright.
  • The bridge remains split across editor-side control and runtime-side automation. Keep those environments conceptually separate.
  • Do not claim visual QA is complete from scene tree and log output alone.
  • If a task depends on visuals, layout, animation timing, or gameplay feel, use godot_runtime_capture_screenshot or an equivalent project artifact when possible; otherwise inspect the running Godot window manually.
  • If the project can save screenshots to disk, review them directly and reference the path.
  • If no visual artifact exists, describe the verification limit plainly.

Common Failure Modes

  • godot_connect times out: Godot is not running, the AI Bridge plugin is disabled, or the port/host is wrong.
  • Not connected to Godot editor: reconnect before using godot_editor_* tools.
  • The shell workspace and the connected editor project differ: if the user asked to work against the running editor, continue on the connected project and mention the difference briefly instead of treating it as a blocker.
  • No scene open: open a scene explicitly with godot_editor_open_scene.
  • Node not found: reacquire the scene tree and verify the path before issuing another command.
  • External edits do not appear in the editor: run godot_editor_refresh_filesystem.
  • godot_editor_execute_gdscript compile failures: inspect godot_editor_get_errors and godot_editor_get_log_file.
  • Runtime automation tools time out or fail: make sure the scene is actually running, the runtime harness autoload is loaded, and the request targets the running game rather than the editor.
  • Older Godot or Claude-oriented notes may mention tools that are not in the current MCP surface. Use the reference file below and godot_help as the source of truth.

References

Read references/live-editor-tool-map.md when you need the current tool names, common payload shapes, or drift notes from the older Godot skill repo. Read references/fast-probe-presets.md when you need a fast temporary Label, Button, or LineEdit target for runtime or screenshot verification. Read references/runtime-automation-extension-points.md when you need the current limits, the recommended runtime harness shape, or the future runtime tool set this skill should prefer when it exists.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.33%
按下载量换算26

Claude

30.96%
按下载量换算22

Cursor

17.36%
按下载量换算12

Gemini CLI

9.71%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills