lovable-boilerplate development.instructions.md

A set of project instructions for building and shipping a React website with Vite, TypeScript, and related tools. It defines the commands, coding structure, and checks expected before release.

In plain words
What is it for?
Use it to run the development server, build the site, check code quality, preview the production build, and review accessibility and responsive behavior before shipping.
Why use it?
It gives an agent consistent project rules and helps prevent common release problems such as lint errors, broken mobile layouts, poor color contrast, and browser warnings.

Instructions file for GitHub Copilot

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/chihebnabil/lovable-boilerplate/development
Clone the repo
git clone --depth 1 https://github.com/chihebnabil/lovable-boilerplate

Made for: GitHub Copilot.

Per session 2,060 This file is loaded in full into every session.
When invoked 2,060 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.02060 $0.02060
Opus 5 $0.01030 $0.01030
Sonnet 5 $0.00412 $0.00412
Haiku 4.5 $0.00206 $0.00206

Measured 2d ago against content hash c937c00e9b86, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

lovable-boilerplate development.instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/instructions/development.instructions.md · 265 lines

How it starts

The opening of the file, as written. The whole thing — 265 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Development Workflow & Commands

ESSENTIAL COMMANDS

npm run dev          # Start development server (port 8080)
npm run build        # Production build
npm run lint         # Run ESLint - MUST pass before shipping
npm run preview      # Preview production build locally
npm install          # Install dependencies

CRITICAL WORKFLOW RULES

BEFORE SHIPPING:

  • Run npm run lint and fix all issues
  • Test responsive design on mobile/desktop
  • Verify accessibility contrast ratios
  • Ensure no console errors in browser

NEVER SHIP:

  • Code with ESLint errors
  • Untested responsive layouts
  • Poor accessibility (contrast violations)
  • Console errors or warnings

Framework Stack

  • React 18.3.1 with TypeScript for UI
  • Vite 5.4.1 as build tool with SWC for fast compilation
  • shadcn/ui component library built on Radix UI primitives
  • Tailwind CSS 3.4.11 for styling with custom design system
  • React Router DOM v6 for client-side routing
  • TanStack Query for server state management
  • Supabase 2.80.0 for backend, authentication, and database
  • React Hook Form + Zod for form handling and validation

Development Commands

Core Development

  • npm run dev - Start development server on port 8080
  • npm run build - Create production build
  • npm run build:dev - Create development build
  • npm run lint - Run ESLint linter
  • npm run preview - Preview production build locally

Package Management

  • npm install - Install dependencies (or use bun install for faster installs)

Key Architecture Patterns

Import Aliases (configured in vite.config.ts)

  • @/ maps to ./src/
  • @/components for components
  • @/lib for utilities
  • @/hooks for custom hooks
  • @/integrations/supabase for Supabase client and types

Routing Structure

Routes are defined in src/App.tsx. Add new routes above the catch-all * route:

<Routes>
  <Route path="/" element={<Index />} />
  {/* ADD NEW ROUTES HERE */}
  <Route path="*" element={<NotFound />} />
</Routes>

Read the full file on GitHub · 265 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 265 lines · 2,060 tokens per session scan A c937c00e9b86

Subscribe to this mod's changes

lovable-boilerplate development.instructions.md is an instructions file published in the GitHub repository chihebnabil/lovable-boilerplate (65 stars, last pushed 1mo ago), licensed MIT. It adds 2,060 tokens to every session, about $0.0103 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other instructions, from other repositories

react-seed AGENTS.md

Instructions for guokaigdg/react-seed, covering agents.md, 目录, 1. 项目概览, 2. 技术栈 and 3. 目录结构.

guokaigdg/react-seed · 5,007 tokens

packmind packmind-cli-command-structure.instructions.md

Instructions for PackmindHub/packmind: Enforce clear separation of concerns between command definition (parameters and metadata) and handler logic (validation, execution, and output) in apps/cli commands to improve testability, maintainabi... .

PackmindHub/packmind · 353 tokens

packmind packmind-back-end-typescript-clean-code-practices.instructions.md

Instructions for PackmindHub/packmind: This standard establishes clean code practices in TypeScript for back-end development to enhance maintainability and ensure consistent patterns across services. It covers logging best practices, error... .

PackmindHub/packmind · 255 tokens

packmind packmind-frontend-navigation-with-react-router.instructions.md

Instructions for PackmindHub/packmind: This codebase uses React Router v7 with organization and space scoping in URLs (e.g., /org/{orgSlug}/space/{spaceSlug}/recipes). To maintain consistency, improve maintainability, and simplify navigati... .

PackmindHub/packmind · 229 tokens

build-applications-w-copilot-agent-mode octofit_tracker_setup_project.instructions.md

Instructions for skills/build-applications-w-copilot-agent-mode, covering octofit tracker multi-tier application setup guidelines, application goals, command execution rules, forwarded ports and project structure.

skills/build-applications-w-copilot-agent-mode · 323 tokens

build-applications-w-copilot-agent-mode octofit_tracker_react_frontend.instructions.md

Instructions for skills/build-applications-w-copilot-agent-mode, covering octofit tracker react presentation tier guidelines and images.

skills/build-applications-w-copilot-agent-mode · 124 tokens