← Library

prompts

Ready-made prompts, templates, and shortcuts for your workflow.

New to Agentic Coding

Prompt Ask Question

Ask a Question About This Code

Ask Claude to explain what selected code does.

Prompt Find File

Find a File

Ask Claude to locate a file by name or purpose.

Prompt Search Codebase

Search the Codebase

Find where something is used or defined.

Prompt Small Edit

Make a Small Edit

Change a single line or value in a file.

Prompt Undo Change

Undo Last Change

Revert the most recent edit Claude made.

Prompt Run Project

Run This Project

Figure out how to start the dev server or run the app.

Prompt Install Deps

Install Dependencies

Install packages and resolve missing dependencies.

Prompt Explain Error

What Does This Error Mean

Explain an error message in plain language.

Prompt Fix Typo

Fix a Typo

Find and fix a spelling mistake or typo in code.

Prompt Summarize File

Read and Summarize a File

Get a quick overview of any file.

Prompt Identify Stack

What Language Is This

Identify the language, framework, and stack.

Prompt Explain Concept

Help Me Understand This Concept

Explain a programming concept using examples from this codebase.

Prompt Get Oriented

Where Do I Start

Get oriented in an unfamiliar codebase.

Prompt Verify Code

Check If This Works

Verify code runs without errors.

Prompt Add Comment

Add a Comment

Add a helpful comment explaining tricky code.

Prompt Project Structure

Show Project Structure

Map out the file and folder layout.

Prompt Recent Changes

What Changed Recently

Summarize recent git changes.

git
Prompt Usage Examples

How to Use This Function

Show usage examples for a function or component.

Prompt Break It Down

Break This Down for Me

Simplify complex code into plain steps.

Prompt Save Work

Save My Work

Stage and commit current changes with a good message.

git

Git

Prompt Commit & Push

Commit and Push Changes

Stage all changes, create a commit with a descriptive message, and push to the current branch.

git
Prompt New Branch

Create a Feature Branch

Create and check out a new feature branch from the current base.

git
Prompt Pull & Rebase

Stash, Pull, and Rebase

Safely stash your changes, pull the latest, rebase, and restore your work.

git
Prompt Create PR

Create a Pull Request

Push the current branch and open a pull request with a summary of changes.

gitgithub
Prompt PR Description

Write PR Description

Generate a clear pull request title and description from the current diff.

gitgithub
Prompt Fix PR Comments

Address PR Review Comments

Read reviewer feedback on a PR and implement the requested changes.

gitgithub
Prompt Fix Conflicts

Resolve Merge Conflicts

Resolve all git merge conflicts, preserving the intended changes from both sides.

git
Prompt Squash Commits

Squash Commits

Combine multiple small commits into one clean commit with a good message.

git
Prompt Git Summary

Summarize Git Status

Show a clear summary of what's changed, staged, and ready to commit.

git
Prompt Cherry-Pick

Cherry-Pick a Commit

Apply a specific commit from another branch.

git
Prompt Undo Commit

Undo a Commit

Revert the last commit while keeping changes staged.

git
Prompt Git Bisect

Bisect to Find a Bug

Use git bisect to find which commit introduced a bug.

git
Prompt Clean Branches

Clean Up Branches

Delete merged and stale local branches.

git
Prompt Rebase History

Rebase and Clean History

Rebase and clean up commit history before merging.

git
Command git status

Git Status

Show which files are modified, staged, or untracked.

git
Command git log

Compact Commit History

Show the last 20 commits in a compact one-line format.

git
Command git graph

Visual Branch History

Show a visual graph of all branches and their commits.

git
Command git branch

List Local Branches

Show all local branches and highlight the current one.

git
Command git branch -a

List All Branches

Show all branches including remote tracking branches.

git
Command git diff

Show Unstaged Changes

Display line-by-line changes that haven't been staged yet.

git
Command git diff staged

Show Staged Changes

Display changes that are staged and ready to commit.

git
Command git diff stat

