بنقرة واحدة
rails
Rails 8 expert - covers MVC, services, queries, SQLite production, Kamal deployment, and debugging patterns
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Rails 8 expert - covers MVC, services, queries, SQLite production, Kamal deployment, and debugging patterns
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Cloudflare Worker syncing Investec bank transactions to a Google Sheets budget spreadsheet. Monthly tabs, JWT auth, transaction merging/rules, tab coloring by age, cron scheduled sync.
Dotfile and config management using yadm - track, sync, and deploy configuration across machines
Best practices for Remotion - Video creation in React. Includes a 27-file rule library covering 3D, animations, audio, captions, charts, compositions, fonts, and transitions.
Tmux terminal multiplexer - Catppuccin theme, TPM plugins, custom scripts, session/worktree management, and key bindings
Guide for creating, updating, and improving opencode skills - conventions, structure, discovery, and best practices for SKILL.md authoring
Code reviewer for pattern conformance, security, testing, and Rails/Hotwire best practices
| name | rails |
| description | Rails 8 expert - covers MVC, services, queries, SQLite production, Kamal deployment, and debugging patterns |
| metadata | {"tags":"rails, ruby, sqlite, kamal, deployment, mvc, services"} |
Use this skill for Rails 8 applications:
This skill is organized into reference files by topic:
Read only the reference file relevant to your current task.
app/
├── models/
│ └── concerns/ # Shared model behavior
├── controllers/
│ └── concerns/ # Authentication, Authorization
├── services/ # Domain business logic
├── queries/ # Complex database queries
├── jobs/ # Background jobs (Solid Queue)
└── errors/ # Custom error classes
bin/dev # Start dev server
bin/rails test # Run tests
bin/rubocop --autocorrect # Fix linting
bin/rails runner "..." # Execute Rails code
def name = "..."bin/rubocop --autocorrect before commits