import { Link } from 'react-router-dom'; import { specializedPlugins } from '../data/specializedPlugins'; import { usePageMeta } from '../hooks/usePageMeta'; import { buildPluginsMeta } from '../utils/seo'; const repoBaseUrl = 'https://github.com/sickn33/antigravity-awesome-skills'; function pluginFolderUrl(pluginId: string): string { return `${repoBaseUrl}/tree/main/plugins/antigravity-bundle-${pluginId}`; } function pluginDocUrl(): string { return `${repoBaseUrl}/blob/main/docs/users/plugins.md`; } function bundleDocUrl(): string { return `${repoBaseUrl}/blob/main/docs/users/bundles.md`; } export function Plugins(): React.ReactElement { usePageMeta(buildPluginsMeta(specializedPlugins.length)); const tierOne = specializedPlugins.filter((plugin) => plugin.priority === 'tier-1'); const tierTwo = specializedPlugins.filter((plugin) => plugin.priority === 'tier-2'); return (

Specialized Plugins

Choose the focused AAS plugin for your AI coding workflow

AAS specialized plugins are focused, domain-specific distributions of the 1,550+ skill library. Start here when you know the job: web apps, security, data analytics, documents, DevOps, QA, OSS maintenance, mobile apps, automation, or agent and MCP systems.

Read plugin install guide Browse full skill catalog

Quick Answer

Plugins, bundles, and workflows serve different decisions

Plugin

What should I install or activate for this domain?

Bundle

Which skills naturally belong together for a role?

Workflow

What order should the assistant follow to get a result?

); } function PluginSection({ title, plugins, }: { title: string; plugins: typeof specializedPlugins; }): React.ReactElement { return (

AAS plugin catalog

{title}

{plugins.map((plugin) => (

{plugin.name}

{plugin.audience}

{plugin.priority}

{plugin.why}

{plugin.skills.slice(0, 6).map((skillId) => ( @{skillId} ))} {plugin.skills.length > 6 && ( +{plugin.skills.length - 6} more )}
View plugin folder Read bundle notes
))}
); } export default Plugins;