Change Summary

Show a summary of which files changed and how many lines were added or removed.

git
Command git stash list

List Stashes

Show all stashed changes you've saved for later.

git
Command git remote -v

Show Remote URLs

List all configured remotes with their fetch and push URLs.

git
Command git recent

Commits This Week

Show all commits made in the last 7 days.

git
Command git shortlog

Contributors by Commit Count

Rank contributors by number of commits.

git
Command git fetch

Fetch All Remotes

Download latest changes from all remotes without merging.

git
Command git add .

Stage All Changes

Stage every modified and new file for the next commit.

git
Command git push

Push to Remote

Upload local commits to the remote repository.

git

Setup

Prompt RN Navigation

Set Up React Navigation

Add React Navigation with stack, tab, or drawer navigators.

react-nativemobile
Prompt Worktrees

Set Up Git Worktrees

Create a git worktree so you can work on multiple branches in parallel without stashing.

gitworktrees
Prompt New Component

Scaffold a React Component

Generate a new React component with TypeScript, props interface, and a basic test file.

reacttypescriptfrontend
Prompt Pinia Store

Set Up a Pinia Store

Create a Pinia store with typed state, getters, and actions.

vue
Prompt Expo Config

Configure Expo Project

Set up or update Expo configuration for a managed workflow project.

react-nativeexpomobile
Prompt New Endpoint

Scaffold an API Endpoint

Generate a new API route with request validation, error handling, and a test.

nodepythonapibackend
Prompt Init Project

Initialize a New Project

Set up a new project with the right structure, config files, and dependencies.

nodepythonreacttypescript
Prompt Native Module

Integrate a Native Module

Add and configure a native module or library with platform linking.

react-nativeiosandroidmobile
Prompt Env Setup

Set Up Environment Variables

Create or update .env files with the required configuration for this project.

nodepythondocker
Prompt Project Structure

Go Project Structure

Organize a Go project with cmd/, internal/, and pkg/ layout.

go
Prompt Module Management

Go Module Management

Clean up go.mod, tidy dependencies, and resolve version conflicts.

go
Prompt Venv Setup

Python Virtual Environment Setup

Set up a Python virtual environment with proper dependency isolation.

python
Prompt Setup Monorepo

Set Up a Monorepo

Configure a monorepo with workspaces, shared dependencies, and build orchestration.

nodetypescriptmonorepo
Prompt Deps Management

Python Dependency Management

Set up or migrate dependency management with pip, poetry, or uv.

pythonpoetryuv
Prompt Setup Auth

Set Up Authentication

Add user authentication with sign up, sign in, sessions, and protected routes.

apinodereactpython
Prompt Project Structure

Python Project Structure

Organize a Python project with clean module layout and conventions.

python
Prompt Push Notifications

Set Up Push Notifications

Configure push notification handling for iOS and Android.

react-nativeexpoiosandroidmobile
Prompt Setup Tests

Set Up Testing Framework

Add a test runner and write the first test.

testing
Prompt Previews

Add SwiftUI Previews

Set up comprehensive SwiftUI previews with sample data and multiple configurations.

swiftswiftui
Prompt Middleware

Add Nuxt Route Middleware

Create route middleware for auth guards or redirects.

vuenuxt
Prompt Python Lint

Python Linting and Formatting

Set up ruff, black, or isort for consistent code formatting.

pythonruff
Prompt Deep Linking

Configure Deep Linking

Set up URL-based deep linking and universal links.

react-nativeiosandroidmobile
Prompt Setup Database

Set Up a Database

Configure a database connection and initial schema.

nodepython
Prompt SwiftData

Set Up SwiftData Models

Define SwiftData models with relationships, queries, and migration support.

swiftswiftuiiosmacos
Prompt Nuxt Plugin

Create a Nuxt Plugin

Register a Nuxt plugin for global utilities or third-party integrations.

vuenuxt
Prompt Setup CI

Set Up CI Pipeline

