godot-brainstorming

godot-brainstorming is a skill for Claude Code from jame581/GodotPrompter. It costs 30 tokens per session (3,763 once invoked), scanned B, original, MIT.

A planning guide for designing new features and systems in Godot 4.3+. It helps map the scene tree, signals, data flow, and architectural choices before implementation.

In plain words
What is it for?
Use it when starting a game mechanic or system, choosing node types, comparing design approaches, and planning how parts of a project communicate.
Why use it?
It helps expose unclear requirements and design trade-offs before code and scenes become difficult to change.

Skill for Claude Code

Written for Claude Code: SessionStart hook event. Also seen: mentions CLAUDE.md; mentions subagents; mentions Claude Code.

Part of the godot-prompter plugin — 57 skills, 9 agents, 2 hooks shipped together

Good fit Use it when starting a game mechanic or system, choosing node types, comparing design approaches, and planning how parts of a project communicate.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jame581/godotprompter/godot-brainstorming
Install

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.

Any agent
npx skills add jame581/GodotPrompter --skill godot-brainstorming
Clone the repo
git clone --depth 1 https://github.com/jame581/GodotPrompter

Made for: Claude Code.

Or install godot-prompter, the plugin that ships this one along with the rest of its 57 skills, 9 agents, 2 hooks.

Wrote 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.

agentmods badge for godot-brainstorming

README.md
[![agentmods](https://agentmods.dev/badge/skills/jame581/godotprompter/godot-brainstorming/github.svg)](https://agentmods.dev/skills/jame581/godotprompter/godot-brainstorming)
Your own site
<a href="https://agentmods.dev/skills/jame581/godotprompter/godot-brainstorming"><img src="https://agentmods.dev/badge/skills/jame581/godotprompter/godot-brainstorming/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for godot-brainstorming

Your own site · 80×15
<a href="https://agentmods.dev/skills/jame581/godotprompter/godot-brainstorming"><img src="https://agentmods.dev/badge/skills/jame581/godotprompter/godot-brainstorming.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,763 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high System Prompt Leakage · line 112
    Skill contains instructions that could directly expose system prompts, internal rules, or hidden instructions to users or external parties.
    Fix: Remove any instructions that reveal, print, or output system prompts or internal rules. System instructions should never be exposed to end users.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00030 $0.03763
Opus 5 $0.00015 $0.01881
Sonnet 5 $0.00006 $0.00753
Haiku 4.5 $0.00003 $0.00376

Measured 12d ago against content hash 91954c87ebf2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade B, and why

godot-brainstorming scanned grade B with 1 finding 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 12d 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.

Asks the agent to reveal its instructionsmediumSystem prompt leakage

Directions to print, repeat or translate the system prompt extract configuration the operator did not intend to expose.

| `body_entered(body)` | `InteractionArea` | `Chest._on_area_body_entered` | Show prompt when player enters range |
skills/godot-brainstorming/SKILL.md · 259 lines

How it starts

The opening of the file, as written. The whole thing — 259 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Godot Brainstorming

A structured design process for Godot 4.3+ features and systems — from blank slate to a clear scene tree, signal map, and data flow before you write a single line of implementation code.

Related skills: scene-organization for scene tree composition patterns, component-system for component-based architecture, event-bus for signal-based communication design.


Process: How to Brainstorm

Do NOT jump straight to designing. Follow these steps:

Step 1: Understand the request

Ask one clarifying question at a time to understand what the user wants to build. Focus on:

  • What kind of game/system is this? (genre, perspective, scope)
  • What are the core mechanics? (movement, combat, progression)
  • What already exists? (existing code, scenes, assets)
  • What are the constraints? (platform, performance, team size)

Step 2: Propose 2-3 approaches

Once you understand the request, propose architectural options with trade-offs. For example:

  • "Enum FSM vs Node FSM for your state machine — here's when each fits"
  • "EventBus vs direct signals for your systems — here's the trade-off" Lead with your recommendation and explain why.

Step 3: Design with approval

Present the design section by section (scene tree, signal map, data flow). Ask "does this look right?" after each section before continuing.

Step 4: Prepare for implementation

After the design is approved:

  1. Offer the agent instructions section — Ask whether to add the GodotPrompter integration section to the file this project already uses for agent instructions (see Agent Instructions Injection below). It is what tells subagents and future sessions to use GodotPrompter skills. Skip silently if a ## GodotPrompter section already exists in any of them, or if the user has declined before. Never add it without agreement.

  2. Create implementation plan — If a planning skill is available (e.g., superpowers:writing-plans), use it. If not, break the design into ordered tasks yourself and save to docs/godot-prompter/plans/ in the user's project.

Read the full file on GitHub · 259 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

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.

  1. 12d ago First seen · 259 lines · 30 tokens per session scan B 91954c87ebf2

Subscribe to this mod's changes

godot-brainstorming is a skill published in the GitHub repository jame581/GodotPrompter (690 stars, last pushed 29d ago), licensed MIT. It adds 30 tokens to every session and 3,763 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (asks the agent to reveal its instructions). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.