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.
npx agentmods add instructions/chihebnabil/lovable-boilerplate/developmentgit clone --depth 1 https://github.com/chihebnabil/lovable-boilerplateWhat 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.
| Model | Per session | Once 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 |
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.
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 lintand 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 8080npm run build- Create production buildnpm run build:dev- Create development buildnpm run lint- Run ESLint linternpm run preview- Preview production build locally
Package Management
npm install- Install dependencies (or usebun installfor faster installs)
Key Architecture Patterns
Import Aliases (configured in vite.config.ts)
@/maps to./src/@/componentsfor components@/libfor utilities@/hooksfor custom hooks@/integrations/supabasefor 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>
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.
- 2d ago First seen · 265 lines · 2,060 tokens per session scan A c937c00e9b86
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.
Other instructions, from other repositories
react-seed AGENTS.md
Instructions for guokaigdg/react-seed, covering agents.md, 目录, 1. 项目概览, 2. 技术栈 and 3. 目录结构.
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... .
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... .
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... .
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.
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.