Add continuous integration with tests and linting.

ci-cd
Prompt Setup Linting

Set Up ESLint and Prettier

Configure ESLint and Prettier with sensible defaults.

nodereact
Prompt Setup Docker Dev

Set Up Docker for Development

Create a Docker development environment with hot reload.

docker
Prompt SPM Setup

Configure Swift Package

Set up or fix Swift Package Manager configuration with proper targets and dependencies.

swiftmacosios
Prompt Deploy Adapter

Configure SvelteKit Adapter

Set up the right SvelteKit deployment adapter for your hosting target.

sveltesveltekit
Prompt Linting

Go Linting Setup

Configure golangci-lint with appropriate linters for the project.

go
Prompt Config Management

Go Configuration Management

Load configuration from environment variables and config files.

go
Prompt Splash & Icon

Configure Splash Screen and App Icon

Set up the splash screen and generate app icons for all device sizes.

react-nativeexpoiosandroidmobile
Prompt AppStorage

Set Up @AppStorage and Defaults

Configure UserDefaults-backed preferences with @AppStorage and a settings model.

swiftswiftuimacosios
Prompt Windows

Configure macOS Windows

Set up WindowGroup, window sizing, and multi-window management for macOS apps.

swiftswiftuimacos
Prompt Menu Bar

Build Menu Bar App

Set up a macOS menu bar app with MenuBarExtra and system integration.

swiftswiftuimacos
Prompt Code Signing

Fix Code Signing and Notarization

Configure code signing, entitlements, and notarization for distribution.

swiftmacosios

Refactor

Prompt Error Handling

Go Error Handling Patterns

Apply idiomatic Go error handling with wrapping, errors.Is, and errors.As.

go
Prompt Simplify

Simplify This Code

Reduce complexity — fewer lines, clearer logic, same result.

Prompt View Body

Simplify SwiftUI View Body

Break down complex SwiftUI views into smaller, reusable subviews.

swiftswiftui
Prompt Composable

Extract a Vue Composable

Extract reusable logic into a Vue composable function.

vue
Prompt Extract Component

Extract Into Components

Break a large file into smaller, focused, reusable components.

reactfrontend
Prompt Interface Design

Go Interface Design

Design small, focused interfaces following Go conventions.

go
Prompt Goroutine Safety

Go Goroutine Safety

Audit and fix concurrency issues with mutexes, channels, and sync primitives.

goconcurrency
Prompt Modernize

Modernize Legacy Code

Update legacy patterns to modern language and framework idioms.

Prompt Observation

Migrate to Swift Observation

Migrate from ObservableObject/Combine to the Swift Observation framework (@Observable).

swiftswiftuiios
Prompt Script Setup

Convert to Script Setup

Refactor a component to use the <script setup> syntax.

vue
Prompt DRY It Up

Remove Duplicate Code

Find repeated code patterns and extract them into shared functions or modules.

Prompt Navigation

Fix SwiftUI Navigation

Restructure navigation to use NavigationStack with typed paths or NavigationSplitView.

swiftswiftui
Prompt Clean Imports

Clean Up Imports

Remove unused imports, sort them, and organize by convention.

typescriptpythonnode
Prompt Auto-Imports

Use Nuxt Auto-Imports

Replace manual imports with Nuxt's auto-import conventions.

vuenuxt
Prompt Error Handling

Add Error Handling

Add proper error handling, try/catch blocks, and graceful failure paths.

Prompt Rename Things

Rename for Clarity

Improve variable, function, and file names to be more descriptive and consistent.

Prompt Protocols

Extract Protocol Interfaces

Refactor concrete types into protocol-oriented designs for testability and flexibility.

swift
Prompt Context Propagation

Go Context Propagation

Thread context.Context through call chains for cancellation and deadlines.

goconcurrency
Prompt Split File

Split a Large File

Break a large file into smaller, focused modules.

Prompt Convert to TS

Convert to TypeScript

Convert a JavaScript file to TypeScript with proper types.

