lovable-boilerplate architecture.instructions.md

lovable-boilerplate architecture.instructions.md is an instructions file for GitHub Copilot from chihebnabil/lovable-boilerplate. It costs 2,728 tokens per session, scanned A, original, MIT.

Project instructions for structuring frontend code into small, reusable parts with separate responsibilities. They cover rules such as keeping UI, business logic, and API access from being mixed together.

In plain words
What is it for?
Use them when designing or reviewing components, hooks, service layers, shared types, and page structure in the project.
Why use it?
They reduce duplicated code and oversized components that are harder to understand, test, and change.

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

Made for: GitHub Copilot.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for lovable-boilerplate architecture.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/chihebnabil/lovable-boilerplate/architecture.svg)](https://agentmods.dev/instructions/chihebnabil/lovable-boilerplate/architecture)
Your own site
<a href="https://agentmods.dev/instructions/chihebnabil/lovable-boilerplate/architecture"><img src="https://agentmods.dev/badge/instructions/chihebnabil/lovable-boilerplate/architecture.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,728 This file is loaded in full into every session.
When invoked 2,728 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.02728 $0.02728
Opus 5 $0.01364 $0.01364
Sonnet 5 $0.00546 $0.00546
Haiku 4.5 $0.00273 $0.00273

Measured 5d ago against content hash 1d9111e00b18, 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 architecture.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 5d 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/architecture.instructions.md · 381 lines

How it starts

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

Code Architecture & Reusability Guidelines

CRITICAL ARCHITECTURE RULES

NEVER CREATE:

  • Components over 300 lines
  • Duplicate logic across components
  • Inline API calls in UI components
  • Mixed concerns (UI + business logic + API)
  • Copy-pasted code blocks

ALWAYS CREATE:

  • Single-responsibility components (20-100 lines)
  • Custom hooks for reusable logic
  • Service layer for API calls
  • Shared types in lib/types.ts
  • Composition patterns from smaller components

Component Composition Over Monoliths

NEVER create large, monolithic components that handle multiple concerns: Avoid: Single components or page that exceed 300 lines or handle multiple responsibilities Avoid: Pages that contain all logic inline instead of using smaller components Avoid: Components that mix UI rendering, business logic, and API calls

ALWAYS break down complex functionality into smaller, reusable pieces: Create: Focused components with single responsibilities (20-100 lines) Create: Composition patterns using multiple small components Create: Custom hooks for reusable logic extraction Create: Separate layers for data fetching, business logic, and presentation

Component Organization Strategy

1. Feature-Based Organization

// Wrong: Everything in one file
const Dashboard = () => {
  // 300+ lines of mixed logic
  return <div>{/* massive JSX */}</div>
}

// ✅ Correct: Composed from focused components
const Dashboard = () => (
  <DashboardLayout>
    <DashboardHeader />
    <DashboardStats />
    <DashboardCharts />
    <DashboardActivity />
  </DashboardLayout>
)

2. Reusable Component Patterns

// ✅ Base components for consistent UI patterns
const Card = ({ children, className, ...props }) => (
  <div className={cn("rounded-lg border bg-card", className)} {...props}>
    {children}
  </div>
)

// ✅ Composite components for complex patterns  
const StatsCard = ({ title, value, change, icon: Icon }) => (
  <Card className="p-6">
    <div className="flex items-center justify-between">
      <div>
        <p className="text-sm text-muted-foreground">{title}</p>
        <p className="text-2xl font-bold">{value}</p>
        <p className="text-sm text-green-600">{change}</p>
      </div>
      <Icon className="h-8 w-8 text-muted-foreground" />
    </div>
  </Card>
)

Read the full file on GitHub · 381 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. 5d ago First seen · 381 lines · 2,728 tokens per session scan A 1d9111e00b18

Subscribe to this mod's changes

lovable-boilerplate architecture.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,728 tokens to every session, about $0.0136 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.