AI coding task pages
These are the indexed content pages behind rightmodel. Each one maps a common developer task to the model tier that best fits the reasoning load, then links you to adjacent tasks.
Looking for the live free-form tool instead? Start on the homepage.
Routine
15 task pages
Convert cURL Command to Fetch
RoutineTurn a working cURL example into a browser or Node fetch call with matching headers.
Explain Code to Non Technical Users
RoutineRewrite technical code behaviour in plain language for teammates, clients, or stakeholders.
Format a JSON Payload Cleanly
RoutineClean up a JSON payload for readability, validation, or quick inspection during development.
Generate an OpenAPI Schema Example
RoutineDraft an OpenAPI example for a known endpoint shape, fields, and sample response.
Generate TypeScript Types from JSON
RoutineTurn a sample JSON payload into clean TypeScript types for predictable application data.
Rename Variables Consistently Across Code
RoutineSuggest clear variable renames that stay consistent across a contained code snippet.
Summarize a Pull Request
RoutineCondense a pull request into key changes, risks, and reviewer notes for fast handoff.
Summarize Log Output for Triage
RoutineCondense noisy application logs into likely failure points and the next debugging question.
Summarize Meeting Notes for Developers
RoutineTurn rough meeting notes into action items, decisions, and open questions for the team.
Translate Error Message to Plain English
RoutineRewrite a dense error message into direct plain language and the likely next debugging step.
Write a Git Commit Message
RoutineTurn a diff summary into a concise commit message with clear intent and scope.
Write a Regex Pattern
RoutineDraft a regex for a well-defined validation or extraction task with clear input examples.
Write CLI Usage Examples
RoutineCreate short usage examples for a command line tool with known flags and outputs.
Write SQL Query from Requirements
RoutineDraft a straightforward SQL query from clear filters, joins, and output columns.
Write Unit Tests for Express API
RoutineCreate focused tests for an Express endpoint with predictable request and response cases.
Moderate
20 task pages
Add Role Based Access Control
ModerateImplement role checks and route guards for a contained app surface with known permissions.
Build a Webhook Handler Endpoint
ModerateImplement a webhook handler with signature checks, event parsing, and clear retry handling.
Debug a CI Pipeline Failure
ModerateWork through a failing CI job with logs, known steps, and a bounded build environment.
Debug an API Timeout Issue
ModerateDiagnose a timeout in a known request path with logs, timings, and a contained service boundary.
Document Functions Across a Codebase
ModerateWrite clear function summaries and usage notes across a contained module or service.
Extract a Reusable UI Component
ModeratePull repeated UI code into a reusable component with clear props and low behavioural risk.
Fix a Failing Unit Test
ModerateDiagnose a failing test with a known assertion, fixture, or mock mismatch in a small scope.
Implement a REST API Endpoint
ModerateBuild a REST endpoint with request validation, handler logic, and a predictable response shape.
Implement Form Validation Rules
ModerateAdd form validation with field rules, user feedback, and clear edge case handling.
Implement Pagination in an API
ModerateAdd pagination parameters, response metadata, and predictable query behaviour to an API.
Integrate a Third Party API
ModerateWire a known external API into an app with auth, request mapping, and basic error handling.
Migrate JavaScript Module to TypeScript
ModerateConvert a JavaScript module to TypeScript while preserving exports, behaviour, and type safety.
Refactor a Legacy JavaScript Module
ModerateClean up a legacy module while preserving exports, behaviour, and known integration points.
Refactor a React Component to Hooks
ModerateConvert a class based React component to hooks with predictable state and effect changes.
Refactor Authentication Middleware Safely
ModerateRework authentication middleware while preserving request flow, guards, and response behaviour.
Refactor Redux State to Context
ModerateReplace a small Redux slice with React Context while preserving data flow and component behaviour.
Write a Database Migration Safely
ModerateDraft a schema migration with clear forward steps, rollback thinking, and expected data changes.
Write a Dockerfile for an App
ModerateDraft a Dockerfile with sensible base image, build steps, and runtime defaults for an app.
Write a GitHub Actions Workflow
ModerateDraft a CI workflow with clear steps, cache use, and predictable build or test execution.
Write API Documentation for Developers
ModerateDraft accurate endpoint documentation from known request shapes, examples, and response behaviour.
Deep
15 task pages
Audit an Authentication Flow
DeepInspect an authentication flow for trust boundaries, session handling, and privilege escalation risk.
Audit Secrets Management Setup
DeepReview how secrets are stored, injected, rotated, and exposed across an application stack.
Debug a Memory Leak in Node
DeepTrace memory growth in a Node service across code paths, object lifetimes, and repeated requests.
Debug an Async Race Condition
DeepDiagnose a race condition across async code paths where timing and state ordering matter.
Debug an Intermittent Production Error
DeepTrace a hard to reproduce production issue across logs, deploys, and cross service behaviour.
Design a Microservices API Boundary
DeepPlan service boundaries, API contracts, and failure handling across several cooperating services.
Design a SaaS Database Schema
DeepDesign a multi table SaaS schema with tenant boundaries, growth, and future query patterns in mind.
Design an Application Caching Strategy
DeepPlan cache layers, invalidation, freshness rules, and operational trade offs for an app surface.
Design an Event Driven Architecture
DeepPlan event contracts, delivery semantics, retries, and failure handling across multiple services.
Design Multi Tenant Permissions
DeepPlan tenant aware permissions, scope boundaries, and cross tenant safety rules for an app.
Diagnose a Distributed Tracing Gap
DeepReason across services to find where tracing context is dropped or no longer correlated.
Plan a Data Migration Strategy
DeepPlan rollout, rollback, backfill, and cutover risk for a meaningful production data migration.
Review a Pull Request for Security
DeepReview a code change for auth gaps, injection risks, data exposure, and unsafe assumptions.
Review Kubernetes Deployment Risk
DeepInspect a deployment plan for rollout hazards, config drift, and production failure modes.
Review SQL Injection Risk in Code
DeepInspect a query path for interpolation, unsafe ORM usage, and missing parameterization safeguards.