stimulus-agent

stimulus-agent is an agent for Claude Code from ThibautBaissac/rails_ai_agents. It costs 0 tokens per session (963 once invoked), scanned A, original, MIT.

A helper for building Stimulus controllers, which are small JavaScript modules that add behavior to HTML pages in Rails applications.

In plain words
What is it for?
Use it for form interactions, toggles, and other client-side behavior in Stimulus and Rails projects.
Why use it?
It helps implement browser interactions while keeping the code accessible, organized, and compatible with Hotwire patterns.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

Good fit Use it for form interactions, toggles, and other client-side behavior in Stimulus and Rails projects.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/thibautbaissac/rails_ai_agents/stimulus-agent
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.

Clone the repo
git clone --depth 1 https://github.com/ThibautBaissac/rails_ai_agents

Made for: Claude Code.

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 stimulus-agent

README.md
[![agentmods](https://agentmods.dev/badge/agents/thibautbaissac/rails_ai_agents/stimulus-agent.svg)](https://agentmods.dev/agents/thibautbaissac/rails_ai_agents/stimulus-agent)
Your own site
<a href="https://agentmods.dev/agents/thibautbaissac/rails_ai_agents/stimulus-agent"><img src="https://agentmods.dev/badge/agents/thibautbaissac/rails_ai_agents/stimulus-agent.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 963 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00000 $0.00963
Opus 5 $0.00000 $0.00481
Sonnet 5 $0.00000 $0.00193
Haiku 4.5 $0.00000 $0.00096

Measured 8d ago against content hash ce2ee9e7de3c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

stimulus-agent 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 8d 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.

.claude/agents/stimulus-agent.md · 88 lines

How it starts

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

Your Role

Expert in Stimulus.js, Hotwire, accessibility, and JS best practices. Create clean, accessible, maintainable controllers with comprehensive JSDoc. Follow Stimulus conventions and progressive enhancement.

Rails 8 / Turbo 8 Considerations

  • Use data-turbo-permanent to preserve state across Turbo 8 morphing
  • Handle disconnect/reconnect cycles -- controllers may remount during morphing
  • Stimulus works with view transitions and can respond to Turbo Stream events

Controller Naming Conventions

app/javascript/controllers/
├── application.js              # Stimulus app setup
├── index.js                    # Auto-loading config
├── hello_controller.js         # data-controller="hello"
├── user_form_controller.js     # data-controller="user-form"
└── components/
    └── dropdown_controller.js  # data-controller="components--dropdown"

Controller Structure Template

import { Controller } from "@hotwired/stimulus"

/**
 * [Controller Name] - [Brief description]
 * Targets: targetName - desc | Values: valueName - desc | Actions: actionName - desc
 * @example
 * <div data-controller="name" data-name-value-name-value="val">
 *   <button data-action="name#actionName">Click</button>
 *   <div data-name-target="targetName"></div>
 * </div>
 */
export default class extends Controller {
  static targets = ["targetName"]
  static values = { valueName: { type: String, default: "defaultValue" } }
  static classes = ["active", "hidden"]
  static outlets = ["other-controller"]

  connect() { /* Initialize state, add document/window listeners */ }
  disconnect() { /* Clean up: remove listeners, clear timeouts */ }

  valueNameValueChanged(value, previousValue) { /* React to value changes */ }
  targetNameTargetConnected(element) { /* Target added to DOM */ }
  targetNameTargetDisconnected(element) { /* Target removed from DOM */ }

  actionName(event) {
    event.preventDefault()
    this.dispatch("eventName", { detail: { data: "value" } })
  }

  #helperMethod() { /* Private helper (prefix with #) */ }
}

Read the full file on GitHub · 88 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. 8d ago First seen · 88 lines · 0 tokens per session scan A ce2ee9e7de3c

Subscribe to this mod's changes

stimulus-agent is an agent published in the GitHub repository ThibautBaissac/rails_ai_agents (659 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 963 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-30.

Related

Other agents, from other repositories

react18-class-surgeon

Class component migration specialist for React 16/17 → 18.3.1. Migrates all three unsafe lifecycle methods with correct semantic replacements (not just UNSAFE prefix). Migrates legacy context to createContext, string refs to React.createRef(), findDOMNode to direct refs, and ReactDOM.render to createRoot. Uses memory…

github/awesome-copilot · 81 tokens

frontend-dev

Frontend Developer (Aria Chen) - React, Next.js, TypeScript, accessibility, performance.

vibeeval/vibecosystem · 22 tokens

react-portfolio-engineer

React portfolio/gallery sites for creatives: React 18+, Next.js App Router, image optimization.

notque/vexjoy-agent · 25 tokens

alchemist

Creative technologist who sees the browser as an unexplored physics engine. Consult when building UI that needs to feel alive - scroll-driven reveals, morphing transitions, spatial animation systems, anything where the interaction itself IS the product. Thinks in weight, tension, and breath before thinking in code.…

drobins25/craft · 355 tokens

pywry-builder

Builds PyWry widgets, dashboards, chat UIs, and TradingView charts end‑to‑end by orchestrating the PyWry MCP tools. Use when the user asks to build, scaffold, or iterate on a PyWry app and the work involves multiple MCP tool calls (e.g. create widget → populate data → add toolbar → wire events → export).

deeleeramone/PyWry · 81 tokens

docs-app-builder

Use this agent to build a documentation application as a React app — from a repo's README, docs folder, or code. Trigger on "build a docs site", "documentation app for this project", "turn these docs into a website", "docs portal with navigation", or requests to make existing docs browsable/interactive. Returns a…

aayushostwal/nexus · 97 tokens