1004-javascript-stimulus

A set of rules for JavaScript code that uses Stimulus, a small framework for adding behavior to HTML pages. It defines conventions for controllers, targets, actions, values, and common interface components.

In plain words
What is it for?
Creating or reviewing Stimulus controllers, wiring HTML interactions, building alerts, dropdowns, modals, tabs, popovers, toggles, or slideovers, and cleaning up resources.
Why use it?
It keeps interactive Rails interfaces organized and consistent, reducing scattered DOM code and lifecycle mistakes.

Cursor rule

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.

agentmods
npx agentmods add rules/andyw8/rails_rules/1004-javascript-stimulus
Clone the repo
git clone --depth 1 https://github.com/andyw8/rails_rules
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 675 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00000 $0.00675
Opus 5 $0.00000 $0.00338
Sonnet 5 $0.00000 $0.00135
Haiku 4.5 $0.00000 $0.00068

Measured yesterday against content hash 1b3943840673, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

1004-javascript-stimulus 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 yesterday.

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.

lib/generators/rails_rules/templates/1004-javascript-stimulus.mdc · 91 lines

How it starts

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

JavaScript and Stimulus Controller Standards

Context

  • In Ruby on Rails 8.0 JavaScript
  • Using Stimulus.js for interactive components
  • Using ES6 features
  • Using TailwindCSS Stimulus Components

Requirements

  • Use ES6 syntax (arrow functions, destructuring, etc.)
  • Add comments at the top of Stimulus controllers explaining their purpose and usage examples
  • Follow Stimulus controller naming conventions
  • Use data-controller, data-action, and data-[controller]-target attributes
  • Define static targets, values, and classes at the top of controller classes
  • Initialize connections in the connect() lifecycle method
  • Clean up resources in the disconnect() lifecycle method
  • Use the tailwindcss-stimulus-components library for common components:
    • Alert, Dropdown, Modal, Tabs, Popover, Toggle, Slideover
  • Keep controller actions focused on a single responsibility
  • Use event delegation where appropriate
  • Document values properties with their types and defaults
  • Avoid DOM manipulation where possible, prefer toggling classes

Examples

import { Controller } from "@hotwired/stimulus" import { autoUpdate, autoPlacement, computePosition, offset, arrow } from "@floating-ui/dom"

export default class extends Controller { // Define expected properties and their types static values = { content: String, placement: String, offset: { type: Number, default: 6 }, allowHtml: { type: Boolean, default: true } }

// Initialize on connection connect() { this.createTooltipElements() this.cleanup = autoUpdate(this.element, this.tooltip, this.updatePosition.bind(this)) this.addEvents() }

// Clean up resources on disconnect disconnect() { this.removeEvents() this.tooltip?.remove() this.cleanup?.() }

// Creates DOM elements for the tooltip createTooltipElements() { this.tooltip = document.createElement("div") this.tooltip.className = "tooltip" this.tooltip.setAttribute("role", "tooltip")

this.tooltipContent = document.createElement("div")
this.tooltipContent.className = "tooltip-content"

this.tooltipArrow = document.createElement("div")
this.tooltipArrow.className = "tooltip-arrow"

this.tooltip.appendChild(this.tooltipContent)
this.tooltip.appendChild(this.tooltipArrow)
document.body.appendChild(this.tooltip)

this.updateContent()

}

// Updates tooltip content when content value changes contentValueChanged() { this.updateContent() } }

</example>

Read the full file on GitHub · 91 lines

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. yesterday First seen · 91 lines · 0 tokens per session scan A 1b3943840673

Subscribe to this mod's changes

1004-javascript-stimulus is a cursor rule published in the GitHub repository andyw8/rails_rules (4 stars, last pushed 1y ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 675 tokens. 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-31.