nodereact
Prompt Async/Await

Replace Callbacks with Async/Await

Modernize callback-based code to use async/await.

node
Prompt MVVM

Structure MVVM Architecture

Organize SwiftUI code into a clean Model-View-ViewModel architecture.

swiftswiftui
Prompt Consolidate Constants

Consolidate Constants

Gather scattered magic numbers and strings into a constants file.

Prompt Dependency Injection

Go Dependency Injection

Wire dependencies through constructors without a DI framework.

go
Prompt Fix Signatures

Improve Function Signatures

Simplify functions that take too many parameters.

Prompt Worker Pool

Go Worker Pool

Implement a worker pool pattern for bounded concurrent processing.

goconcurrency
Prompt Generics

Improve Swift Generics

Refactor repetitive code into generic types with proper constraints and associated types.

swift
Prompt Generics

Go Generics Patterns

Apply Go generics to reduce duplication with type-safe abstractions.

go

Testing

Prompt Write Tests

Write Tests for This Code

Generate unit tests covering the main paths, edge cases, and error conditions.

testing
Prompt Fix Tests

Fix Failing Tests

Diagnose and fix the currently failing tests.

testing
Prompt Integration Tests

Write Integration Tests

Generate integration tests for API endpoints or multi-component user flows.

apinodepython
Prompt Add Coverage

Add Test Coverage

Identify untested code paths and write tests to cover them.

testing
Prompt Pytest Fixtures

Pytest Patterns and Fixtures

Write pytest tests with fixtures, parametrize, and proper assertions.

pythonpytest
Prompt Test Data

Generate Test Data

Create realistic mock data, fixtures, and factories for testing.

testing
Prompt Edge Cases

Test Edge Cases

Identify and write tests for edge cases, boundary conditions, and unexpected inputs.

testing
Prompt Table Tests

Go Table-Driven Tests

Write table-driven tests with subtests and clear assertions.

gotesting
Prompt Unit Test

Write a Unit Test

Write a focused unit test for a single function.

testing
Prompt Mock Service

Mock an External Service

Create mocks for API calls or external dependencies.

testing
Prompt Test Errors

Test Error Paths

Write tests for error handling and failure scenarios.

testing
Prompt Snapshot Test

Add Snapshot Test

Create a snapshot test for UI components.

react
Prompt E2E Test

Write an End-to-End Test

Write a browser-based end-to-end test for a user flow.

react
Prompt Svelte Tests

Write Svelte Component Tests

Write tests for Svelte components using Vitest and Testing Library.

sveltetesting
Prompt Test Endpoint

Test an API Endpoint

Write integration tests for an API endpoint.

apinode
Prompt Vue Tests

Write Vue Component Tests

Write unit tests for a Vue component using Vitest and Vue Test Utils.

vue
Prompt Swift Tests

Add Swift Tests

Write tests using Swift Testing framework with @Test, #expect, and parameterized cases.

swiftswiftui
Prompt RN Testing

Add Mobile Tests

Write unit or integration tests for React Native components.

react-nativemobile

Debug

Prompt Diagnose Error

Diagnose This Error

Trace an error back to its root cause and suggest a fix.

Prompt Check Logs

Check Application Logs

Read recent logs and surface errors, warnings, or unusual patterns.

dockernodepython
Prompt State Mgmt

Fix SwiftUI State Management

Audit and fix misuse of @State, @Binding, @StateObject, @ObservedObject, and @EnvironmentObject.

swiftswiftui
Prompt Fix Bug

Fix This Bug

Identify the root cause of a bug, explain it clearly, and apply the smallest safe fix.

Prompt Fix Lint

Fix Lint and Formatting Issues

Run the linter and auto-fix all linting and formatting issues in the project.

Prompt Reactivity Fix

Fix Vue Reactivity Issues

Identify and fix common Vue reactivity pitfalls.

vue
Prompt Fix Build

Fix Build and Compile Errors

