From context-engine
Ruby and Rails patterns - models, controllers, services, testing. Auto-loaded when working with Ruby files, Gemfiles, or Rails directories.
npx claudepluginhub littlelingo/context-engine --plugin context-engineThis skill uses the workspace's default tool permissions.
- Fat models, skinny controllers
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Share bugs, ideas, or general feedback.
app/
controllers/ HTTP handling only
models/ ActiveRecord models + validations
services/ Business logic (POROs)
serializers/ JSON response shaping
jobs/ Background jobs (Sidekiq/ActiveJob)
mailers/ Email templates and delivery
describe, context, it blockslet for lazy-loaded test data, let! when eager loading neededshared_examples for common behavior across modelsscope :active, -> { where(active: true) }find_each for batch processing (not each on large datasets)includes to prevent N+1 (use Bullet gem to detect)enum :status, { active: 0, archived: 1 }, prefix: truereturn unless valid?# frozen_string_literal: true at top of fileseach_with_object over inject for building collectionsincludes)