-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathPluginsPage.astro
More file actions
25 lines (23 loc) · 1.12 KB
/
Copy pathPluginsPage.astro
File metadata and controls
25 lines (23 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
import Icon from "./Icon.astro";
import PluginDirectory from "./PluginDirectory.astro";
---
<section class="plugins-hero">
<div class="plugins-intro">
<h1>Agent plugins that do real work</h1>
<p>Browse installable skills, hooks and agents for Claude Code, Codex, Cursor and Gemini.</p>
</div>
<PluginDirectory />
</section>
<section class="section compatibility" id="compatibility">
<div class="section-intro">
<h2>Use the same skills across tools</h2>
<p>Support labels are derived from the manifest files present in each plugin directory.</p>
</div>
<div class="compatibility-rail">
<div><Icon name="claude" size={26} /><strong>Claude Code</strong><span>Plugins, skills, agents, hooks and commands</span></div>
<div><Icon name="openai" size={26} /><strong>Codex CLI</strong><span>Plugins, skills and shared agent guidance</span></div>
<div><Icon name="cursor" size={26} /><strong>Cursor</strong><span>Plugins, skills and project guidance</span></div>
<div><Icon name="gemini" size={26} /><strong>Gemini CLI</strong><span>Extensions, skills, agents and hooks</span></div>
</div>
</section>