Find and fix all current build, compile, or type errors so the project builds clean.

typescriptnode
Prompt Type Hints

Python Type Hints and Mypy

Add type annotations and fix mypy errors across the codebase.

pythonmypy
Prompt Concurrency

Fix Swift Concurrency

Audit async/await usage, actor isolation, and Sendable conformance.

swiftswiftuimacosios
Prompt Fix Flaky Test

Fix Flaky Test

Investigate and stabilize an intermittently failing test.

testing
Prompt Exception Handling

Python Exception Handling

Implement proper exception handling with custom errors and error responses.

python
Prompt Errors

Improve Error Handling

Add proper Swift error handling with typed errors, do/catch, and Result.

swiftswiftui
Prompt Memory Leak

Find Memory Leak

Identify potential memory leaks — unclosed connections, listeners, growing caches.

nodepython
Prompt Trace Data

Trace Data Flow

Follow data from input to output through the system, showing every transformation.

Prompt Debug Request

Debug a Network Request

Trace and fix a failing HTTP request.

api
Prompt Debug State

Debug a State Issue

Track down a state management bug.

react
Prompt Debug Build

Debug a Build Failure

Fix a failing build or CI pipeline.

Prompt RN Debug

Debug React Native App

Set up debugging tools and diagnose common React Native issues.

react-nativemobile
Prompt Race Condition

Debug a Race Condition

Find and fix timing-dependent bugs.

Prompt Combine

Fix Combine Pipelines

Audit and fix Combine publisher chains for correctness, memory, and threading.

swiftmacosios

Frontend

Prompt Make Responsive

Add Responsive Design

Make a page or component work well on mobile, tablet, and desktop.

frontendreacthtmlcss
Prompt Fix Reactivity

Fix Reactive Declarations

Find and fix broken or inefficient reactive declarations in Svelte components.

sveltefrontend
Prompt Fix A11y

Improve Accessibility

Fix accessibility issues — add ARIA labels, keyboard navigation, and screen reader support.

frontendreacthtml
Prompt Platform Code

Add Platform-Specific Code

Handle iOS and Android differences with platform-specific logic.

react-nativeiosandroidmobile
Prompt Svelte 5 Runes

Migrate to Svelte 5 Runes

Convert legacy Svelte reactivity to Svelte 5 runes ($state, $derived, $effect, $props).

sveltefrontend
Prompt Shrink Bundle

Optimize Bundle Size

Analyze and reduce the JavaScript/CSS bundle size.

frontendreactnodetypescript
Prompt Add Store

Create Svelte Stores

Set up Svelte stores for shared state with proper typing and subscriptions.

sveltefrontend
Prompt Loading States

Add Loading States

Add loading spinners, skeletons, and error states for async operations.

frontendreact
Prompt Load Function

Write SvelteKit Load Functions

Create type-safe SvelteKit load functions for page data fetching.

sveltesveltekitfrontend
Prompt Form Validation

Add Form Validation

Add client-side form validation with clear error messages.

frontendreacthtml
Prompt RN Styling

React Native Responsive Styling

Add responsive StyleSheet patterns that adapt to different screen sizes.

react-nativemobile
Prompt Form Actions

Add SvelteKit Form Actions

Implement SvelteKit form actions with validation and progressive enhancement.

sveltesveltekitfrontend
Prompt Dark Mode

Add Dark Mode

Add dark mode support with a toggle and system preference detection.

frontendreactcss
Prompt Fix Re-renders

Reduce Re-renders

Find and fix unnecessary re-renders in React components.

reactfrontend
Prompt Gestures

Add Gesture Handling

Implement touch gestures like swipe, pinch, or pan using gesture handlers.

react-nativemobile
Prompt Add Routes

Set Up SvelteKit Routing

Create SvelteKit routes with layouts, params, and route groups.

sveltesveltekitfrontend
Prompt Component API

Design a Vue Component API

Design a component with clear props, emits, and slot interfaces.

vue
Prompt Lazy Load

