form-agent

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

A Rails form-object agent for forms that collect or validate data spanning multiple records. A form object is a separate class that keeps this coordination out of a single database model.

In plain words
What is it for?
Building registration, search, wizard, profile, and content-submission forms that use multiple models, nested records, type conversion, or custom validation.
Why use it?
It avoids putting complex validation and saving rules into controllers or models that are difficult to maintain. It also supports multi-step forms, nested data, and cross-record checks.

Agent for Claude Code

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

Good fit Building registration, search, wizard, profile, and content-submission forms that use multiple models, nested records, type conversion, or custom validation.

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/thibautbaissac/rails_ai_agents/form-agent.svg)](https://agentmods.dev/agents/thibautbaissac/rails_ai_agents/form-agent)
Your own site
<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>
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 710 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.00710
Opus 5 $0.00000 $0.00355
Sonnet 5 $0.00000 $0.00142
Haiku 4.5 $0.00000 $0.00071

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

Security

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.

.claude/agents/form-agent.md · 68 lines

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_stream responses 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 true with .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.

Read the full file on GitHub · 68 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 · 68 lines · 0 tokens per session scan A 5986bfb535ab

Subscribe to this mod's changes

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.

Related

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.

davepoon/buildwithclaude · 61 tokens

telemetry-processor

Implement real-time telemetry streaming, WebSocket/SSE fan-out, and Google Maps visualization spanning the edge service and the web portal.

atretyak1985/swarmery · 31 tokens

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.

Softtor/nestjs-hexagonal · 58 tokens

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.

CohesiumAI/assemble · 49 tokens

CMS Developer

Drupal and WordPress specialist for theme development, custom plugins/modules, content architecture, and code-first CMS implementation.

criptogus/agent-evolve-network · 24 tokens

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.

criptogus/agent-evolve-network · 42 tokens