@flitzrrr/agent-skills 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cursorrules +53 -0
- package/.lovable +30 -0
- package/AGENTS.md +22 -0
- package/CHEATSHEET.md +271 -0
- package/CLAUDE.md +22 -0
- package/README.md +126 -0
- package/bin/cli.js +159 -0
- package/package.json +37 -0
package/.cursorrules
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Agent Skills Hub — Cursor Rules
|
|
2
|
+
# This file makes skills discoverable in Cursor IDE.
|
|
3
|
+
# For detailed skill usage, see CHEATSHEET.md or individual SKILL.md files.
|
|
4
|
+
|
|
5
|
+
## Available Skills (55 total from 5 sources)
|
|
6
|
+
|
|
7
|
+
### Security & Code Quality
|
|
8
|
+
- Use `skills/security-review/SKILL.md` for OWASP-based security audits
|
|
9
|
+
- Use `skills/code-review/SKILL.md` for comprehensive code reviews
|
|
10
|
+
- Use `skills/find-bugs/SKILL.md` for bug hunting in local changes
|
|
11
|
+
- Use `skills/gha-security-review/SKILL.md` for GitHub Actions security
|
|
12
|
+
- Use `skills/skill-scanner/SKILL.md` to scan skills for prompt injection
|
|
13
|
+
|
|
14
|
+
### Git Workflow
|
|
15
|
+
- Use `skills/commit/SKILL.md` for Conventional Commits formatting
|
|
16
|
+
- Use `skills/create-branch/SKILL.md` for branch creation
|
|
17
|
+
- Use `skills/pr-writer/SKILL.md` for PR descriptions
|
|
18
|
+
- Use `skills/iterate-pr/SKILL.md` for CI fix loops
|
|
19
|
+
|
|
20
|
+
### Django
|
|
21
|
+
- Use `skills/django-access-review/SKILL.md` for access control / IDOR review
|
|
22
|
+
- Use `skills/django-perf-review/SKILL.md` for N+1 and performance review
|
|
23
|
+
|
|
24
|
+
### Project Planning (Multi-Session)
|
|
25
|
+
- Use `skills/create-plan/SKILL.md` to start a structured project plan
|
|
26
|
+
- Use `skills/resume-plan/SKILL.md` to continue a previous plan
|
|
27
|
+
- Use `skills/update-plan/SKILL.md` to modify plans
|
|
28
|
+
- Use `skills/execute-work-packet/SKILL.md` to execute plan items
|
|
29
|
+
- Use `skills/generate-handover/SKILL.md` for session handoff
|
|
30
|
+
|
|
31
|
+
### Document Generation
|
|
32
|
+
- Use `skills/anthropic-pdf/SKILL.md` for PDF operations
|
|
33
|
+
- Use `skills/anthropic-docx/SKILL.md` for Word documents
|
|
34
|
+
- Use `skills/anthropic-pptx/SKILL.md` for presentations
|
|
35
|
+
- Use `skills/anthropic-xlsx/SKILL.md` for spreadsheets
|
|
36
|
+
|
|
37
|
+
### Frontend & React
|
|
38
|
+
- Use `skills/vercel-react-best-practices/SKILL.md` for React/Next.js optimization (62 rules)
|
|
39
|
+
- Use `skills/vercel-web-design-guidelines/SKILL.md` for UI/UX audit (100+ rules)
|
|
40
|
+
- Use `skills/vercel-composition-patterns/SKILL.md` for React component architecture
|
|
41
|
+
- Use `skills/vercel-react-native-skills/SKILL.md` for React Native/Expo
|
|
42
|
+
- Use `skills/anthropic-frontend-design/SKILL.md` for bold UI design
|
|
43
|
+
|
|
44
|
+
### Developer Tools
|
|
45
|
+
- Use `skills/anthropic-mcp-builder/SKILL.md` to build MCP servers
|
|
46
|
+
- Use `skills/anthropic-webapp-testing/SKILL.md` for Playwright testing
|
|
47
|
+
- Use `skills/anthropic-claude-api/SKILL.md` for Claude API integration
|
|
48
|
+
|
|
49
|
+
### SEO
|
|
50
|
+
- Use `skills/seo/SKILL.md` for comprehensive SEO auditing (16 sub-skills)
|
|
51
|
+
|
|
52
|
+
### Deployment
|
|
53
|
+
- Use `skills/vercel-deploy-to-vercel/SKILL.md` for Vercel deployments
|
package/.lovable
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Agent Skills Hub — Lovable Project Instructions
|
|
2
|
+
# This file makes skills available in Lovable AI.
|
|
3
|
+
|
|
4
|
+
This repository contains 55 curated AI agent skills for code review, security auditing,
|
|
5
|
+
document generation, frontend development, SEO, and project planning.
|
|
6
|
+
|
|
7
|
+
## How to Use
|
|
8
|
+
|
|
9
|
+
Each skill is a self-contained folder under `skills/` containing a `SKILL.md` file
|
|
10
|
+
with detailed instructions. When a task matches a skill's domain, read and follow
|
|
11
|
+
the corresponding `SKILL.md`.
|
|
12
|
+
|
|
13
|
+
## Key Skills for Lovable Projects
|
|
14
|
+
|
|
15
|
+
### Web Development
|
|
16
|
+
- `skills/vercel-react-best-practices/SKILL.md` — React/Next.js performance (62 rules)
|
|
17
|
+
- `skills/vercel-web-design-guidelines/SKILL.md` — UI/UX accessibility audit
|
|
18
|
+
- `skills/anthropic-frontend-design/SKILL.md` — Premium, non-generic UI design
|
|
19
|
+
- `skills/vercel-composition-patterns/SKILL.md` — React component architecture
|
|
20
|
+
|
|
21
|
+
### Quality
|
|
22
|
+
- `skills/code-review/SKILL.md` — Code review checklist
|
|
23
|
+
- `skills/security-review/SKILL.md` — Security audit
|
|
24
|
+
- `skills/seo/SKILL.md` — SEO optimization (16 sub-skills)
|
|
25
|
+
|
|
26
|
+
### Documents
|
|
27
|
+
- `skills/anthropic-pdf/SKILL.md` — PDF creation & editing
|
|
28
|
+
- `skills/anthropic-docx/SKILL.md` — Word document generation
|
|
29
|
+
|
|
30
|
+
See `CHEATSHEET.md` for the full decision guide.
|
package/AGENTS.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Agent Skills Hub
|
|
2
|
+
|
|
3
|
+
This repository contains 55 curated AI agent skills from 5 sources.
|
|
4
|
+
Skills are located in the `skills/` directory — each contains a `SKILL.md` with instructions.
|
|
5
|
+
|
|
6
|
+
## Available Skill Categories
|
|
7
|
+
|
|
8
|
+
- **Security & Code Review**: `security-review`, `code-review`, `find-bugs`, `gha-security-review`
|
|
9
|
+
- **Git Workflow**: `commit`, `create-branch`, `pr-writer`, `iterate-pr`
|
|
10
|
+
- **Django**: `django-access-review`, `django-perf-review`
|
|
11
|
+
- **Planning & Docs**: `create-plan`, `resume-plan`, `execute-work-packet`, `generate-docs`
|
|
12
|
+
- **Documents**: `anthropic-pdf`, `anthropic-docx`, `anthropic-pptx`, `anthropic-xlsx`
|
|
13
|
+
- **Frontend & Design**: `anthropic-frontend-design`, `vercel-react-best-practices`, `vercel-web-design-guidelines`
|
|
14
|
+
- **Developer Tools**: `anthropic-mcp-builder`, `anthropic-webapp-testing`, `anthropic-claude-api`
|
|
15
|
+
- **SEO**: `seo` (16 sub-skills)
|
|
16
|
+
- **Deployment**: `vercel-deploy-to-vercel`
|
|
17
|
+
- **Creative**: `anthropic-algorithmic-art`, `anthropic-canvas-design`, `anthropic-theme-factory`
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
To use a skill, read the `SKILL.md` file in the corresponding `skills/<name>/` directory.
|
|
22
|
+
See `CHEATSHEET.md` for a decision guide on which skill to use when.
|
package/CHEATSHEET.md
ADDED
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
# 🗺️ Agent Skills Cheatsheet
|
|
2
|
+
|
|
3
|
+
> Quick decision guide: **which skill, when, and why.**
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## ⚡ Quick Decision Matrix
|
|
8
|
+
|
|
9
|
+
| You want to... | Use this skill | Source | Rating |
|
|
10
|
+
|---|---|---|---|
|
|
11
|
+
| **Security audit** code changes | `security-review` | Sentry | ★★★★★ |
|
|
12
|
+
| **Code review** a PR | `code-review` | Sentry | ★★★★★ |
|
|
13
|
+
| **Find bugs** in local changes | `find-bugs` | Sentry | ★★★★★ |
|
|
14
|
+
| **Audit GH Actions** for supply chain attacks | `gha-security-review` | Sentry | ★★★★★ |
|
|
15
|
+
| **Review Django access control** / IDOR | `django-access-review` | Sentry | ★★★★☆ |
|
|
16
|
+
| **Review Django performance** / N+1 queries | `django-perf-review` | Sentry | ★★★★☆ |
|
|
17
|
+
| **Write a commit message** (Conventional Commits) | `commit` | Sentry | ★★★★★ |
|
|
18
|
+
| **Create a branch** | `create-branch` | Sentry | ★★★★☆ |
|
|
19
|
+
| **Write a PR description** | `pr-writer` | Sentry | ★★★★★ |
|
|
20
|
+
| **Fix CI failures** iteratively | `iterate-pr` | Sentry | ★★★★★ |
|
|
21
|
+
| **Simplify** complex code | `code-simplifier` | Sentry | ★★★★☆ |
|
|
22
|
+
| **Scan skills** for prompt injection | `skill-scanner` | Sentry | ★★★★☆ |
|
|
23
|
+
| **Create new skills** | `skill-writer` / `anthropic-skill-creator` | Sentry / Anthropic | ★★★★☆ |
|
|
24
|
+
| **Run SEO audit** on a website | `seo` | Agentic SEO | ★★★★★ |
|
|
25
|
+
| **Plan a multi-session** project | `create-plan` | OpenCode | ★★★★★ |
|
|
26
|
+
| **Resume** a previous plan | `resume-plan` | OpenCode | ★★★★★ |
|
|
27
|
+
| **Execute** a work packet from plan | `execute-work-packet` | OpenCode | ★★★★★ |
|
|
28
|
+
| **Generate project docs** | `generate-docs` | OpenCode | ★★★★☆ |
|
|
29
|
+
| **Update existing docs** | `update-docs` | OpenCode | ★★★★☆ |
|
|
30
|
+
| **Create handover** summary for next session | `generate-handover` | OpenCode | ★★★★☆ |
|
|
31
|
+
| **Create/edit PDFs** | `anthropic-pdf` | Anthropic | ★★★★★ |
|
|
32
|
+
| **Create/edit Word docs** | `anthropic-docx` | Anthropic | ★★★★★ |
|
|
33
|
+
| **Create presentations** | `anthropic-pptx` | Anthropic | ★★★★★ |
|
|
34
|
+
| **Create/edit spreadsheets** | `anthropic-xlsx` | Anthropic | ★★★★★ |
|
|
35
|
+
| **Build an MCP server** | `anthropic-mcp-builder` | Anthropic | ★★★★★ |
|
|
36
|
+
| **Test web apps** with Playwright | `anthropic-webapp-testing` | Anthropic | ★★★★★ |
|
|
37
|
+
| **Design stunning frontends** | `anthropic-frontend-design` | Anthropic | ★★★★★ |
|
|
38
|
+
| **Build Claude API apps** | `anthropic-claude-api` | Anthropic | ★★★★★ |
|
|
39
|
+
| **Create generative art** with p5.js | `anthropic-algorithmic-art` | Anthropic | ★★★★☆ |
|
|
40
|
+
| **Design artistic visuals** (posters, canvases) | `anthropic-canvas-design` | Anthropic | ★★★★☆ |
|
|
41
|
+
| **Apply professional themes** to artifacts | `anthropic-theme-factory` | Anthropic | ★★★★☆ |
|
|
42
|
+
| **Write internal comms** (3P, newsletters) | `anthropic-internal-comms` | Anthropic | ★★★☆☆ |
|
|
43
|
+
| **Create Slack GIFs** | `anthropic-slack-gif-creator` | Anthropic | ★★★☆☆ |
|
|
44
|
+
| **Build complex React artifacts** | `anthropic-web-artifacts-builder` | Anthropic | ★★★★☆ |
|
|
45
|
+
| **Coauthor documents** collaboratively | `anthropic-doc-coauthoring` | Anthropic | ★★★★☆ |
|
|
46
|
+
| **Optimize React/Next.js** performance | `vercel-react-best-practices` | Vercel | ★★★★★ |
|
|
47
|
+
| **Audit web UI** for accessibility & UX | `vercel-web-design-guidelines` | Vercel | ★★★★★ |
|
|
48
|
+
| **Fix React component architecture** | `vercel-composition-patterns` | Vercel | ★★★★☆ |
|
|
49
|
+
| **Build React Native** apps | `vercel-react-native-skills` | Vercel | ★★★★☆ |
|
|
50
|
+
| **Deploy to Vercel** | `vercel-deploy-to-vercel` | Vercel | ★★★★☆ |
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## 🏗️ Skills by Source
|
|
55
|
+
|
|
56
|
+
### 🔒 Sentry (getsentry/skills) — 24 skills
|
|
57
|
+
|
|
58
|
+
Security, code quality, and Git workflow. Battle-tested at scale.
|
|
59
|
+
|
|
60
|
+
#### Tier 1 — Must-Have
|
|
61
|
+
|
|
62
|
+
| Skill | Purpose |
|
|
63
|
+
|-------|---------|
|
|
64
|
+
| `security-review` | OWASP-based security audit with exploitation-focused analysis |
|
|
65
|
+
| `code-review` | Comprehensive code review following engineering best practices |
|
|
66
|
+
| `find-bugs` | Bug hunting in local branch changes with security prioritization |
|
|
67
|
+
| `gha-security-review` | GitHub Actions supply chain security analysis |
|
|
68
|
+
| `commit` | Conventional Commits formatting with AI attribution |
|
|
69
|
+
| `pr-writer` | Structured PR descriptions (what & why) |
|
|
70
|
+
| `iterate-pr` | Automated CI fix loop until green + review feedback resolution |
|
|
71
|
+
| `create-branch` | Branch creation with naming conventions |
|
|
72
|
+
|
|
73
|
+
#### Tier 2 — Highly Useful
|
|
74
|
+
|
|
75
|
+
| Skill | Purpose |
|
|
76
|
+
|-------|---------|
|
|
77
|
+
| `django-access-review` | Django IDOR & access control review |
|
|
78
|
+
| `django-perf-review` | Django N+1 queries & performance optimization |
|
|
79
|
+
| `code-simplifier` | Reduce complexity while maintaining functionality |
|
|
80
|
+
| `skill-scanner` | Security analysis of agent skills for prompt injection |
|
|
81
|
+
| `skill-writer` / `skill-creator` | Create new agent skills following best practices |
|
|
82
|
+
| `create-pr` | Direct PR creation workflow |
|
|
83
|
+
|
|
84
|
+
#### Tier 3 — Specialized
|
|
85
|
+
|
|
86
|
+
| Skill | Purpose |
|
|
87
|
+
|-------|---------|
|
|
88
|
+
| `agents-md` | AGENTS.md file management |
|
|
89
|
+
| `blog-writing-guide` | Technical blog post creation |
|
|
90
|
+
| `brand-guidelines` | Brand consistency enforcement |
|
|
91
|
+
| `claude-settings-audit` | Claude configuration audit |
|
|
92
|
+
| `doc-coauthoring` | Collaborative document editing |
|
|
93
|
+
| `gh-review-requests` | GitHub review request management |
|
|
94
|
+
| `presentation-creator` | Slide deck creation |
|
|
95
|
+
| `sred-project-organizer` / `sred-work-summary` | SR&ED tax credit documentation |
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
### 🔍 Agentic SEO (Bhanunamikaze) — 16 sub-skills
|
|
100
|
+
|
|
101
|
+
Comprehensive SEO auditing toolkit with Playwright integration.
|
|
102
|
+
|
|
103
|
+
| Sub-Skill | Purpose |
|
|
104
|
+
|-----------|---------|
|
|
105
|
+
| `seo audit` | Full technical + on-page + performance audit |
|
|
106
|
+
| `seo page` | Individual page analysis (meta, headings, content) |
|
|
107
|
+
| `seo schema` | Schema.org structured data validation |
|
|
108
|
+
| `seo sitemap` | Sitemap analysis and validation |
|
|
109
|
+
| `seo robots` | robots.txt evaluation |
|
|
110
|
+
| `seo images` | Image optimization (alt text, size, format) |
|
|
111
|
+
| `seo links` | Internal/external link analysis |
|
|
112
|
+
| `seo performance` | Core Web Vitals & speed metrics |
|
|
113
|
+
| `seo mobile` | Mobile-friendliness check |
|
|
114
|
+
| `seo social` | Open Graph & social meta validation |
|
|
115
|
+
| `seo accessibility` | WCAG accessibility audit |
|
|
116
|
+
| `seo security` | HTTPS, headers, CSP analysis |
|
|
117
|
+
| `seo competitive` | Competitor comparison |
|
|
118
|
+
| `seo keyword` | Keyword research & density analysis |
|
|
119
|
+
| `seo content` | Content quality & readability scoring |
|
|
120
|
+
| `seo report` | Comprehensive PDF/HTML report generation |
|
|
121
|
+
|
|
122
|
+
**Dependencies:** Python 3.8+, optional Playwright for JS-heavy sites
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
### 📋 OpenCode Processing (DasDigitaleMomentum) — 9 skills
|
|
127
|
+
|
|
128
|
+
Multi-session project planning and documentation framework.
|
|
129
|
+
|
|
130
|
+
| Skill | Purpose | When |
|
|
131
|
+
|-------|---------|------|
|
|
132
|
+
| `create-plan` | Initialize structured project plan | Starting a new multi-step project |
|
|
133
|
+
| `resume-plan` | Continue previous session's plan | Returning to unfinished work |
|
|
134
|
+
| `update-plan` | Modify plan with new requirements | Scope changes mid-project |
|
|
135
|
+
| `execute-work-packet` | Execute a specific plan item | Implementing individual tasks |
|
|
136
|
+
| `generate-docs` | Create project documentation | After major milestones |
|
|
137
|
+
| `update-docs` | Update existing documentation | After changes to documented features |
|
|
138
|
+
| `generate-handover` | Create session handover summary | End of work session |
|
|
139
|
+
| `archive-legacy-docs` | Archive outdated documentation | During documentation cleanup |
|
|
140
|
+
| `author-and-verify-implementation-plan` | Write & validate implementation plans | Before complex implementations |
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
### 🎨 Anthropic (anthropics/skills) — 17 skills
|
|
145
|
+
|
|
146
|
+
Document creation, creative design, developer tools, and enterprise workflows.
|
|
147
|
+
|
|
148
|
+
#### Document Skills (Source-Available)
|
|
149
|
+
|
|
150
|
+
| Skill | Purpose | Key Features |
|
|
151
|
+
|-------|---------|-------------|
|
|
152
|
+
| `anthropic-pdf` | PDF read/write/merge/split/OCR | pypdf, pdfplumber, reportlab, pytesseract |
|
|
153
|
+
| `anthropic-docx` | Word document creation & editing | docx-js (new), XML manipulation (edit), tracked changes |
|
|
154
|
+
| `anthropic-pptx` | Presentation creation & editing | pptxgenjs (new), XML (edit), visual QA workflow |
|
|
155
|
+
| `anthropic-xlsx` | Spreadsheet creation & analysis | openpyxl, pandas, formula recalculation |
|
|
156
|
+
|
|
157
|
+
#### Creative & Design
|
|
158
|
+
|
|
159
|
+
| Skill | Purpose | Key Features |
|
|
160
|
+
|-------|---------|-------------|
|
|
161
|
+
| `anthropic-frontend-design` | Production-grade UI design | Bold aesthetics, anti-AI-slop philosophy |
|
|
162
|
+
| `anthropic-canvas-design` | Artistic visual creation (posters, art) | Design philosophy → canvas execution pipeline |
|
|
163
|
+
| `anthropic-algorithmic-art` | Generative art with p5.js | Seeded randomness, interactive parameter exploration |
|
|
164
|
+
| `anthropic-theme-factory` | 10 professional themes for any artifact | Color palettes + font pairings, custom theme creation |
|
|
165
|
+
| `anthropic-slack-gif-creator` | Animated GIFs optimized for Slack | PIL/Pillow, GIFBuilder, easing functions |
|
|
166
|
+
|
|
167
|
+
#### Developer Tools
|
|
168
|
+
|
|
169
|
+
| Skill | Purpose | Key Features |
|
|
170
|
+
|-------|---------|-------------|
|
|
171
|
+
| `anthropic-mcp-builder` | Build MCP servers for LLM integration | TypeScript/Python, 4-phase workflow, evaluation creation |
|
|
172
|
+
| `anthropic-webapp-testing` | Web app testing with Playwright | Server lifecycle management, reconnaissance patterns |
|
|
173
|
+
| `anthropic-claude-api` | Build apps with Claude API/SDK | Multi-language support (8 langs), Agent SDK, tool use |
|
|
174
|
+
| `anthropic-web-artifacts-builder` | Complex React artifacts for claude.ai | React 18 + TypeScript + Tailwind + shadcn/ui |
|
|
175
|
+
|
|
176
|
+
#### Enterprise & Communication
|
|
177
|
+
|
|
178
|
+
| Skill | Purpose | Key Features |
|
|
179
|
+
|-------|---------|-------------|
|
|
180
|
+
| `anthropic-internal-comms` | Internal communications (3P, newsletters) | Template-based, format guides per comm type |
|
|
181
|
+
| `anthropic-doc-coauthoring` | Collaborative document editing | Multi-author workflows |
|
|
182
|
+
| `anthropic-brand-guidelines` | Brand consistency enforcement | Visual identity standards |
|
|
183
|
+
| `anthropic-skill-creator` | Create new agent skills | Structured skill development |
|
|
184
|
+
|
|
185
|
+
---
|
|
186
|
+
|
|
187
|
+
### ⚛️ Vercel (vercel-labs/agent-skills) — 5 skills
|
|
188
|
+
|
|
189
|
+
React/Next.js performance, web design, and deployment.
|
|
190
|
+
|
|
191
|
+
| Skill | Purpose | Rules |
|
|
192
|
+
|-------|---------|-------|
|
|
193
|
+
| `vercel-react-best-practices` | React/Next.js performance optimization | 62 rules, 8 categories (waterfalls, bundles, SSR, re-renders) |
|
|
194
|
+
| `vercel-web-design-guidelines` | UI accessibility & UX audit | 100+ rules (a11y, forms, animation, dark mode, i18n) |
|
|
195
|
+
| `vercel-composition-patterns` | React component architecture | Compound components, state lifting, boolean prop elimination |
|
|
196
|
+
| `vercel-react-native-skills` | React Native/Expo best practices | FlashList, Reanimated, gesture handling, monorepo |
|
|
197
|
+
| `vercel-deploy-to-vercel` | Deploy apps to Vercel | Auto-detects 40+ frameworks, preview/production deploys |
|
|
198
|
+
|
|
199
|
+
---
|
|
200
|
+
|
|
201
|
+
## 🎯 Scenario Guide
|
|
202
|
+
|
|
203
|
+
### "I'm starting a new feature"
|
|
204
|
+
|
|
205
|
+
1. `create-plan` → Structure the work
|
|
206
|
+
2. `create-branch` → Create feature branch
|
|
207
|
+
3. `execute-work-packet` → Implement tasks from plan
|
|
208
|
+
4. `commit` → Write proper commits
|
|
209
|
+
5. `pr-writer` → Create PR description
|
|
210
|
+
6. `iterate-pr` → Fix CI until green
|
|
211
|
+
|
|
212
|
+
### "I need to review code"
|
|
213
|
+
|
|
214
|
+
1. `code-review` → General code review
|
|
215
|
+
2. `security-review` → Security-focused review
|
|
216
|
+
3. `find-bugs` → Bug hunting in diff
|
|
217
|
+
4. `django-access-review` → Django IDOR check (if Django)
|
|
218
|
+
5. `django-perf-review` → Django N+1 check (if Django)
|
|
219
|
+
6. `gha-security-review` → GitHub Actions audit (if GHA changes)
|
|
220
|
+
|
|
221
|
+
### "I'm building a web app"
|
|
222
|
+
|
|
223
|
+
1. `vercel-react-best-practices` → Performance patterns
|
|
224
|
+
2. `vercel-composition-patterns` → Component architecture
|
|
225
|
+
3. `anthropic-frontend-design` → Stunning UI design
|
|
226
|
+
4. `vercel-web-design-guidelines` → Accessibility audit
|
|
227
|
+
5. `anthropic-webapp-testing` → Playwright testing
|
|
228
|
+
6. `vercel-deploy-to-vercel` → Ship it
|
|
229
|
+
|
|
230
|
+
### "I need to create documents"
|
|
231
|
+
|
|
232
|
+
| Format | Skill |
|
|
233
|
+
|--------|-------|
|
|
234
|
+
| PDF | `anthropic-pdf` |
|
|
235
|
+
| Word (.docx) | `anthropic-docx` |
|
|
236
|
+
| PowerPoint (.pptx) | `anthropic-pptx` |
|
|
237
|
+
| Excel (.xlsx) | `anthropic-xlsx` |
|
|
238
|
+
|
|
239
|
+
### "I need SEO analysis"
|
|
240
|
+
|
|
241
|
+
1. `seo` → Run `seo audit` for comprehensive analysis
|
|
242
|
+
2. Focus sub-skills: `seo page`, `seo schema`, `seo performance`
|
|
243
|
+
3. Generate: `seo report` for stakeholder deliverables
|
|
244
|
+
|
|
245
|
+
### "I'm building an MCP server"
|
|
246
|
+
|
|
247
|
+
1. `anthropic-mcp-builder` → Full 4-phase development guide
|
|
248
|
+
2. Research → Plan → Implement → Test → Evaluate
|
|
249
|
+
|
|
250
|
+
### "I need to hand off work to next session"
|
|
251
|
+
|
|
252
|
+
1. `generate-handover` → Session summary
|
|
253
|
+
2. `update-docs` → Keep docs current
|
|
254
|
+
3. `resume-plan` → Pick up where you left off next time
|
|
255
|
+
|
|
256
|
+
---
|
|
257
|
+
|
|
258
|
+
## 📊 Compatibility Matrix
|
|
259
|
+
|
|
260
|
+
| Skill Category | Antigravity | Claude Code | Cursor | Generic Agent |
|
|
261
|
+
|---------------|:-----------:|:-----------:|:------:|:-------------:|
|
|
262
|
+
| Sentry (code/security) | ✅ | ✅ | ✅ | ✅ |
|
|
263
|
+
| Agentic SEO | ✅ | ✅ | ⚠️ | ✅ |
|
|
264
|
+
| OpenCode (planning) | ✅ | ✅ | ✅ | ✅ |
|
|
265
|
+
| Anthropic (docs) | ⚠️ | ✅ | ⚠️ | ⚠️ |
|
|
266
|
+
| Anthropic (creative) | ⚠️ | ✅ | ⚠️ | ⚠️ |
|
|
267
|
+
| Anthropic (dev tools) | ✅ | ✅ | ⚠️ | ⚠️ |
|
|
268
|
+
| Vercel (React) | ✅ | ✅ | ✅ | ✅ |
|
|
269
|
+
| Vercel (deploy) | ⚠️ | ✅ | ⚠️ | ⚠️ |
|
|
270
|
+
|
|
271
|
+
✅ = Full support · ⚠️ = Partial (may need adaptation)
|
package/CLAUDE.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Agent Skills Hub
|
|
2
|
+
|
|
3
|
+
This repository contains 55 curated AI agent skills from 5 sources.
|
|
4
|
+
Skills are located in the `skills/` directory — each contains a `SKILL.md` with instructions.
|
|
5
|
+
|
|
6
|
+
## Available Skill Categories
|
|
7
|
+
|
|
8
|
+
- **Security & Code Review**: `security-review`, `code-review`, `find-bugs`, `gha-security-review`
|
|
9
|
+
- **Git Workflow**: `commit`, `create-branch`, `pr-writer`, `iterate-pr`
|
|
10
|
+
- **Django**: `django-access-review`, `django-perf-review`
|
|
11
|
+
- **Planning & Docs**: `create-plan`, `resume-plan`, `execute-work-packet`, `generate-docs`
|
|
12
|
+
- **Documents**: `anthropic-pdf`, `anthropic-docx`, `anthropic-pptx`, `anthropic-xlsx`
|
|
13
|
+
- **Frontend & Design**: `anthropic-frontend-design`, `vercel-react-best-practices`, `vercel-web-design-guidelines`
|
|
14
|
+
- **Developer Tools**: `anthropic-mcp-builder`, `anthropic-webapp-testing`, `anthropic-claude-api`
|
|
15
|
+
- **SEO**: `seo` (16 sub-skills)
|
|
16
|
+
- **Deployment**: `vercel-deploy-to-vercel`
|
|
17
|
+
- **Creative**: `anthropic-algorithmic-art`, `anthropic-canvas-design`, `anthropic-theme-factory`
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
To use a skill, read the `SKILL.md` file in the corresponding `skills/<name>/` directory.
|
|
22
|
+
See `CHEATSHEET.md` for a decision guide on which skill to use when.
|
package/README.md
ADDED
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
# 🧠 Agent Skills Hub
|
|
2
|
+
|
|
3
|
+
> **121 AI agent skills** from **15 industry-leading sources** — organized, evaluated, and **multiplatform-ready** for all major AI coding IDEs.
|
|
4
|
+
|
|
5
|
+
## ✅ Supported Platforms
|
|
6
|
+
|
|
7
|
+
| Platform | Config File | Setup |
|
|
8
|
+
|----------|------------|-------|
|
|
9
|
+
| **Claude Code** | `CLAUDE.md` | Clone repo, skills auto-discovered |
|
|
10
|
+
| **Antigravity** | `skills/` dir | Symlink `skills/` into agent skill dir |
|
|
11
|
+
| **Codex** (OpenAI) | `AGENTS.md` | Clone repo, `AGENTS.md` auto-loaded |
|
|
12
|
+
| **OpenCode** | `AGENTS.md` + `skills/` | Clone repo, reference skills in prompts |
|
|
13
|
+
| **Cursor** | `.cursorrules` | Clone repo into workspace, rules auto-loaded |
|
|
14
|
+
| **Lovable** | `.lovable` | Add as project dependency |
|
|
15
|
+
| **Windsurf** | `AGENTS.md` | Clone repo, reference skill paths |
|
|
16
|
+
| **Generic Agent** | `SKILL.md` per skill | Read `skills/<name>/SKILL.md` |
|
|
17
|
+
|
|
18
|
+
## Sources (15)
|
|
19
|
+
|
|
20
|
+
| # | Source | Skills | Focus |
|
|
21
|
+
|---|--------|--------|-------|
|
|
22
|
+
| 1 | [getsentry/skills](https://github.com/getsentry/skills) | 24 | Security, code review, Git workflow, Django |
|
|
23
|
+
| 2 | [Bhanunamikaze/Agentic-SEO-Skill](https://github.com/Bhanunamikaze/Agentic-SEO-Skill) | 16 | Comprehensive SEO auditing |
|
|
24
|
+
| 3 | [DasDigitaleMomentum/opencode-processing-skills](https://github.com/DasDigitaleMomentum/opencode-processing-skills) | 9 | Multi-session planning & docs |
|
|
25
|
+
| 4 | [anthropics/skills](https://github.com/anthropics/skills) | 17 | Document gen, creative design, MCP, API |
|
|
26
|
+
| 5 | [vercel-labs/agent-skills](https://github.com/vercel-labs/agent-skills) | 5 | React/Next.js, web design, deployment |
|
|
27
|
+
| 6 | [trailofbits/skills](https://github.com/trailofbits/skills) | 30 | Advanced security auditing, static analysis, smart contracts |
|
|
28
|
+
| 7 | [cloudflare/skills](https://github.com/cloudflare/skills) | 9 | Workers, Durable Objects, MCP, web perf |
|
|
29
|
+
| 8 | [stripe/ai](https://github.com/stripe/ai) | 2 | Stripe best practices & SDK upgrades |
|
|
30
|
+
| 9 | [expo/skills](https://github.com/expo/skills) | 3 | Expo app design, deployment, upgrades |
|
|
31
|
+
| 10 | [google-labs-code/stitch-skills](https://github.com/google-labs-code/stitch-skills) | 7 | Design-to-code, shadcn/ui, Remotion |
|
|
32
|
+
| 11 | [hashicorp/agent-skills](https://github.com/hashicorp/agent-skills) | 3 | Terraform code/module/provider generation |
|
|
33
|
+
| 12 | [supabase/agent-skills](https://github.com/supabase/agent-skills) | 1 | Postgres best practices |
|
|
34
|
+
| 13 | [callstackincubator/agent-skills](https://github.com/callstackincubator/agent-skills) | 5 | React Native, GitHub workflows |
|
|
35
|
+
| 14 | [K-Dense-AI/claude-scientific-skills](https://github.com/K-Dense-AI/claude-scientific-skills) | 100+ | Science, bioinformatics, ML, chemistry |
|
|
36
|
+
| 15 | [ComposioHQ/skills](https://github.com/ComposioHQ/skills) | 1 | Connect agents to 1000+ external apps |
|
|
37
|
+
|
|
38
|
+
## Repository Structure
|
|
39
|
+
|
|
40
|
+
```
|
|
41
|
+
agent-skills/
|
|
42
|
+
├── skills/ ← 121 symlinks (flat access to all skills)
|
|
43
|
+
├── vendor/ ← 15 Git submodules (upstream sources)
|
|
44
|
+
├── AGENTS.md ← Codex / OpenCode / Windsurf
|
|
45
|
+
├── CLAUDE.md ← Claude Code
|
|
46
|
+
├── .cursorrules ← Cursor IDE
|
|
47
|
+
├── .lovable ← Lovable AI
|
|
48
|
+
├── CHEATSHEET.md ← Decision guide: which skill when
|
|
49
|
+
└── README.md ← This file
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Quick Start
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
# Clone with all submodules
|
|
56
|
+
git clone --recurse-submodules git@github.com:flitzrrr/agent-skills.git
|
|
57
|
+
|
|
58
|
+
# Update all upstream sources
|
|
59
|
+
git submodule update --remote --merge
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Install via npm
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
npx @flitzrrr/agent-skills install
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Platform Setup
|
|
69
|
+
|
|
70
|
+
### Claude Code
|
|
71
|
+
```bash
|
|
72
|
+
git clone --recurse-submodules git@github.com:flitzrrr/agent-skills.git
|
|
73
|
+
# CLAUDE.md auto-discovered
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
### Antigravity (Gemini)
|
|
77
|
+
```bash
|
|
78
|
+
ln -sf /path/to/agent-skills/skills/* ~/.gemini/antigravity/skills/
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
### Codex (OpenAI)
|
|
82
|
+
```bash
|
|
83
|
+
git clone --recurse-submodules git@github.com:flitzrrr/agent-skills.git
|
|
84
|
+
# AGENTS.md auto-discovered
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
### Cursor
|
|
88
|
+
```bash
|
|
89
|
+
git clone --recurse-submodules git@github.com:flitzrrr/agent-skills.git
|
|
90
|
+
# .cursorrules auto-loaded
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
### OpenCode
|
|
94
|
+
```bash
|
|
95
|
+
# Skills are symlinked — see CHEATSHEET.md for usage
|
|
96
|
+
ln -sf /path/to/agent-skills/skills/* ~/.opencode/skills/
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
### Lovable
|
|
100
|
+
```bash
|
|
101
|
+
git submodule add git@github.com:flitzrrr/agent-skills.git skills
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
## Naming Convention
|
|
105
|
+
|
|
106
|
+
| Source | Prefix | Example |
|
|
107
|
+
|--------|--------|---------|
|
|
108
|
+
| Sentry | *(none)* | `code-review`, `security-review` |
|
|
109
|
+
| SEO | `seo` | `seo` |
|
|
110
|
+
| OpenCode | *(none)* | `create-plan`, `resume-plan` |
|
|
111
|
+
| Anthropic | `anthropic-` | `anthropic-pdf`, `anthropic-mcp-builder` |
|
|
112
|
+
| Vercel | `vercel-` | `vercel-react-best-practices` |
|
|
113
|
+
| Trail of Bits | `tob-` | `tob-static-analysis`, `tob-semgrep-rule-creator` |
|
|
114
|
+
| Cloudflare | `cloudflare-` | `cloudflare-wrangler`, `cloudflare-web-perf` |
|
|
115
|
+
| Stripe | `stripe-` | `stripe-stripe-best-practices` |
|
|
116
|
+
| Expo | `expo` | `expo` |
|
|
117
|
+
| Google Stitch | `stitch-` | `stitch-shadcn-ui`, `stitch-remotion` |
|
|
118
|
+
| HashiCorp | `terraform-` | `terraform-code-generation` |
|
|
119
|
+
| Supabase | `supabase-` | `supabase-postgres` |
|
|
120
|
+
| CallStack | `callstack-` | `callstack-react-native-best-practices` |
|
|
121
|
+
| Scientific | `scientific` | `scientific` (100+ sub-skills) |
|
|
122
|
+
| Composio | `composio` | `composio` |
|
|
123
|
+
|
|
124
|
+
## License
|
|
125
|
+
|
|
126
|
+
Each vendored repository retains its original license. See individual repos for details.
|
package/bin/cli.js
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const { execSync } = require("child_process");
|
|
4
|
+
const path = require("path");
|
|
5
|
+
const fs = require("fs");
|
|
6
|
+
const os = require("os");
|
|
7
|
+
|
|
8
|
+
const REPO_URL = "https://github.com/flitzrrr/agent-skills.git";
|
|
9
|
+
const SKILL_DIR = path.join(os.homedir(), ".agent-skills");
|
|
10
|
+
|
|
11
|
+
const PLATFORMS = {
|
|
12
|
+
claude: {
|
|
13
|
+
name: "Claude Code",
|
|
14
|
+
dir: null, // CLAUDE.md approach — project-level
|
|
15
|
+
note: "Clone repo into your project. CLAUDE.md will be auto-discovered.",
|
|
16
|
+
},
|
|
17
|
+
antigravity: {
|
|
18
|
+
name: "Antigravity (Gemini)",
|
|
19
|
+
dir: path.join(os.homedir(), ".gemini", "antigravity", "skills"),
|
|
20
|
+
},
|
|
21
|
+
codex: {
|
|
22
|
+
name: "Codex (OpenAI)",
|
|
23
|
+
dir: path.join(os.homedir(), ".codex", "skills"),
|
|
24
|
+
},
|
|
25
|
+
opencode: {
|
|
26
|
+
name: "OpenCode",
|
|
27
|
+
dir: path.join(os.homedir(), ".config", "opencode", "skills"),
|
|
28
|
+
},
|
|
29
|
+
cursor: {
|
|
30
|
+
name: "Cursor",
|
|
31
|
+
dir: null,
|
|
32
|
+
note: "Clone repo into your workspace. .cursorrules will be auto-loaded.",
|
|
33
|
+
},
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
function log(msg) {
|
|
37
|
+
console.log(` ${msg}`);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
function header(msg) {
|
|
41
|
+
console.log(`\n🧠 ${msg}\n`);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
function cloneRepo() {
|
|
45
|
+
if (fs.existsSync(SKILL_DIR)) {
|
|
46
|
+
log("Updating existing installation...");
|
|
47
|
+
execSync(`git -C "${SKILL_DIR}" pull --quiet`, { stdio: "inherit" });
|
|
48
|
+
execSync(
|
|
49
|
+
`git -C "${SKILL_DIR}" submodule update --remote --merge --quiet`,
|
|
50
|
+
{ stdio: "inherit" }
|
|
51
|
+
);
|
|
52
|
+
} else {
|
|
53
|
+
log("Cloning agent-skills repository...");
|
|
54
|
+
execSync(
|
|
55
|
+
`git clone --recurse-submodules --quiet "${REPO_URL}" "${SKILL_DIR}"`,
|
|
56
|
+
{ stdio: "inherit" }
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
function installForPlatform(platform) {
|
|
62
|
+
const config = PLATFORMS[platform];
|
|
63
|
+
if (!config) {
|
|
64
|
+
console.error(`Unknown platform: ${platform}`);
|
|
65
|
+
console.error(`Available: ${Object.keys(PLATFORMS).join(", ")}`);
|
|
66
|
+
process.exit(1);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
if (!config.dir) {
|
|
70
|
+
log(`${config.name}: ${config.note}`);
|
|
71
|
+
return;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
fs.mkdirSync(config.dir, { recursive: true });
|
|
75
|
+
|
|
76
|
+
const skillsDir = path.join(SKILL_DIR, "skills");
|
|
77
|
+
const entries = fs.readdirSync(skillsDir);
|
|
78
|
+
let added = 0;
|
|
79
|
+
let skipped = 0;
|
|
80
|
+
|
|
81
|
+
for (const entry of entries) {
|
|
82
|
+
const target = path.join(config.dir, entry);
|
|
83
|
+
const source = path.join(skillsDir, entry);
|
|
84
|
+
|
|
85
|
+
if (fs.existsSync(target)) {
|
|
86
|
+
skipped++;
|
|
87
|
+
continue;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
try {
|
|
91
|
+
fs.symlinkSync(source, target, "junction");
|
|
92
|
+
added++;
|
|
93
|
+
} catch {
|
|
94
|
+
// Skip if symlink fails
|
|
95
|
+
skipped++;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
log(`${config.name}: ${added} skills added, ${skipped} skipped (existing)`);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
function listSkills() {
|
|
103
|
+
const skillsDir = path.join(SKILL_DIR, "skills");
|
|
104
|
+
if (!fs.existsSync(skillsDir)) {
|
|
105
|
+
console.error("Skills not installed. Run: npx @flitzrrr/agent-skills install");
|
|
106
|
+
process.exit(1);
|
|
107
|
+
}
|
|
108
|
+
const entries = fs.readdirSync(skillsDir).sort();
|
|
109
|
+
header(`${entries.length} Available Skills`);
|
|
110
|
+
entries.forEach((s) => log(` • ${s}`));
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
// Main CLI
|
|
114
|
+
const [, , command, ...args] = process.argv;
|
|
115
|
+
|
|
116
|
+
switch (command) {
|
|
117
|
+
case "install": {
|
|
118
|
+
header("Agent Skills Hub — Installation");
|
|
119
|
+
cloneRepo();
|
|
120
|
+
|
|
121
|
+
const platform = args[0];
|
|
122
|
+
if (platform) {
|
|
123
|
+
installForPlatform(platform);
|
|
124
|
+
} else {
|
|
125
|
+
log("\nInstalling for all platforms...\n");
|
|
126
|
+
for (const p of Object.keys(PLATFORMS)) {
|
|
127
|
+
installForPlatform(p);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
log("\n✅ Done! See CHEATSHEET.md for which skill to use when.");
|
|
132
|
+
log(` ${SKILL_DIR}/CHEATSHEET.md`);
|
|
133
|
+
break;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
case "update": {
|
|
137
|
+
header("Updating Agent Skills...");
|
|
138
|
+
cloneRepo();
|
|
139
|
+
log("\n✅ All skills updated to latest versions.");
|
|
140
|
+
break;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
case "list": {
|
|
144
|
+
listSkills();
|
|
145
|
+
break;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
default: {
|
|
149
|
+
header("Agent Skills Hub — CLI");
|
|
150
|
+
log("Usage:");
|
|
151
|
+
log(" npx @flitzrrr/agent-skills install # Install for all platforms");
|
|
152
|
+
log(" npx @flitzrrr/agent-skills install <platform> # Install for specific platform");
|
|
153
|
+
log(" npx @flitzrrr/agent-skills update # Update all skills");
|
|
154
|
+
log(" npx @flitzrrr/agent-skills list # List all skills");
|
|
155
|
+
log("");
|
|
156
|
+
log("Platforms: " + Object.keys(PLATFORMS).join(", "));
|
|
157
|
+
break;
|
|
158
|
+
}
|
|
159
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@flitzrrr/agent-skills",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "121 AI agent skills from 15 industry-leading sources — multiplatform-ready for Claude Code, Codex, Cursor, Antigravity, OpenCode, Lovable, and more.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"agent-skills": "./bin/cli.js"
|
|
7
|
+
},
|
|
8
|
+
"keywords": [
|
|
9
|
+
"ai",
|
|
10
|
+
"agent",
|
|
11
|
+
"skills",
|
|
12
|
+
"claude",
|
|
13
|
+
"codex",
|
|
14
|
+
"cursor",
|
|
15
|
+
"antigravity",
|
|
16
|
+
"opencode",
|
|
17
|
+
"lovable",
|
|
18
|
+
"SKILL.md",
|
|
19
|
+
"AGENTS.md"
|
|
20
|
+
],
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/flitzrrr/agent-skills.git"
|
|
24
|
+
},
|
|
25
|
+
"author": "flitzrrr",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"files": [
|
|
28
|
+
"bin/",
|
|
29
|
+
"skills/",
|
|
30
|
+
"AGENTS.md",
|
|
31
|
+
"CLAUDE.md",
|
|
32
|
+
"CHEATSHEET.md",
|
|
33
|
+
".cursorrules",
|
|
34
|
+
".lovable",
|
|
35
|
+
"README.md"
|
|
36
|
+
]
|
|
37
|
+
}
|