@flitzrrr/agent-skills 1.0.3 → 1.1.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 +2 -2
- package/.github/copilot-instructions.md +59 -0
- package/.lovable +1 -1
- package/AGENTS.md +2 -2
- package/CHEATSHEET.md +84 -86
- package/CLAUDE.md +2 -2
- package/LICENSE +27 -0
- package/README.md +147 -100
- package/bin/build-catalog.js +208 -0
- package/bin/cli.js +7 -3
- package/bin/sync-docs.js +147 -0
- package/bin/sync-skills.sh +17 -0
- package/bin/test-cli.js +115 -0
- package/bin/update-wiki.js +102 -0
- package/package.json +9 -2
- package/skills/dispatch-parallel-agents/skill.md +95 -0
- package/skills/execute-work-package/SKILL.md +279 -0
- package/skills/execute-work-package/tpl-execution-blueprint.md +39 -0
- package/skills/execute-work-package/tpl-execution-digest.md +24 -0
- package/skills/execute-work-package/tpl-implementer-execute-prompt.md +57 -0
- package/skills/execute-work-package/tpl-implementer-preflight-prompt.md +66 -0
- package/skills/product-description-seo/CROSS-SELL.md +31 -0
- package/skills/product-description-seo/KEYWORDS.md +35 -0
- package/skills/product-description-seo/SKILL.md +361 -0
- package/skills/product-description-seo/scripts/analyze_catalog.py +136 -0
- package/skills/product-description-seo/scripts/check_quality.py +204 -0
- package/skills/product-description-seo/scripts/extract_category.py +88 -0
- package/skills/product-description-seo/scripts/track_progress.py +140 -0
- package/skills/product-description-seo/scripts/update_catalog.py +80 -0
- package/skills/product-description-seo/scripts/validate_json.py +87 -0
- package/skills/systematic-debugging/skill.md +87 -0
- package/skills/tob-gh-cli/SKILL.md +71 -0
package/.cursorrules
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# This file makes skills discoverable in Cursor IDE.
|
|
3
3
|
# For detailed skill usage, see CHEATSHEET.md or individual SKILL.md files.
|
|
4
4
|
|
|
5
|
-
## Available Skills (55 total from
|
|
5
|
+
## Available Skills (55 total from 19 sources)
|
|
6
6
|
|
|
7
7
|
### Security & Code Quality
|
|
8
8
|
- Use `skills/security-review/SKILL.md` for OWASP-based security audits
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
- Use `skills/create-plan/SKILL.md` to start a structured project plan
|
|
26
26
|
- Use `skills/resume-plan/SKILL.md` to continue a previous plan
|
|
27
27
|
- Use `skills/update-plan/SKILL.md` to modify plans
|
|
28
|
-
- Use `skills/execute-work-
|
|
28
|
+
- Use `skills/execute-work-package/SKILL.md` to execute plan items
|
|
29
29
|
- Use `skills/generate-handover/SKILL.md` for session handoff
|
|
30
30
|
|
|
31
31
|
### Document Generation
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# Agent Skills Hub — VS Code / GitHub Copilot
|
|
2
|
+
|
|
3
|
+
This repository contains 504 curated AI agent skills from 19 sources.
|
|
4
|
+
Each skill is a self-contained folder under `skills/` with a `SKILL.md` file.
|
|
5
|
+
|
|
6
|
+
## How to Use Skills
|
|
7
|
+
|
|
8
|
+
When a task matches a skill's domain, read the corresponding `SKILL.md`:
|
|
9
|
+
|
|
10
|
+
```
|
|
11
|
+
skills/<skill-name>/SKILL.md
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Use `CHEATSHEET.md` for a decision guide on which skill to use when.
|
|
15
|
+
|
|
16
|
+
## Key Skill Categories
|
|
17
|
+
|
|
18
|
+
### Security & Code Quality
|
|
19
|
+
- `skills/security-review/` — OWASP-based security audits
|
|
20
|
+
- `skills/code-review/` — Comprehensive code reviews
|
|
21
|
+
- `skills/find-bugs/` — Bug hunting in local changes
|
|
22
|
+
- `skills/gha-security-review/` — GitHub Actions security
|
|
23
|
+
|
|
24
|
+
### Git Workflow
|
|
25
|
+
- `skills/commit/` — Conventional Commits formatting
|
|
26
|
+
- `skills/create-branch/` — Branch creation from issues
|
|
27
|
+
- `skills/pr-writer/` — PR descriptions
|
|
28
|
+
- `skills/iterate-pr/` — CI fix loops
|
|
29
|
+
|
|
30
|
+
### Project Planning (Multi-Session)
|
|
31
|
+
- `skills/create-plan/` — Start a structured project plan
|
|
32
|
+
- `skills/resume-plan/` — Continue a previous plan
|
|
33
|
+
- `skills/execute-work-package/` — Execute plan items
|
|
34
|
+
- `skills/generate-handover/` — Session handoff
|
|
35
|
+
|
|
36
|
+
### Document Generation
|
|
37
|
+
- `skills/anthropic-pdf/` — PDF operations
|
|
38
|
+
- `skills/anthropic-docx/` — Word documents
|
|
39
|
+
- `skills/anthropic-pptx/` — Presentations
|
|
40
|
+
- `skills/anthropic-xlsx/` — Spreadsheets
|
|
41
|
+
|
|
42
|
+
### Frontend & React
|
|
43
|
+
- `skills/vercel-react-best-practices/` — React/Next.js optimization (62 rules)
|
|
44
|
+
- `skills/vercel-web-design-guidelines/` — UI/UX audit (100+ rules)
|
|
45
|
+
- `skills/vercel-composition-patterns/` — React component architecture
|
|
46
|
+
- `skills/anthropic-frontend-design/` — Bold, non-generic UI design
|
|
47
|
+
|
|
48
|
+
### Debugging
|
|
49
|
+
- `skills/systematic-debugging/` — Root-cause analysis before fixing
|
|
50
|
+
|
|
51
|
+
### Developer Tools
|
|
52
|
+
- `skills/anthropic-mcp-builder/` — Build MCP servers
|
|
53
|
+
- `skills/anthropic-webapp-testing/` — Playwright testing
|
|
54
|
+
|
|
55
|
+
### SEO
|
|
56
|
+
- `skills/seo/` — Comprehensive SEO auditing (16 sub-skills)
|
|
57
|
+
|
|
58
|
+
### Deployment
|
|
59
|
+
- `skills/vercel-deploy-to-vercel/` — Vercel deployments
|
package/.lovable
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Agent Skills Hub — Lovable Project Instructions
|
|
2
2
|
# This file makes skills available in Lovable AI.
|
|
3
3
|
|
|
4
|
-
This repository contains
|
|
4
|
+
This repository contains 504 curated AI agent skills for code review, security auditing,
|
|
5
5
|
document generation, frontend development, SEO, and project planning.
|
|
6
6
|
|
|
7
7
|
## How to Use
|
package/AGENTS.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Agent Skills Hub
|
|
2
2
|
|
|
3
|
-
This repository contains 55 curated AI agent skills from
|
|
3
|
+
This repository contains 55 curated AI agent skills from 19 sources.
|
|
4
4
|
Skills are located in the `skills/` directory — each contains a `SKILL.md` with instructions.
|
|
5
5
|
|
|
6
6
|
## Available Skill Categories
|
|
@@ -8,7 +8,7 @@ Skills are located in the `skills/` directory — each contains a `SKILL.md` wit
|
|
|
8
8
|
- **Security & Code Review**: `security-review`, `code-review`, `find-bugs`, `gha-security-review`
|
|
9
9
|
- **Git Workflow**: `commit`, `create-branch`, `pr-writer`, `iterate-pr`
|
|
10
10
|
- **Django**: `django-access-review`, `django-perf-review`
|
|
11
|
-
- **Planning & Docs**: `create-plan`, `resume-plan`, `execute-work-
|
|
11
|
+
- **Planning & Docs**: `create-plan`, `resume-plan`, `execute-work-package`, `generate-docs`
|
|
12
12
|
- **Documents**: `anthropic-pdf`, `anthropic-docx`, `anthropic-pptx`, `anthropic-xlsx`
|
|
13
13
|
- **Frontend & Design**: `anthropic-frontend-design`, `vercel-react-best-practices`, `vercel-web-design-guidelines`
|
|
14
14
|
- **Developer Tools**: `anthropic-mcp-builder`, `anthropic-webapp-testing`, `anthropic-claude-api`
|
package/CHEATSHEET.md
CHANGED
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Agent Skills Cheatsheet
|
|
2
2
|
|
|
3
3
|
> Quick decision guide: **which skill, when, and why.**
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Quick Decision Matrix
|
|
8
8
|
|
|
9
9
|
| You want to... | Use this skill | Source | Rating |
|
|
10
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-
|
|
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 |
|
|
11
|
+
| **Security audit** code changes | `security-review` | Sentry | 5/5 |
|
|
12
|
+
| **Code review** a PR | `code-review` | Sentry | 5/5 |
|
|
13
|
+
| **Find bugs** in local changes | `find-bugs` | Sentry | 5/5 |
|
|
14
|
+
| **Audit GH Actions** for supply chain attacks | `gha-security-review` | Sentry | 5/5 |
|
|
15
|
+
| **Review Django access control** / IDOR | `django-access-review` | Sentry | 4/5 |
|
|
16
|
+
| **Review Django performance** / N+1 queries | `django-perf-review` | Sentry | 4/5 |
|
|
17
|
+
| **Write a commit message** (Conventional Commits) | `commit` | Sentry | 5/5 |
|
|
18
|
+
| **Create a branch** | `create-branch` | Sentry | 4/5 |
|
|
19
|
+
| **Write a PR description** | `pr-writer` | Sentry | 5/5 |
|
|
20
|
+
| **Fix CI failures** iteratively | `iterate-pr` | Sentry | 5/5 |
|
|
21
|
+
| **Simplify** complex code | `code-simplifier` | Sentry | 4/5 |
|
|
22
|
+
| **Scan skills** for prompt injection | `skill-scanner` | Sentry | 4/5 |
|
|
23
|
+
| **Create new skills** | `skill-writer` / `anthropic-skill-creator` | Sentry / Anthropic | 4/5 |
|
|
24
|
+
| **Run SEO audit** on a website | `seo` | Agentic SEO | 5/5 |
|
|
25
|
+
| **Plan a multi-session** project | `create-plan` | OpenCode | 5/5 |
|
|
26
|
+
| **Resume** a previous plan | `resume-plan` | OpenCode | 5/5 |
|
|
27
|
+
| **Execute** a work packet from plan | `execute-work-package` | OpenCode | 5/5 |
|
|
28
|
+
| **Generate project docs** | `generate-docs` | OpenCode | 4/5 |
|
|
29
|
+
| **Update existing docs** | `update-docs` | OpenCode | 4/5 |
|
|
30
|
+
| **Create handover** summary for next session | `generate-handover` | OpenCode | 4/5 |
|
|
31
|
+
| **Create/edit PDFs** | `anthropic-pdf` | Anthropic | 5/5 |
|
|
32
|
+
| **Create/edit Word docs** | `anthropic-docx` | Anthropic | 5/5 |
|
|
33
|
+
| **Create presentations** | `anthropic-pptx` | Anthropic | 5/5 |
|
|
34
|
+
| **Create/edit spreadsheets** | `anthropic-xlsx` | Anthropic | 5/5 |
|
|
35
|
+
| **Build an MCP server** | `anthropic-mcp-builder` | Anthropic | 5/5 |
|
|
36
|
+
| **Test web apps** with Playwright | `anthropic-webapp-testing` | Anthropic | 5/5 |
|
|
37
|
+
| **Design stunning frontends** | `anthropic-frontend-design` | Anthropic | 5/5 |
|
|
38
|
+
| **Build Claude API apps** | `anthropic-claude-api` | Anthropic | 5/5 |
|
|
39
|
+
| **Create generative art** with p5.js | `anthropic-algorithmic-art` | Anthropic | 4/5 |
|
|
40
|
+
| **Design artistic visuals** (posters, canvases) | `anthropic-canvas-design` | Anthropic | 4/5 |
|
|
41
|
+
| **Apply professional themes** to artifacts | `anthropic-theme-factory` | Anthropic | 4/5 |
|
|
42
|
+
| **Write internal comms** (3P, newsletters) | `anthropic-internal-comms` | Anthropic | 3/5 |
|
|
43
|
+
| **Create Slack GIFs** | `anthropic-slack-gif-creator` | Anthropic | 3/5 |
|
|
44
|
+
| **Build complex React artifacts** | `anthropic-web-artifacts-builder` | Anthropic | 4/5 |
|
|
45
|
+
| **Coauthor documents** collaboratively | `anthropic-doc-coauthoring` | Anthropic | 4/5 |
|
|
46
|
+
| **Optimize React/Next.js** performance | `vercel-react-best-practices` | Vercel | 5/5 |
|
|
47
|
+
| **Audit web UI** for accessibility & UX | `vercel-web-design-guidelines` | Vercel | 5/5 |
|
|
48
|
+
| **Fix React component architecture** | `vercel-composition-patterns` | Vercel | 4/5 |
|
|
49
|
+
| **Build React Native** apps | `vercel-react-native-skills` | Vercel | 4/5 |
|
|
50
|
+
| **Deploy to Vercel** | `vercel-deploy-to-vercel` | Vercel | 4/5 |
|
|
51
51
|
|
|
52
52
|
---
|
|
53
53
|
|
|
54
|
-
##
|
|
54
|
+
## Skills by Source
|
|
55
55
|
|
|
56
|
-
###
|
|
56
|
+
### Sentry (getsentry/skills) — 504 skills
|
|
57
57
|
|
|
58
58
|
Security, code quality, and Git workflow. Battle-tested at scale.
|
|
59
59
|
|
|
@@ -96,7 +96,7 @@ Security, code quality, and Git workflow. Battle-tested at scale.
|
|
|
96
96
|
|
|
97
97
|
---
|
|
98
98
|
|
|
99
|
-
###
|
|
99
|
+
### Agentic SEO (Bhanunamikaze) — 16 sub-skills
|
|
100
100
|
|
|
101
101
|
Comprehensive SEO auditing toolkit with Playwright integration.
|
|
102
102
|
|
|
@@ -123,7 +123,7 @@ Comprehensive SEO auditing toolkit with Playwright integration.
|
|
|
123
123
|
|
|
124
124
|
---
|
|
125
125
|
|
|
126
|
-
###
|
|
126
|
+
### OpenCode Processing (DasDigitaleMomentum) — 504 skills
|
|
127
127
|
|
|
128
128
|
Multi-session project planning and documentation framework.
|
|
129
129
|
|
|
@@ -132,7 +132,7 @@ Multi-session project planning and documentation framework.
|
|
|
132
132
|
| `create-plan` | Initialize structured project plan | Starting a new multi-step project |
|
|
133
133
|
| `resume-plan` | Continue previous session's plan | Returning to unfinished work |
|
|
134
134
|
| `update-plan` | Modify plan with new requirements | Scope changes mid-project |
|
|
135
|
-
| `execute-work-
|
|
135
|
+
| `execute-work-package` | Execute a specific plan item | Implementing individual tasks |
|
|
136
136
|
| `generate-docs` | Create project documentation | After major milestones |
|
|
137
137
|
| `update-docs` | Update existing documentation | After changes to documented features |
|
|
138
138
|
| `generate-handover` | Create session handover summary | End of work session |
|
|
@@ -141,7 +141,7 @@ Multi-session project planning and documentation framework.
|
|
|
141
141
|
|
|
142
142
|
---
|
|
143
143
|
|
|
144
|
-
###
|
|
144
|
+
### Anthropic (anthropics/skills) — 504 skills
|
|
145
145
|
|
|
146
146
|
Document creation, creative design, developer tools, and enterprise workflows.
|
|
147
147
|
|
|
@@ -159,7 +159,7 @@ Document creation, creative design, developer tools, and enterprise workflows.
|
|
|
159
159
|
| Skill | Purpose | Key Features |
|
|
160
160
|
|-------|---------|-------------|
|
|
161
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
|
|
162
|
+
| `anthropic-canvas-design` | Artistic visual creation (posters, art) | Design philosophy to canvas execution pipeline |
|
|
163
163
|
| `anthropic-algorithmic-art` | Generative art with p5.js | Seeded randomness, interactive parameter exploration |
|
|
164
164
|
| `anthropic-theme-factory` | 10 professional themes for any artifact | Color palettes + font pairings, custom theme creation |
|
|
165
165
|
| `anthropic-slack-gif-creator` | Animated GIFs optimized for Slack | PIL/Pillow, GIFBuilder, easing functions |
|
|
@@ -184,7 +184,7 @@ Document creation, creative design, developer tools, and enterprise workflows.
|
|
|
184
184
|
|
|
185
185
|
---
|
|
186
186
|
|
|
187
|
-
###
|
|
187
|
+
### Vercel (vercel-labs/agent-skills) — 504 skills
|
|
188
188
|
|
|
189
189
|
React/Next.js performance, web design, and deployment.
|
|
190
190
|
|
|
@@ -198,34 +198,34 @@ React/Next.js performance, web design, and deployment.
|
|
|
198
198
|
|
|
199
199
|
---
|
|
200
200
|
|
|
201
|
-
##
|
|
201
|
+
## Scenario Guide
|
|
202
202
|
|
|
203
203
|
### "I'm starting a new feature"
|
|
204
204
|
|
|
205
|
-
1. `create-plan`
|
|
206
|
-
2. `create-branch`
|
|
207
|
-
3. `execute-work-
|
|
208
|
-
4. `commit`
|
|
209
|
-
5. `pr-writer`
|
|
210
|
-
6. `iterate-pr`
|
|
205
|
+
1. `create-plan` — Structure the work
|
|
206
|
+
2. `create-branch` — Create feature branch
|
|
207
|
+
3. `execute-work-package` — 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
211
|
|
|
212
212
|
### "I need to review code"
|
|
213
213
|
|
|
214
|
-
1. `code-review`
|
|
215
|
-
2. `security-review`
|
|
216
|
-
3. `find-bugs`
|
|
217
|
-
4. `django-access-review`
|
|
218
|
-
5. `django-perf-review`
|
|
219
|
-
6. `gha-security-review`
|
|
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
220
|
|
|
221
221
|
### "I'm building a web app"
|
|
222
222
|
|
|
223
|
-
1. `vercel-react-best-practices`
|
|
224
|
-
2. `vercel-composition-patterns`
|
|
225
|
-
3. `anthropic-frontend-design`
|
|
226
|
-
4. `vercel-web-design-guidelines`
|
|
227
|
-
5. `anthropic-webapp-testing`
|
|
228
|
-
6. `vercel-deploy-to-vercel`
|
|
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
229
|
|
|
230
230
|
### "I need to create documents"
|
|
231
231
|
|
|
@@ -238,34 +238,32 @@ React/Next.js performance, web design, and deployment.
|
|
|
238
238
|
|
|
239
239
|
### "I need SEO analysis"
|
|
240
240
|
|
|
241
|
-
1. `seo`
|
|
241
|
+
1. `seo` — Run `seo audit` for comprehensive analysis
|
|
242
242
|
2. Focus sub-skills: `seo page`, `seo schema`, `seo performance`
|
|
243
243
|
3. Generate: `seo report` for stakeholder deliverables
|
|
244
244
|
|
|
245
245
|
### "I'm building an MCP server"
|
|
246
246
|
|
|
247
|
-
1. `anthropic-mcp-builder`
|
|
248
|
-
2. Research
|
|
247
|
+
1. `anthropic-mcp-builder` — Full 4-phase development guide
|
|
248
|
+
2. Research, Plan, Implement, Test, Evaluate
|
|
249
249
|
|
|
250
250
|
### "I need to hand off work to next session"
|
|
251
251
|
|
|
252
|
-
1. `generate-handover`
|
|
253
|
-
2. `update-docs`
|
|
254
|
-
3. `resume-plan`
|
|
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
255
|
|
|
256
256
|
---
|
|
257
257
|
|
|
258
|
-
##
|
|
258
|
+
## Compatibility Matrix
|
|
259
259
|
|
|
260
260
|
| Skill Category | Antigravity | Claude Code | Cursor | Generic Agent |
|
|
261
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)
|
|
262
|
+
| Sentry (code/security) | Yes | Yes | Yes | Yes |
|
|
263
|
+
| Agentic SEO | Yes | Yes | Partial | Yes |
|
|
264
|
+
| OpenCode (planning) | Yes | Yes | Yes | Yes |
|
|
265
|
+
| Anthropic (docs) | Partial | Yes | Partial | Partial |
|
|
266
|
+
| Anthropic (creative) | Partial | Yes | Partial | Partial |
|
|
267
|
+
| Anthropic (dev tools) | Yes | Yes | Partial | Partial |
|
|
268
|
+
| Vercel (React) | Yes | Yes | Yes | Yes |
|
|
269
|
+
| Vercel (deploy) | Partial | Yes | Partial | Partial |
|
package/CLAUDE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Agent Skills Hub
|
|
2
2
|
|
|
3
|
-
This repository contains 55 curated AI agent skills from
|
|
3
|
+
This repository contains 55 curated AI agent skills from 19 sources.
|
|
4
4
|
Skills are located in the `skills/` directory — each contains a `SKILL.md` with instructions.
|
|
5
5
|
|
|
6
6
|
## Available Skill Categories
|
|
@@ -8,7 +8,7 @@ Skills are located in the `skills/` directory — each contains a `SKILL.md` wit
|
|
|
8
8
|
- **Security & Code Review**: `security-review`, `code-review`, `find-bugs`, `gha-security-review`
|
|
9
9
|
- **Git Workflow**: `commit`, `create-branch`, `pr-writer`, `iterate-pr`
|
|
10
10
|
- **Django**: `django-access-review`, `django-perf-review`
|
|
11
|
-
- **Planning & Docs**: `create-plan`, `resume-plan`, `execute-work-
|
|
11
|
+
- **Planning & Docs**: `create-plan`, `resume-plan`, `execute-work-package`, `generate-docs`
|
|
12
12
|
- **Documents**: `anthropic-pdf`, `anthropic-docx`, `anthropic-pptx`, `anthropic-xlsx`
|
|
13
13
|
- **Frontend & Design**: `anthropic-frontend-design`, `vercel-react-best-practices`, `vercel-web-design-guidelines`
|
|
14
14
|
- **Developer Tools**: `anthropic-mcp-builder`, `anthropic-webapp-testing`, `anthropic-claude-api`
|
package/LICENSE
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 flitzrrr
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
Note: Each vendored submodule in vendor/ retains its own original license.
|
|
26
|
+
This MIT license applies only to the repository structure, CLI tooling,
|
|
27
|
+
documentation, and workflow files created by this project.
|