Add Lazy Loading

Lazy load images, components, and routes to improve initial page load.

reactfrontend
Prompt Composition

Improve Component Composition

Refactor Svelte components using slots, snippets, or render delegation.

sveltefrontend
Prompt Transitions

Add Vue Transitions

Add enter/leave transitions to Vue components.

vue
Prompt Add Animation

Add an Animation

Add a smooth CSS or JS animation to a UI element.

react
Prompt Transitions

Add Svelte Transitions

Add smooth transitions and animations to Svelte component state changes.

sveltefrontend
Prompt Error Boundary

Add an Error Boundary

Add graceful error handling to UI components.

react
Prompt Skeleton Loader

Add a Skeleton Loader

Replace loading spinners with skeleton placeholder UI.

react
Prompt AppKit Interop

AppKit and SwiftUI Interop

Bridge between AppKit and SwiftUI using NSViewRepresentable and hosting controllers.

swiftswiftuiappkitmacos
Prompt SSR/CSR Config

Configure SSR and CSR

Set the right rendering strategy for SvelteKit pages and components.

sveltesveltekitfrontend
Prompt VueUse

Add VueUse Composable

Integrate a VueUse utility composable to avoid reinventing the wheel.

vue
Prompt Keyboard Nav

Add Keyboard Navigation

Make a UI component fully navigable with the keyboard.

react
Prompt Async Storage

Add Local Data Persistence

Persist data locally using AsyncStorage or MMKV.

react-nativemobile
Prompt Toast Notifications

Add Toast Notifications

Add a toast notification system for user feedback.

react
Prompt SEO Head

Add SEO Meta with useHead

Set up page-level SEO meta tags using Nuxt's useHead.

vuenuxt
Prompt RN Animation

Add React Native Animation

Add smooth native-thread animations using Reanimated or Animated API.

react-nativemobile
Prompt Search & Filter

Add Search and Filter

Add search and filtering to a list or table.

react
Prompt Fix A11y

Fix Svelte Accessibility

Find and fix accessibility issues flagged by Svelte's built-in a11y warnings.

sveltefrontendaccessibility
Prompt Accessibility

Fix SwiftUI Accessibility

Add accessibility labels, traits, and VoiceOver support to SwiftUI views.

swiftswiftuiiosmacos
Prompt Error Capture

Add Vue Error Handling

Set up error boundaries using onErrorCaptured in Vue.

vue
Prompt Add i18n

Add Internationalization

Set up multi-language support for the app.

react
Prompt Permissions

Handle App Permissions

Request and manage runtime permissions for camera, location, etc.

react-nativeiosandroidmobile
Prompt Add SEO

Add SvelteKit SEO

Add meta tags, Open Graph, and structured data to SvelteKit pages.

sveltesveltekitfrontend
Prompt Animations

Add SwiftUI Animations

Add smooth animations and transitions to SwiftUI views.

swiftswiftui
Prompt Provide/Inject

Use Provide/Inject

Share state down the component tree without prop drilling.

vue
Prompt Add Modal

Add a Modal Dialog

Create an accessible modal component.

react
Prompt Context API

Use Svelte Context API

Share data between parent and child components using setContext/getContext.

sveltefrontend
Prompt Form Handling

Build a Vue Form

Create a form with v-model bindings, validation, and submission.

vue
Prompt Data Fetching

Fetch Data with useFetch

Use Nuxt's useFetch or useAsyncData for SSR-friendly data loading.

vuenuxt
Prompt Scoped CSS

Fix Scoped Styles

Organize and fix scoped CSS in Svelte components.

sveltefrontendcss
Prompt Offline First

Add Offline-First Support

Make the app work reliably without network connectivity.

react-nativemobile

API

Prompt Design API

Design an API

Design RESTful endpoints with routes, methods, request/response schemas, and auth.

apinodepython
Prompt Add Validation

Add Input Validation

Add request validation with proper error messages for all API inputs.

