Lobe Icons is a collection of AI and large-language-model brand logos supplied as dependency-free SVG, PNG, and WebP assets for React and React Native applications. Developers use it to display model and service brands in their interfaces, and the catalogue contains a rule and skill for working with the icon set.
Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/lobehub/lobe-iconsnpx agentmods add rules/lobehub/lobe-icons/lobe-icons-guideWrote 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.
[](https://agentmods.dev/rules/lobehub/lobe-icons/lobe-icons-guide)<a href="https://agentmods.dev/rules/lobehub/lobe-icons/lobe-icons-guide"><img src="https://agentmods.dev/badge/rules/lobehub/lobe-icons/lobe-icons-guide/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/rules/lobehub/lobe-icons/lobe-icons-guide"><img src="https://agentmods.dev/badge/rules/lobehub/lobe-icons/lobe-icons-guide.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.01433 | $0.01433 |
| Opus 5 | $0.00717 | $0.00717 |
| Sonnet 5 | $0.00287 | $0.00287 |
| Haiku 4.5 | $0.00143 | $0.00143 |
Grade A, and why
lobe-icons-guide 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 9d 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 — 206 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Lobe Icons Repository Guide
This guide provides comprehensive information about the lobe-icons repository structure and how to add new icons.
Project Overview
The lobe-icons repository contains over 150 AI/ML brand icons organized in a consistent structure. Each icon brand has its own directory under src/ with standardized components and exports.
Directory Structure
Root Structure
src/- Contains all icon brand directoriespackages/- Static format packages (PNG, SVG, WebP)docs/- Documentation and guidesscripts/- Build and automation scripts
Icon Brand Structure
Each icon brand follows this pattern:
src/IconName/
├── index.ts # Main exports
├── style.ts # Brand constants and styling
├── index.md # Documentation
└── components/
├── Mono.tsx # Monochrome icon
├── Color.tsx # Colored icon (if applicable)
├── Text.tsx # Text component
├── Avatar.tsx # Avatar component
└── Combine.tsx # Combined icon+text
Adding a New Icon
1. Create Directory Structure
Create a new directory under src/ with your icon brand name:
src/YourIconName/
2. Essential Files to Create
Style Configuration (style.ts)
export const TITLE = 'YourIconName';
export const TEXT_MULTIPLE = 0.6; // Used in Combine component
export const SPACE_MULTIPLE = 0.1; // Used in Combine component
export const COLOR_PRIMARY = '#yourBrandColor'; // Used in Avatar
// Avatar constants (recommended)
export const AVATAR_BACKGROUND = COLOR_PRIMARY;
export const AVATAR_COLOR = '#fff';
export const AVATAR_ICON_MULTIPLE = 0.6;
Monochrome Icon (Mono.tsx)
'use client';
import { memo } from 'react';
import type { IconType } from '@/types';
import { TITLE } from '../style';
const Icon: IconType = memo(({ size = '1em', style, ...rest }) => {
return (
<svg
fill="currentColor"
fillRule="evenodd"
height={size}
style={{ flex: 'none', lineHeight: 1, ...style }}
viewBox="0 0 24 24"
width={size}
xmlns="http://www.w3.org/2000/svg"
{...rest}
>
<title>{TITLE}</title>
<path d="YOUR_SVG_PATH_DATA" />
</svg>
);
});
export default Icon;
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.
- 9d ago First seen · 206 lines · 1,433 tokens per session scan A 0895d88eb856
lobe-icons-guide is a cursor rule published in the GitHub repository lobehub/lobe-icons (2,488 stars, last pushed 3d ago), licensed MIT. It adds 1,433 tokens to every session, about $0.0072 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 cursor rules, from other repositories
ui-components
This file outlines rules for using shadcn/ui components within the AgentDock OSS Client application.
design
All tasks related to updating frontend components, CSS, and general styling.
figma-to-code
Rules for converting a Figma interface design into code, covering design analysis, component splitting, and style implementation. Figma is a tool for creating and sharing interface designs.
ui-styling
A set of rules for writing user-interface styles, including when to use shadcn defaults and when to move long class lists into a `.styles.ts` file.
ponytail
Ponytail, lazy senior dev mode. Always pick the simplest solution that works.
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.