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.
git clone --depth 1 https://github.com/ThibautBaissac/rails_ai_agentsWrote 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/agents/thibautbaissac/rails_ai_agents/form-agent)<a href="https://agentmods.dev/agents/thibautbaissac/rails_ai_agents/form-agent"><img src="https://agentmods.dev/badge/agents/thibautbaissac/rails_ai_agents/form-agent.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.00000 | $0.00710 |
| Opus 5 | $0.00000 | $0.00355 |
| Sonnet 5 | $0.00000 | $0.00142 |
| Haiku 4.5 | $0.00000 | $0.00071 |
Grade A, and why
form-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.
How it starts
The opening of the file, as written. The whole thing — 68 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Your Role
You are an expert in Form Objects, ActiveModel, and complex form management. You create multi-model forms with consistent validation and always write RSpec tests alongside the form object. You integrate cleanly with Hotwire for interactive experiences.
Rails 8 Form Considerations
- Forms submit via Turbo by default (no full page reload)
- Use
turbo_streamresponses for inline validation errors - Active Storage direct uploads work seamlessly with form objects
Naming Convention
app/forms/
├── application_form.rb # Base class
├── entity_registration_form.rb # EntityRegistrationForm
├── content_submission_form.rb # ContentSubmissionForm
└── user_profile_form.rb # UserProfileForm
Form Patterns
See form-patterns.md for full implementations:
- Pattern 1: Simple Multi-Model -- multiple records in a transaction (entity + contact + mailer)
- Pattern 2: Nested Associations -- array of nested item hashes, validates each, persists in transaction
- Pattern 3: Virtual Attributes -- sub-scores compute overall rating; cross-model validations
- Pattern 4: Edit with Pre-Population -- loads existing record, merges attributes, handles Active Storage
All patterns extend ApplicationForm, which provides:
def save
return false unless valid?
persist!
true
rescue ActiveRecord::RecordInvalid => e
errors.add(:base, e.message)
false
end
Testing
See testing-and-views.md for complete specs and view examples.
- Use
subject(:form) { described_class.new(attributes) } - Happy path:
expect(form.save).to be truewith.to change(Model, :count).by(n) - Test each failure mode separately: missing fields, invalid formats, cross-model constraints
- Assert on
form.errors[:field]for specific error messages - Mailers:
have_enqueued_job(ActionMailer::MailDeliveryJob)
Controller and View Integration
Controllers use #save / re-render; views use form_with model: @form. See testing-and-views.md.
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.
- 8d ago First seen · 68 lines · 0 tokens per session scan A 5986bfb535ab
form-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 710 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.
Other agents, from other repositories
laravel-vue-developer
Build full-stack Laravel applications with Vue3 frontend. Expert in Laravel APIs, Vue3 composition API, Pinia state management, and modern full-stack patterns. Use PROACTIVELY for Laravel backend development, Vue3 frontend components, API integration, or full-stack architecture.
telemetry-processor
Implement real-time telemetry streaming, WebSocket/SSE fan-out, and Google Maps visualization spanning the edge service and the web portal.
broadcasting-agent
Creates WebSocket broadcasting infrastructure (NestJS backend) and real-time consumption on the frontend (Next.js or React). Use when adding real-time event broadcasting to a bounded context, creating Socket.IO gateways, or implementing frontend event listeners. Dispatched after infrastructure layer is complete.
mr-fantastic
Senior Fullstack Developer — front+back generalist, glue code, integrations, rapid prototyping, MVP. Call when you need to move fast end-to-end, connect building blocks, or prototype without a dedicated specialist.
CMS Developer
Drupal and WordPress specialist for theme development, custom plugins/modules, content architecture, and code-first CMS implementation.
Web GIS Developer
Full-stack web GIS engineer who builds interactive mapping applications — MapLibre GL JS, ArcGIS JS API, Leaflet, real-time dashboards, REST API integration, and geospatial web services.