lovable-boilerplate components.instructions.md

Coding rules for organizing React interface components in a Lovable boilerplate project. React components are reusable pieces of an application's user interface.

In plain words
What is it for?
They specify where UI, shared, and feature components belong, require wrappers instead of direct edits to shadcn/ui components, and set reuse, documentation, composition, and size guidelines.
Why use it?
They prevent shared interface pieces from being changed inconsistently or becoming large, difficult-to-maintain components.

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/components
Clone the repo
git clone --depth 1 https://github.com/chihebnabil/lovable-boilerplate

Made for: GitHub Copilot.

Per session 391 This file is loaded in full into every session.
When invoked 391 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.00391 $0.00391
Opus 5 $0.00196 $0.00196
Sonnet 5 $0.00078 $0.00078
Haiku 4.5 $0.00039 $0.00039

Measured 3d ago against content hash fac308c818ed, 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 components.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 3d 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/components.instructions.md · 57 lines

What it actually says

Component-Specific Guidelines

COMPONENT ARCHITECTURE RULES

UI Components (src/components/ui/)

  • READ-ONLY: Never modify shadcn/ui components directly
  • EXTEND: Create wrapper components in src/components/common/
  • COMPOSE: Build complex UI by combining multiple ui components

Common Components (src/components/common/)

  • REUSABLE: Components used across multiple features
  • GENERIC: Should accept flexible props for different use cases
  • DOCUMENTED: Include clear prop interfaces and examples

Feature Components (src/components/features/)

  • SPECIFIC: Components tied to particular business features
  • COMPOSED: Build from smaller ui and common components
  • SINGLE PURPOSE: One feature concern per component

Component Size Limits

// GOOD: Focused, single-purpose component (20-80 lines)
const UserCard = ({ user, onEdit }: UserCardProps) => (
  <Card className="p-4">
    <Avatar src={user.avatar} />
    <div>
      <h3>{user.name}</h3>
      <p>{user.email}</p>
      <Button onClick={() => onEdit(user.id)}>Edit</Button>
    </div>
  </Card>
)

// BAD: Monolithic component over 100 lines
const UserManagement = () => {
  // 200+ lines mixing multiple concerns
}

Component Composition Patterns

// PERFECT: Composition over monoliths
const DashboardPage = () => (
  <PageLayout>
    <DashboardHeader />
    <DashboardMetrics />
    <DashboardCharts />
    <DashboardActivity />
  </PageLayout>
)

// Each sub-component is 20-80 lines and focused
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. 3d ago First seen · 57 lines · 391 tokens per session scan A fac308c818ed

Subscribe to this mod's changes

lovable-boilerplate components.instructions.md is an instructions file published in the GitHub repository chihebnabil/lovable-boilerplate (65 stars, last pushed 1mo ago), licensed MIT. It adds 391 tokens to every session, about $0.0020 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

ai-website-cloner-template copilot-instructions.md

Instructions for JCodesMore/ai-website-cloner-template, covering this is not the next.js you know, website reverse-engineer template, what this is, tech stack and commands.

JCodesMore/ai-website-cloner-template · 1,779 tokens

packmind packmind-frontend-data-flow.instructions.md

Instructions for PackmindHub/packmind: This standard defines the recommended data flow pattern for frontend routes in the Packmind codebase using React Router v7 in framework mode with TanStack Query for data management. It ensures consist... .

PackmindHub/packmind · 416 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

llm-ide-rules react.instructions.md

Instructions for iloveitaly/llm-ide-rules, covering react, mock data, react hook form and styling.

iloveitaly/llm-ide-rules · 1,033 tokens