rootstrap /rails_api_base
Agent Claude Code
Use proactively after completing code changes, or when the user asks for a code review. Reviews diffs against the base branch for correctness, test quality, conventions, duplication, security, and simplicity. Returns structured findings.
633 3d ago A 47 tokens
original MIT rootstrap /rails_api_base
Agent Claude Code
Checks if a PR is too large and suggests how to split it into smaller PRs. Analyzes diff size, logical groupings, and dependencies to recommend optimal splits. Target: max 400 added lines per PR.
633 3d ago A 50 tokens
original MIT rootstrap /rails_api_base
Command Claude Code
Create a pull request following the official template.
633 3d ago A 0 tokens
original MIT rootstrap /rails_api_base
Skill Claude Code Codex
Rootstrap Rails conventions. Use when writing, reviewing, or editing any Rails code — controllers, models, migrations, routes, views, mailers, initializers, locale files, or Rails config. Covers routing, ActiveRecord, migrations, i18n, time zones, mailers, assets, Bundler groups, and logging.
633 3d ago A 71 tokens
original MIT rootstrap /rails_api_base
Skill Claude Code Codex
Rootstrap RSpec conventions. Use when writing, reviewing, or editing RSpec test files (spec//spec.rb, spec/railshelper.rb, spec/spechelper.rb, spec/support//.rb) or factories. Covers describe/context structure, let/subject, matchers, factories, mocking/stubbing, shared examples, and spec types (model, request…
633 3d ago A 82 tokens
original MIT rootstrap /rails_api_base
Skill Claude Code Codex
Rootstrap Ruby style conventions. Use when writing, reviewing, or editing any Ruby source file (.rb, .rake, Gemfile, Rakefile, .gemspec, config.ru) to ensure code follows the Rootstrap Ruby style guide — covers layout, syntax, naming, classes/modules, exceptions, collections, strings, regexes, metaprogramming, and…
633 3d ago A 84 tokens
original MIT rootstrap /rails_api_base
Instructions file
Instructions for rootstrap/rails_api_base, covering claude.md, what this repo is, common commands, testing notes and architecture.
633 3d ago A 2,081 tokens
original MIT rootstrap /ai-ide-rules
Cursor rule Cursor
You are an expert AI software engineer specialized in building highly-scalable and maintainable systems using React and TypeScript code.
rootstrap /ai-ide-rules
Cursor rule Cursor
Use when asked to debug an issue.
rootstrap /ai-ide-rules
Cursor rule Cursor
NOTE: this would tipically be git ignored but was added for reference.
rootstrap /ai-ide-rules
Cursor rule Cursor
// ❌ Too many responsibilities const UserDashboard = () => { // user data fetching, profile editing, analytics, notifications... }.
5 10mo ago A 1,234 tokens
rootstrap /ai-ide-rules
Cursor rule Cursor
Typescript best practices and conventions.
rootstrap /ai-ide-rules
Cursor rule
Cursor rule "feature-implementation-plan" from rootstrap/ai-ide-rules, covering 1. preparation & planning, 2. implementation plan document, 3. task breakdown & checklist (grouped by phase), 4. execution & tracking and 6. template.
rootstrap /ai-ide-rules
Cursor rule
Use a modular structure with clearly separated directories.
rootstrap /ai-ide-rules
Cursor rule
Node-specific best practices and guidelines.
rootstrap /ai-ide-rules
Cursor rule
Project specific best practices, versioning and configurable guidelines.
rootstrap /ai-ide-rules
Cursor rule
Typescript rules for NodeJS.
rootstrap /ai-ide-rules
Cursor rule
Cursor rule "accessibility" from rootstrap/ai-ide-rules, covering react accessibility rules & best practices, 1. semantic html, 2. aria usage, 3. keyboard navigation and 4. accessible forms.
5 10mo ago A 1,923 tokens
rootstrap /ai-ide-rules
Cursor rule
// ✅ Server Component (default) export default function ProductPage({ params }: { params: { id: string } }) { // This runs on the server const product = await fetchProduct(params.id); return ; }.
rootstrap /ai-ide-rules
Cursor rule
Cursor rule "testing-jest" from rootstrap/ai-ide-rules, covering react testing strategy: jest, 1. testing framework, 2. test types, 3. test organization and 4. coverage & quality.
rootstrap /ai-ide-rules
Cursor rule
Cursor rule "testing-vitest" from rootstrap/ai-ide-rules, covering react testing strategy: vitest, 1. testing framework, 2. test types, 3. test organization and 4. coverage & quality.