apinodepythontypescript
Prompt OpenAPI Spec

Generate OpenAPI Spec

Generate an OpenAPI/Swagger specification from existing API routes.

apinodepython
Prompt Rate Limit

Add Rate Limiting

Add rate limiting to API endpoints to prevent abuse.

apinodepython
Prompt HTTP Handler

Go HTTP Handler

Implement a clean HTTP handler using stdlib net/http or a router.

goapi
Prompt Error Responses

Standardize Error Responses

Create consistent error response format across all endpoints.

apinode
Prompt API Versioning

Add API Versioning

Set up versioned API routes.

apinode
Prompt Server Route

Add a Nuxt Server Route

Create a Nuxt server API route with validation and error handling.

vuenuxt
Prompt API Auth

Add API Authentication

Add authentication middleware to API endpoints.

apinode
Prompt Add Webhook

Add a Webhook

Create a webhook endpoint with signature verification.

apinode
Prompt FastAPI Routes

FastAPI Route Patterns

Set up FastAPI routes with path params, query params, and request bodies.

pythonfastapi
Prompt WebSocket

Add WebSocket Support

Add real-time communication with WebSockets.

apinode
Prompt Pydantic Models

Pydantic Model Design

Design Pydantic models with validation, serialization, and field constraints.

pythonfastapipydantic
Prompt File Upload

Add File Upload

Implement a file upload endpoint with validation.

apinode
Prompt Django Views

Django Views and DRF Serializers

Create Django REST Framework views with serializers and permissions.

pythondjangodrf
Prompt Middleware

Go Middleware Pattern

Implement HTTP middleware for auth, logging, or request processing.

goapi
Prompt Flask Blueprints

Flask Blueprint Organization

Organize Flask routes into blueprints with proper separation of concerns.

pythonflask
Prompt FastAPI DI

FastAPI Dependency Injection

Use FastAPI's Depends system for shared logic, auth, and database sessions.

pythonfastapi
Prompt Django Admin

Django Admin Customization

Customize Django admin with list displays, filters, and inline editing.

pythondjango
Prompt gRPC Service

Go gRPC Service

Implement a gRPC service with protobuf definitions and server setup.

goapigrpc

DevOps

Prompt Add CI/CD

Add CI/CD Pipeline

Set up a CI/CD pipeline with build, test, lint, and deploy stages.

dockernodepythongithub
Prompt Dockerize

Dockerize This Project

Create a Dockerfile and docker-compose.yml for the project.

dockernodepython
Prompt Pre-commit Hooks

Add Pre-commit Hooks

Set up git hooks to lint, format, and type-check before each commit.

gitnodepython
Prompt Add Linting

Add Linting Configuration

Set up ESLint, Prettier, or equivalent linting and formatting tools.

nodetypescriptpython
Prompt Add TypeScript

Add TypeScript to a Project

Convert a JavaScript project to TypeScript with proper configuration.

typescriptnode
Prompt Deploy Check

Pre-Deploy Checklist

Run through a checklist to make sure everything is ready for deployment.

ci-cd
Prompt Env Management

Set Up Environment Management

Configure environment-specific settings and secrets.

security
Prompt Git Hooks

Add Git Hooks

Set up git hooks for automated code quality checks.

git
Prompt Dep Updates

Set Up Dependency Updates

Configure automated dependency update checking.

ci-cd
Prompt Code Coverage

Add Code Coverage Reporting

Set up code coverage tracking and reporting.

testing
Prompt App Store Build

Prepare App Store Build

Configure and run a production build for iOS App Store or Google Play.

react-nativeexpoiosandroidmobile
Prompt OTA Updates

Set Up Over-the-Air Updates

Configure EAS Update or CodePush for deploying JS updates without a store release.

react-nativeexpomobile
Prompt Deploy Config

Configure Nuxt Deployment

Set up Nitro presets and deployment config for Nuxt.

vuenuxt

Add these to your Facet Inserts in Crystl for one-click access.

get Crystl