Skip to content

Commit 6362be2

Browse files
committed
fix: update website from 32 to 44 agents across all components
1 parent 7e23c3a commit 6362be2

File tree

8 files changed

+21
-21
lines changed

8 files changed

+21
-21
lines changed

docs/skillkit/components/AdvancedFeatures.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,16 @@ const ADVANCED_FEATURES: AdvancedFeature[] = [
5151
id: 'primer',
5252
title: 'Primer',
5353
subtitle: 'Zero-Config AI Instructions',
54-
description: 'Automatically generate CLAUDE.md, .cursorrules, and agent instructions by analyzing your codebase. Detects your tech stack, coding patterns, and project structure—then creates optimized instructions for all 32 agents.',
55-
highlight: 'Auto-generates instructions for 32 agents',
54+
description: 'Automatically generate CLAUDE.md, .cursorrules, and agent instructions by analyzing your codebase. Detects your tech stack, coding patterns, and project structure—then creates optimized instructions for all 44 agents.',
55+
highlight: 'Auto-generates instructions for 44 agents',
5656
icon: (
5757
<svg className="w-8 h-8" fill="none" viewBox="0 0 24 24" stroke="currentColor">
5858
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={1.5} d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01" />
5959
</svg>
6060
),
6161
commands: [
6262
{ cmd: 'primer', desc: 'Analyze & generate for detected agents' },
63-
{ cmd: 'primer --all-agents', desc: 'Generate for all 32 agents' },
63+
{ cmd: 'primer --all-agents', desc: 'Generate for all 44 agents' },
6464
{ cmd: 'primer --analyze-only', desc: 'Preview codebase analysis' },
6565
{ cmd: 'primer --json', desc: 'Machine-readable output' },
6666
],

docs/skillkit/components/Agents.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ export function Agents(): React.ReactElement {
312312
<section className="py-6 border-b border-zinc-800 overflow-hidden">
313313
<div className="mx-auto max-w-5xl px-4 sm:px-6 lg:px-8">
314314
<p className="text-zinc-500 font-mono text-[11px] uppercase tracking-widest mb-6 text-center">
315-
Works with 32 AI Agents
315+
Works with 44 AI Agents
316316
</p>
317317
</div>
318318

docs/skillkit/components/Documentation.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ const sections: DocSection[] = [
4242
content: (
4343
<div className="space-y-4">
4444
<p className="text-zinc-300">
45-
SkillKit is a universal command-line interface (CLI) and programmatic toolkit for managing AI agent skills across 32 AI coding platforms. It solves the fragmentation problem where each AI agent uses different skill formats and directory structures.
45+
SkillKit is a universal command-line interface (CLI) and programmatic toolkit for managing AI agent skills across 44 AI coding platforms. It solves the fragmentation problem where each AI agent uses different skill formats and directory structures.
4646
</p>
4747
<h3 className="text-lg font-semibold text-white mt-6">Core Capabilities</h3>
4848
<ul className="list-disc list-inside space-y-2 text-zinc-400">
49-
<li><span className="text-white">AI Instruction Generation (Primer)</span> - Analyze your codebase and generate customized instruction files for all 32 agents</li>
49+
<li><span className="text-white">AI Instruction Generation (Primer)</span> - Analyze your codebase and generate customized instruction files for all 44 agents</li>
5050
<li><span className="text-white">Skill Discovery</span> - Browse 15,000+ skills from marketplace with AI-powered recommendations</li>
51-
<li><span className="text-white">Cross-Agent Translation</span> - Automatically convert skills between 32 agent-specific formats</li>
51+
<li><span className="text-white">Cross-Agent Translation</span> - Automatically convert skills between 44 agent-specific formats</li>
5252
<li><span className="text-white">Team Collaboration</span> - Share skills via .skills manifest files and publish to marketplace</li>
5353
</ul>
5454
</div>
@@ -101,7 +101,7 @@ skillkit install anthropics/skills`}</CodeBlock>
101101
<ul className="list-disc list-inside space-y-2 text-zinc-400">
102102
<li><span className="text-white">UI Tier</span> - CLI commands, Terminal UI (OpenTUI-based), and documentation website</li>
103103
<li><span className="text-white">Core Logic Tier</span> - @skillkit/core for business logic; @skillkit/agents for adapter implementations</li>
104-
<li><span className="text-white">Integration Tier</span> - File systems, Git repositories, marketplace APIs, and 32 AI agents</li>
104+
<li><span className="text-white">Integration Tier</span> - File systems, Git repositories, marketplace APIs, and 44 AI agents</li>
105105
</ul>
106106

107107
<h3 className="text-lg font-semibold text-white mt-6">Monorepo Structure</h3>
@@ -129,7 +129,7 @@ skillkit install anthropics/skills`}</CodeBlock>
129129
content: (
130130
<div className="space-y-4">
131131
<p className="text-zinc-300">
132-
SkillKit supports 32 AI coding agents with automatic format translation:
132+
SkillKit supports 44 AI coding agents with automatic format translation:
133133
</p>
134134

135135
<Table
@@ -206,7 +206,7 @@ skillkit cicd init # Setup CI/CD integration`}</CodeBlock>
206206

207207
<h3 className="text-lg font-semibold text-white mt-6">AI Instruction Generation (Primer)</h3>
208208
<CodeBlock>{`skillkit primer # Analyze codebase, generate for detected agents
209-
skillkit primer --all-agents # Generate for all 32 agents
209+
skillkit primer --all-agents # Generate for all 44 agents
210210
skillkit primer --agent claude-code,cursor # Specific agents only
211211
skillkit primer --analyze-only # Only show codebase analysis
212212
skillkit primer --dry-run # Preview without writing files

docs/skillkit/components/Features.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const FEATURES: Feature[] = [
1818
},
1919
{
2020
title: 'Auto Translation',
21-
description: 'The npm for agent skills. Write once, auto-translate to 32 formats.',
21+
description: 'The npm for agent skills. Write once, auto-translate to 44 formats.',
2222
icon: (
2323
<svg className="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
2424
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={1.5} d="M8 7h12m0 0l-4-4m4 4l-4 4m0 6H4m0 0l4 4m-4-4l4-4" />
@@ -36,7 +36,7 @@ const FEATURES: Feature[] = [
3636
},
3737
{
3838
title: 'Primer',
39-
description: 'Auto-generate agent instructions for all 32 agents from your codebase.',
39+
description: 'Auto-generate agent instructions for all 44 agents from your codebase.',
4040
icon: (
4141
<svg className="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
4242
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={1.5} d="M13 10V3L4 14h7v7l9-11h-7z" />
@@ -109,7 +109,7 @@ const FEATURES: Feature[] = [
109109
];
110110

111111
const COMPARISONS = [
112-
['Agent Support', '1 agent', '32 agents'],
112+
['Agent Support', '1 agent', '44 agents'],
113113
['Setup', 'Write rules manually', 'Auto-generate (Primer)'],
114114
['Learning', 'Lost each session', 'Persistent memory'],
115115
['Translation', 'Rewrite for each', 'One-click conversion'],

docs/skillkit/components/Hero.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ interface TerminalLine {
2121

2222
const TERMINAL_LINES: TerminalLine[] = [
2323
{ type: 'cmd', text: 'skillkit install anthropics/skills --agent all' },
24-
{ type: 'out', text: '→ Installed to 32 agents' },
24+
{ type: 'out', text: '→ Installed to 44 agents' },
2525
{ type: 'cmd', text: 'skillkit recommend' },
2626
{ type: 'out', text: ' 92% vercel-react-best-practices' },
2727
{ type: 'out', text: ' 87% typescript-strict-mode' },
@@ -134,13 +134,13 @@ export function Hero({ version, stars }: HeroProps): React.ReactElement {
134134

135135
<h1 className="text-2xl sm:text-3xl lg:text-4xl font-bold tracking-tight text-white mb-3 font-mono">
136136
One Skill.<br />
137-
<span className="text-zinc-500">32 Agents. Zero Rewrites.</span>
137+
<span className="text-zinc-500">44 Agents. Zero Rewrites.</span>
138138
</h1>
139139

140140
<p className="text-sm text-zinc-400 mb-5 max-w-lg font-mono leading-relaxed">
141141
The open source package manager for AI agent skills. Install from 15,000+ skills,
142142
auto-translate between formats, persist learnings with Memory.
143-
Works with Claude, Cursor, Windsurf, Copilot, and 28 more.
143+
Works with Claude, Cursor, Windsurf, Copilot, Devin, Codex, and 38 more.
144144
</p>
145145

146146
<div className="flex flex-wrap items-center gap-2 mb-4">

docs/skillkit/components/UseCases.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const USE_CASES: UseCase[] = [
1313
{
1414
persona: 'Multi-Agent Developer',
1515
problem: 'You\'ve built skills for Claude Code. Now your team wants Cursor, and you want to try Windsurf.',
16-
solution: 'SkillKit translates skills between all 32 agents. Write once, deploy everywhere.',
16+
solution: 'SkillKit translates skills between all 44 agents. Write once, deploy everywhere.',
1717
command: 'skillkit translate --to cursor,windsurf',
1818
gradient: 'from-violet-500/10 to-purple-500/10',
1919
icon: (

docs/skillkit/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>SkillKit - Universal Skills for AI Coding Agents</title>
7-
<meta name="description" content="Write once, deploy to 32 AI coding agents. Skills for Claude Code, Cursor, Codex, Windsurf, GitHub Copilot, and more.">
7+
<meta name="description" content="Write once, deploy to 44 AI coding agents. Skills for Claude Code, Cursor, Codex, Windsurf, GitHub Copilot, and more.">
88

99
<!-- Open Graph -->
1010
<meta property="og:type" content="website">
1111
<meta property="og:url" content="https://agenstskills.com/">
1212
<meta property="og:title" content="SkillKit - Universal Skills for AI Coding Agents">
13-
<meta property="og:description" content="Write once, deploy to 32 AI coding agents. Skills for Claude Code, Cursor, Codex, Windsurf, GitHub Copilot, and more.">
13+
<meta property="og:description" content="Write once, deploy to 44 AI coding agents. Skills for Claude Code, Cursor, Codex, Windsurf, GitHub Copilot, and more.">
1414
<meta property="og:image" content="https://agenstskills.com/og-image.png">
1515
<meta property="og:image:width" content="1200">
1616
<meta property="og:image:height" content="630">
@@ -20,7 +20,7 @@
2020
<meta name="twitter:card" content="summary_large_image">
2121
<meta name="twitter:url" content="https://agenstskills.com/">
2222
<meta name="twitter:title" content="SkillKit - Universal Skills for AI Coding Agents">
23-
<meta name="twitter:description" content="Write once, deploy to 32 AI coding agents. Skills for Claude Code, Cursor, Codex, Windsurf, GitHub Copilot, and more.">
23+
<meta name="twitter:description" content="Write once, deploy to 44 AI coding agents. Skills for Claude Code, Cursor, Codex, Windsurf, GitHub Copilot, and more.">
2424
<meta name="twitter:image" content="https://agenstskills.com/og-image.png">
2525

2626
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />

docs/skillkit/public/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"info": {
44
"title": "SkillKit",
55
"version": "1.12.0",
6-
"description": "Skills shouldn't require pre-installation. This API lets any agent, framework, or tool discover and retrieve skills on demand.\n\n15,000+ skills across 32 AI coding agents. Results ranked by a multi-signal scoring system (content 40pts, query match 30pts, popularity 15pts, references 15pts).\n\n## Quick Start\n\n```bash\nnpx skillkit serve\n```\n\nThe API is now running at http://localhost:3737\n\n## MCP Server\n\nFor agent-native discovery (Claude Desktop, Cursor):\n\n```json\n{\n \"mcpServers\": {\n \"skillkit\": { \"command\": \"npx\", \"args\": [\"@skillkit/mcp\"] }\n }\n}\n```\n\n## Python Client\n\n```bash\npip install skillkit-client\n```",
6+
"description": "Skills shouldn't require pre-installation. This API lets any agent, framework, or tool discover and retrieve skills on demand.\n\n15,000+ skills across 44 AI coding agents. Results ranked by a multi-signal scoring system (content 40pts, query match 30pts, popularity 15pts, references 15pts).\n\n## Quick Start\n\n```bash\nnpx skillkit serve\n```\n\nThe API is now running at http://localhost:3737\n\n## MCP Server\n\nFor agent-native discovery (Claude Desktop, Cursor):\n\n```json\n{\n \"mcpServers\": {\n \"skillkit\": { \"command\": \"npx\", \"args\": [\"@skillkit/mcp\"] }\n }\n}\n```\n\n## Python Client\n\n```bash\npip install skillkit-client\n```",
77
"license": {
88
"name": "Apache-2.0",
99
"url": "https://opensource.org/licenses/Apache-2.0"

0 commit comments

Comments
 (0)