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/componentsgit 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.00391 | $0.00391 |
| Opus 5 | $0.00196 | $0.00196 |
| Sonnet 5 | $0.00078 | $0.00078 |
| Haiku 4.5 | $0.00039 | $0.00039 |
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.
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
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.
- 3d ago First seen · 57 lines · 391 tokens per session scan A fac308c818ed
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.
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.
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... .
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.
llm-ide-rules react.instructions.md
Instructions for iloveitaly/llm-ide-rules, covering react, mock data, react hook form and styling.