一键导入
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