Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/wangdiandao/godot-devtool/godot-devtool-live-editornpx skills add wangdiandao/godot-devtool --skill godot-devtool-live-editorgit clone --depth 1 https://github.com/wangdiandao/godot-devtoolWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/wangdiandao/godot-devtool/godot-devtool-live-editor)<a href="https://agentmods.dev/skills/wangdiandao/godot-devtool/godot-devtool-live-editor"><img src="https://agentmods.dev/badge/skills/wangdiandao/godot-devtool/godot-devtool-live-editor.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00041 | $0.00385 |
| Opus 5 | $0.00020 | $0.00192 |
| Sonnet 5 | $0.00008 | $0.00077 |
| Haiku 4.5 | $0.00004 | $0.00038 |
Grade A, and why
godot-devtool-live-editor scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
Godot Devtool Live Editor
Load this when the user expects the open Godot editor to update directly.
Start
Request focused schema:
get_capabilities { "workflow": "live_editor", "includeSchemas": true }
Then confirm editor state:
plugin_status
list_bridge_sessions { "projectPath": "...", "context": "editor" }
plugin_dock_status
If no editor client is connected, use launch_editor or ask the user to open Godot, then plugin_reload after addon changes.
Tools
Read state:
plugin_status
plugin_dock_status
editor_get_selection
editor_inspector_get_properties
Modify the open scene through UndoRedo:
editor_select_node
editor_inspector_set_properties
editor_add_node
editor_delete_node
editor_rename_node
editor_move_node
editor_duplicate_node
editor_save_scene
Existing scene/node tools may use mode: "editor_live" with autoSave when the open editor scene must change without a disk reload.
Proof
Use plugin_dock_status as the machine-readable substitute when editor screenshots are unavailable. Verify labels for MCP Server, Editor Bridge, Runtime Bridge, Connection, Current Scene, Selection, Activity, Reconnect, and Refresh.
Do not infer success from a connected dock alone. A live edit is proven by a completed editor receipt plus a follow-up read such as editor_get_selection, editor_inspector_get_properties, or plugin_dock_status.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 54 lines · 41 tokens per session scan A 976520cc5889
godot-devtool-live-editor is a skill published in the GitHub repository wangdiandao/godot-devtool (90 stars, last pushed 2mo ago), licensed MIT. It adds 41 tokens to every session and 385 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
assets-get-data
Get asset data from the asset file in the Unity project — every serializable field and property. Supports token-saving path-scoped reads via paths or viewQuery. Use 'assets-find' to find the asset first.
gameobject-component-destroy
Destroy one or more Components from a target GameObject. Missing (null) components are skipped — they cannot be destroyed. Use 'gameobject-find' and 'gameobject-component-get' to identify the components first.
gameobject-set-parent
Reparent a batch of GameObjects under a new parent in the currently opened Prefab or active Scene. Per-item failures are reported in the returned status string instead of aborting the batch. Use 'gameobject-find' to locate the GameObjects first.
unity-version-split
Split a C# file into Unity 6.5+ and pre-Unity 6.5 variants. Use when a file needs different implementations for different Unity versions due to API changes (e.g., EntityId vs int, GetEntityId vs GetInstanceID).
assets-create-folder
Create a new folder under a parent folder inside 'Assets/'. The parent path must start with 'Assets/' and every intermediate folder in it must already exist. Refreshes the AssetDatabase at the end and returns the GUID(s) of the created folder(s).
console-get-logs
Retrieve Unity Editor logs from the MCP plugin's LogCollector, optionally filtered by log type or time window. Useful for debugging and monitoring Editor activity.