用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill icons命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Token-efficient tracking for AI orchestration. CLI-first for status updates (~50 tokens), agent fallback for complex ops (~1KB). Use when: updating task status, querying blockers, creating progress files, validating phases.
AshAi extension guidelines for integrating AI capabilities with Ash Framework. Use when implementing vectorization/embeddings, exposing Ash actions as LLM tools, creating prompt-backed actions, or setting up MCP servers. Covers semantic search, LangChain integration, and structured outputs.
This skill should be used when solving hard questions, complex architectural problems, or debugging issues that benefit from GPT-5 Pro or GPT-5.1 thinking models with large file context. Use when standard Claude analysis needs deeper reasoning or extended context windows.
基于 SOC 职业分类
正在显示 SKILL.md
| name | icons |
| description | SeekSaaS icon system guide covering @workspace/custom-icons package with Icons and AiIcons components |
SeekSaaS provides a comprehensive icon system through the @workspace/custom-icons package. This package includes:
packages/custom-icons/
├── src/
│ ├── index.tsx # Main exports
│ ├── custom/ # General icons
│ │ └── index.tsx # Icons object (100+ icons)
│ └── ai-icons/ # AI-specific icons
│ └── index.tsx # AiIcons object
├── package.json
└── tsconfig.json
The package is already available in the monorepo. Import it into your feature or web app:
# Already available via workspace protocol
pnpm add @workspace/custom-icons
import { Icons } from "@workspace/custom-icons";
import { AiIcons } from "@workspace/custom-icons/ai-icons";
import { Icons } from "@workspace/custom-icons";
export function MyComponent() {
return (
<div>
<Icons.react size={24} />
<Icons.nextJS size={24} />
<Icons.gitHub size={24} />
<Icons.lucide size={24} />
</div>
);
}
import { AiIcons } from "@workspace/custom-icons/ai-icons";
export function AIComponent() {
return (
<div>
<AiIcons.openai size={24} />
<AiIcons.claude size={24} />
<AiIcons.cursor size={24} />
</div>
);
}
Most icons accept SVG props:
<Icons.react
size={48}
className="text-blue-500"
onClick={() => console.log("clicked")}
/>
<AiIcons.cursor
width={64}
height={64}
style={{ color: "#000" }}
/>
| Icon | Name | Usage |
|---|---|---|
Icons.nextJS | Next.js | |
Icons.nuxt | Nuxt.js | |
Icons.svelteKit | SvelteKit | |
Icons.solidStart | SolidStart | |
Icons.react | React | |
Icons.vue | Vue.js | |
Icons.astro | Astro | |
Icons.remix | Remix | |
Icons.reactRouter | React Router | |
Icons.expo | Expo | |
Icons.hono | Hono | |
Icons.fastify | Fastify | |
Icons.express | Express | |
Icons.elysia | Elysia | |
Icons.node | Node.js |
| Icon | Name | Usage |
|---|---|---|
Icons.prisma | Prisma | |
Icons.drizzle | Drizzle ORM | |
Icons.tanstack | TanStack |
| Icon | Name | Usage |
|---|---|---|
Icons.biomejs | Biome | |
Icons.turborepo | Turborepo | |
Icons.pnpm | pnpm | |
Icons.yarn | Yarn | |
Icons.npm | npm | |
Icons.vite | Vite | |
Icons.vercel | Vercel |
| Icon | Name | Usage |
|---|---|---|
Icons.shadcn | shadcn/ui | |
Icons.radix | Radix UI | |
Icons.tailwind | Tailwind CSS | |
Icons.tailark | TailArk | |
Icons.magicui | Magic UI |
| Icon | Name | Usage |
|---|---|---|
Icons.betterAuth | Better Auth | |
Icons.stripe | Stripe | |
Icons.paypal | PayPal | |
Icons.alipay | Alipay | |
Icons.wechatpay | WeChat Pay |
| Icon | Name | Usage |
|---|---|---|
Icons.cloudflare | Cloudflare | |
Icons.aws | AWS | |
Icons.docker | Docker |
| Icon | Name | Usage |
|---|---|---|
Icons.gitHub | GitHub | |
Icons.x | Twitter/X | |
Icons.linkedIn | ||
Icons.vk | VK | |
Icons.discord | Discord | |
Icons.youtube | YouTube | |
Icons.google | ||
Icons.apple | Apple |
| Icon | Name | Usage |
|---|---|---|
Icons.ts | TypeScript | |
Icons.javascript | JavaScript | |
Icons.css | CSS | |
Icons.json | JSON | |
Icons.bash | Bash |
| Icon | Name | Usage |
|---|---|---|
Icons.motion | Framer Motion |
| Icon | Name | Usage |
|---|---|---|
Icons.fumadocs | Fumadocs | |
Icons.book | Generic book | |
Icons.aria | ARIA |
| Icon | Name | Usage |
|---|---|---|
Icons.lucide | Lucide | |
Icons.v0 | v0 | |
Icons.creem | Creem | |
Icons.nitro | Nitro | |
Icons.inlang | inlang | |
Icons.i18next | i18next |
| Icon | Name | Usage |
|---|---|---|
AiIcons.cursor | Cursor IDE | |
AiIcons.vscode | VS Code | |
AiIcons.copilot | GitHub Copilot | |
AiIcons.zed | Zed Editor | |
AiIcons.windsurf | WindSurf |
| Icon | Name | Usage |
|---|---|---|
AiIcons.openai | OpenAI (ChatGPT) | |
AiIcons.claude | Claude (Anthropic) | |
AiIcons.gemini | Gemini (Google) | |
AiIcons.deepseek | DeepSeek | |
AiIcons.xai | xAI (Grok) |
| Icon | Name | Usage |
|---|---|---|
AiIcons.vibe | Vibe coding | |
AiIcons.mcp | MCP (Model Context Protocol) |
| Icon | Name | Usage |
|---|---|---|
AiIcons.opencode | OpenCode |
Combine icons with Tailwind CSS classes:
import { Icons } from "@workspace/custom-icons";
export function IconButton({ icon, label }: { icon: keyof typeof Icons; label: string }) {
const IconComponent = Icons[icon];
return (
<button className="flex items-center gap-2 px-4 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600 transition-colors">
<IconComponent size={20} />
<span>{label}</span>
</button>
);
}
// Using className for colors
<Icons.react className="text-blue-500" size={32} />
<Icons.gitHub className="text-gray-900 dark:text-white" size={24} />
// Using style prop
<Icons.nextJS style={{ color: "#000000" }} size={32} />
<Icons.lucide size={16} /> // Small
<Icons.lucide size={24} /> // Medium (default)
<Icons.lucide size={32} /> // Large
<Icons.lucide size={48} /> // Extra large
Edit packages/custom-icons/src/custom/index.tsx:
import { SiNewTool } from "react-icons/si";
export const Icons = {
// ... existing icons
newTool: SiNewTool,
};
Edit packages/custom-icons/src/ai-icons/index.tsx:
import { SiNewAI } from "react-icons/si";
export const AiIcons = {
// ... existing icons
newAI: (props: SVGProps<SVGSVGElement>) => (
<svg {...props}>
<path d="..." fill="currentColor" />
</svg>
),
};
import { cn } from "@workspace/ui/lib/utils";
import type { SVGProps } from "react";
export const Icons = {
customIcon: ({ className, ...props }: SVGProps<SVGSVGElement>) => (
<svg
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={cn("size-4", className)}
{...props}
>
<path d="M12 2L2 7l10 5 10-5-10-5z" fill="currentColor" />
<path d="M2 17l10 5 10-5" stroke="currentColor" strokeWidth={2} />
<path d="M2 12l10 5 10-5" stroke="currentColor" strokeWidth={2} />
</svg>
),
};
Use consistent sizes across the application:
| Size | Usage | Example |
|---|---|---|
| 16 | Small (labels, badges) | <Icons.icon size={16} /> |
| 20 | Buttons, small UI | <Icons.icon size={20} /> |
| 24 | Standard (most common) | <Icons.icon size={24} /> |
| 32 | Cards, sections | <Icons.icon size={32} /> |
| 48 | Hero sections | <Icons.icon size={48} /> |
| 64 | Feature highlights | <Icons.icon size={64} /> |
Icons should be accessible when used meaningfully:
// Decorative icons (screen reader can skip)
<Icons.gitHub aria-hidden="true" />
// Interactive icons (with label)
<button aria-label="GitHub">
<Icons.gitHub size={24} />
</button>
// Informational icons (with description)
<div role="img" aria-label="Status: Online" aria-description="Green checkmark indicating system is operational">
<Icons.checkCircle className="text-green-500" size={24} />
</div>
The icons are exported as an object, so importing the entire module is efficient. For best results:
// Good - import what you need
import { Icons } from "@workspace/custom-icons";
const { react, vue } = Icons;
// Avoid - this still works but imports more
import * as AllIcons from "@workspace/custom-icons";
import { memo } from "react";
import { Icons } from "@workspace/custom-icons";
const ReactIcon = memo(Icons.react);
const VueIcon = memo(Icons.vue);
export function IconGrid() {
return (
<div className="grid grid-cols-4 gap-4">
<ReactIcon size={32} />
<VueIcon size={32} />
</div>
);
}
import { Icons } from "@workspace/custom-icons";
import { Button } from "@workspace/ui/components/ui/button";
import { cn } from "@workspace/ui/lib/utils";
interface IconButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
icon: keyof typeof Icons;
variant?: "default" | "ghost" | "outline";
size?: "sm" | "md" | "lg";
}
export function IconButton({ icon, variant = "default", size = "md", className, ...props }: IconButtonProps) {
const IconComponent = Icons[icon];
const sizeMap = { sm: 16, md: 20, lg: 24 };
return (
<Button variant={variant} size="icon" className=" ", )} {}>
);
}
import { Icons } from "@workspace/custom-icons";
export function IconBadge({ icon, label, color }: { icon: keyof typeof Icons; label: string; color: string }) {
const IconComponent = Icons[icon];
return (
<span className={cn("inline-flex items-center gap-1 px-2 py-1 rounded-full text-xs font-medium", color)}>
<IconComponent size={14} />
{label}
</span>
);
}
import { Icons } from "@workspace/custom-icons";
export function TechCard({ name, icon, description }: { name: string; icon: keyof typeof Icons; description: string }) {
const IconComponent = Icons[icon];
return (
<div className="p-4 border rounded-lg hover:shadow-lg transition-shadow">
<IconComponent size={48} className="mb-3 text-blue-500" />
<h3 className="font-semibold">{name}</h3>
<p className="text-sm text-muted-foreground">{description}</p>
</div>
);
}
Full TypeScript support with type inference:
import { Icons, AiIcons } from "@workspace/custom-icons";
// Type-safe icon access
const iconName: keyof typeof Icons = "react";
const aiIconName: keyof typeof AiIcons = "claude";
// These will be typed correctly
const Icon = Icons[iconName];
const AiIcon = AiIcons[aiIconName];
{
"dependencies": {
"@workspace/ui": "workspace:*",
"class-variance-authority": "^0.7.1",
"react-icons": "^5.5.0"
}
}
cn() for class name merging