AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Rails Docs

skill-pledgeandgrow-pledge-skills-rails · by pledgeandgrow

|

No reviews yet
0 installs
39 views
0.0% view→install

Install

$ agentstack add skill-pledgeandgrow-pledge-skills-rails

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-pledgeandgrow-pledge-skills-rails)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Rails Docs? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Ruby on Rails 8.1 — Skill Documentation

Metadata

  • Target Version: Rails 8.1.x (October 2025)
  • Ruby Version: 3.2+ required
  • Source: guides.rubyonrails.org
  • Files: 22
  • Lines: ~6,800

Quick Reference

| Topic | File | Description | |-------|------|-------------| | Getting Started (installation, quick start, MVC, directory structure) | getting-started.md | Install Ruby/Rails, create app, first CRUD | | Active Record (basics, migrations, validations, callbacks, associations, queries) | active-record.md | ORM, CRUD, schema conventions, model lifecycle | | Action View (layouts, rendering, helpers, form helpers) | action-view.md | Templates, partials, form helpers, rendering | | Action Controller (overview, advanced, CSRF, streaming) | action-controller.md | Parameters, sessions, cookies, filters, rescue | | Routing (RESTful routes, resources, constraints) | routing.md | URL routing, resource routing, route helpers | | Active Support (core extensions, instrumentation) | active-support.md | Ruby extensions, present?, try, deep_dup | | Action Mailer / Mailbox / Text | action-mailer.md | Email sending, receiving, rich text content | | Active Job (background jobs, queues) | active-job.md | Job declaration, queuing, execution, callbacks | | Active Storage (file uploads, variants) | active-storage.md | Attachments, transformations, direct uploads | | Action Cable (WebSockets, real-time) | action-cable.md | Channels, streams, broadcasting, connections | | Internationalization (I18n) | i18n.md | Translations, pluralization, locale switching | | Testing (Minitest, fixtures, integration) | testing.md | Unit, functional, integration, system tests | | Security (CSRF, SQL injection, XSS) | security.md | Authentication, session security, production | | Caching (fragment, Russian doll, SQL) | caching.md | Page, action, fragment, query caching | | API-Only Applications | api-app.md | JSON API, ActionController::API, rendering | | Configuration (command line, assets, JS, init, autoloading) | configuration.md | Config files, generators, Propshaft, importmaps | | Debugging & Error Reporting | debugging.md | Logger, debugger, error reporting, instrumentation | | Performance & Threading | performance.md | Tuning, concurrency, thread safety, code execution | | Advanced Active Record (PostgreSQL, multi-DB, encryption, CPK) | advanced-active-record.md | PG-specific, multi-database, encryption, composite PKs | | Extending Rails (plugins, Rack, generators, engines) | extending-rails.md | Plugin creation, Rack middleware, custom generators | | Upgrading & Release Notes | upgrading.md | Upgrade steps, Rails 8.1/8.0/7.2 features |


Core Concepts

  • MVC Architecture: Model (Active Record), View (Action View), Controller (Action Controller)
  • Convention over Configuration: Sensible defaults — pluralized table names, id primary keys, created_at/updated_at timestamps
  • Don't Repeat Yourself (DRY): Single source of truth for data, logic, and presentation
  • RESTful Design: Resources map to CRUD operations via HTTP verbs
  • Rails Stack: Puma server, SQLite/PostgreSQL/MySQL, Solid Queue, Solid Cache, Solid Cable (Rails 8 defaults)
  • Hotwire: Turbo Drive, Turbo Frames, Turbo Streams, Stimulus — built-in, no JS framework required
  • Kamal: Deployment tool for provisioning and deploying Rails apps to any cloud

Common Patterns

Generate a scaffold (full CRUD)

bin/rails generate scaffold Article title:string body:text
bin/rails db:migrate

Model with validations and associations

class Article 
  
  
  

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.