skills-ws 1.4.0 → 1.5.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/README.md +178 -15
- package/app/skills/[name]/page.tsx +1 -1
- package/components/FaqAccordion.tsx +1 -0
- package/components/SkillContent.tsx +3 -7
- package/package.json +3 -3
- package/public/skills.json +139 -30
- package/skills/ai-agent-building/SKILL.md +17 -19
- package/skills/aleph-cloud-self-deployment/SKILL.md +3711 -504
- package/skills/auth-implementation/SKILL.md +5 -4
- package/skills/ci-cd-pipeline/SKILL.md +1 -1
- package/skills/defi-integration/SKILL.md +8 -5
- package/skills/docker-production/SKILL.md +3 -2
- package/skills/mcp-client/SKILL.md +814 -0
- package/skills/mcp-server-builder/SKILL.md +1768 -0
- package/skills/monitoring-observability/SKILL.md +1 -1
- package/skills/nextjs-performance/SKILL.md +3 -2
- package/skills/onchain-analytics/SKILL.md +14 -9
- package/skills/postgres-mastery/SKILL.md +2 -3
- package/skills/product-led-growth/SKILL.md +7 -6
- package/skills/saas-billing/SKILL.md +2032 -0
- package/skills/solidity-dev/SKILL.md +3 -0
- package/skills/stripe-billing/SKILL.md +16 -16
- package/skills/telegram-mini-apps/SKILL.md +1860 -0
- package/skills.json +139 -30
package/README.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# skills.ws
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Agent skills for AI coding assistants. 77 skills across 8 categories — built for OpenClaw, Claude Code, Cursor, Codex, and any agent that supports the SKILL.md format.
|
|
4
4
|
|
|
5
|
-
**Website:** [skills.ws](https://skills.ws)
|
|
6
|
-
**npm:** [npmjs.com/package/skills-ws](https://www.npmjs.com/package/skills-ws)
|
|
5
|
+
**Website:** [skills.ws](https://skills.ws) | **npm:** [skills-ws](https://www.npmjs.com/package/skills-ws) | **Docs:** [llms-full.txt](https://skills.ws/llms-full.txt)
|
|
7
6
|
|
|
8
|
-
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Quick Start
|
|
9
10
|
|
|
10
11
|
```bash
|
|
11
12
|
npx skills-ws install # interactive picker
|
|
@@ -14,31 +15,193 @@ npx skills-ws install all # install everything
|
|
|
14
15
|
npx skills-ws list # list available skills
|
|
15
16
|
```
|
|
16
17
|
|
|
17
|
-
|
|
18
|
+
Skills are `SKILL.md` files that give AI coding assistants specialized knowledge — workflows, checklists, code patterns, and domain expertise. Install a skill and your agent gains expert-level capability in that domain.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Skills (77 across 8 categories)
|
|
23
|
+
|
|
24
|
+
### Marketing (15)
|
|
25
|
+
SEO/GEO, content strategy, copywriting, paid ads, email sequences, PR/media, influencer marketing, brand strategy, webinars, blog engine, and more.
|
|
26
|
+
|
|
27
|
+
### Dev (16)
|
|
28
|
+
Git workflow, CI/CD, API design, database design, testing, web performance, security hardening, prompt engineering, AI agent design, MVP launcher, Next.js stack.
|
|
29
|
+
|
|
30
|
+
### Growth (10)
|
|
31
|
+
Social media, community building, customer feedback, business development, cold outreach, competitor intelligence, affiliate marketing.
|
|
32
|
+
|
|
33
|
+
### Operations (11)
|
|
34
|
+
EU legal compliance (GDPR, AI Act, DSA), hiring/team building, project management, CRM, accounting, revenue ops.
|
|
18
35
|
|
|
19
|
-
|
|
36
|
+
### Conversion (8)
|
|
37
|
+
Landing pages, signup flows, popups, A/B testing, pricing optimization, lead scoring, CRO, sales funnels.
|
|
20
38
|
|
|
21
|
-
|
|
39
|
+
### Analytics (7)
|
|
40
|
+
Google Analytics, Search Console, Bing/Yandex Webmaster, data analytics, retention analytics.
|
|
22
41
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
42
|
+
### Web3 (6)
|
|
43
|
+
Blockchain deployment, Aleph Cloud, decentralized infrastructure.
|
|
44
|
+
|
|
45
|
+
### Design (4)
|
|
46
|
+
UI/UX Pro Max, landing page builder, ASCII banner.
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## How Skills Work
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
┌─────────────────────────────────────────┐
|
|
54
|
+
│ AI Coding Assistant │
|
|
55
|
+
│ (OpenClaw, Claude Code, Cursor, Codex) │
|
|
56
|
+
│ │
|
|
57
|
+
│ ┌───────────────────────────────────┐ │
|
|
58
|
+
│ │ SKILL.md files │ │
|
|
59
|
+
│ │ Loaded into agent context on │ │
|
|
60
|
+
│ │ startup — gives the agent │ │
|
|
61
|
+
│ │ domain expertise, workflows, │ │
|
|
62
|
+
│ │ checklists, and code patterns │ │
|
|
63
|
+
│ └───────────────────────────────────┘ │
|
|
64
|
+
└─────────────────────────────────────────┘
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
1. You install a skill via `npx skills-ws install <name>`
|
|
68
|
+
2. A `SKILL.md` file is placed in your agent's skills directory
|
|
69
|
+
3. Your AI assistant reads it on startup and gains that expertise
|
|
70
|
+
4. Ask your assistant to do anything related to that domain — it now knows the best practices, patterns, and workflows
|
|
71
|
+
|
|
72
|
+
Skills are **markdown only** — no executable code, no runtime dependencies, no supply chain risk.
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## CLI Reference
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
# Interactive mode — browse and select skills
|
|
80
|
+
npx skills-ws install
|
|
81
|
+
|
|
82
|
+
# Install a specific skill
|
|
83
|
+
npx skills-ws install seo-geo
|
|
84
|
+
|
|
85
|
+
# Install multiple skills
|
|
86
|
+
npx skills-ws install seo-geo copywriting ab-testing
|
|
87
|
+
|
|
88
|
+
# Install all skills
|
|
89
|
+
npx skills-ws install all
|
|
90
|
+
|
|
91
|
+
# List available skills with categories
|
|
92
|
+
npx skills-ws list
|
|
93
|
+
|
|
94
|
+
# Install to a custom directory
|
|
95
|
+
npx skills-ws install seo-geo --dir ./my-agent/skills
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
The CLI auto-detects your agent type (OpenClaw, Claude Code, Cursor, Codex) and installs to the correct directory.
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
## Website Features
|
|
103
|
+
|
|
104
|
+
The [skills.ws](https://skills.ws) website provides:
|
|
105
|
+
|
|
106
|
+
- **Searchable skill grid** — filter by category, search by name
|
|
107
|
+
- **Individual skill pages** — full SKILL.md content rendered as Markdown
|
|
108
|
+
- **One-click install commands** — copy `npx` command to clipboard
|
|
109
|
+
- **Live npm download counter** — monthly download stats
|
|
110
|
+
- **VirusTotal scan status** — every skill file is scanned
|
|
111
|
+
|
|
112
|
+
### Keyboard Shortcuts
|
|
113
|
+
|
|
114
|
+
| Key | Action |
|
|
115
|
+
|-----|--------|
|
|
116
|
+
| `/` | Focus search |
|
|
117
|
+
| `Esc` | Clear search |
|
|
118
|
+
|
|
119
|
+
---
|
|
30
120
|
|
|
31
121
|
## Development
|
|
32
122
|
|
|
33
123
|
```bash
|
|
124
|
+
git clone https://github.com/san-npm/skills-ws.git
|
|
125
|
+
cd skills-ws
|
|
34
126
|
npm install
|
|
35
127
|
npm run dev # http://localhost:3000
|
|
36
128
|
npm run build # static export to out/
|
|
129
|
+
npm run lint # ESLint + Next.js linter
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
### Stack
|
|
133
|
+
|
|
134
|
+
- **Next.js 14** — static export (SSG), App Router
|
|
135
|
+
- **React 18** + TypeScript 5
|
|
136
|
+
- **Tailwind CSS 3.4** — dark theme
|
|
137
|
+
- **Three.js** — WebGL ASCII art background (homepage)
|
|
138
|
+
- **react-markdown** + remark-gfm — SKILL.md rendering
|
|
139
|
+
|
|
140
|
+
### Project Structure
|
|
141
|
+
|
|
142
|
+
```
|
|
143
|
+
skills-ws/
|
|
144
|
+
├── app/ # Next.js App Router
|
|
145
|
+
│ ├── page.tsx # Homepage — ASCII hero, skill grid, stats
|
|
146
|
+
│ ├── skills/[name]/ # Dynamic skill detail pages (SSG)
|
|
147
|
+
│ ├── docs/ # How agent skills work
|
|
148
|
+
│ ├── cli/ # CLI reference
|
|
149
|
+
│ ├── faq/ # FAQ with accordion
|
|
150
|
+
│ └── sitemap.ts # Dynamic XML sitemap
|
|
151
|
+
├── components/ # React components
|
|
152
|
+
│ ├── AsciiBackground.tsx # Three.js WebGL → ASCII canvas
|
|
153
|
+
│ ├── SkillsGrid.tsx # Searchable/filterable skill grid
|
|
154
|
+
│ ├── SkillContent.tsx # Markdown renderer
|
|
155
|
+
│ ├── InstallBox.tsx # Copy-to-clipboard install command
|
|
156
|
+
│ └── NpmDownloads.tsx # Live npm download counter
|
|
157
|
+
├── lib/
|
|
158
|
+
│ └── skills.ts # Skill data access + TypeScript interfaces
|
|
159
|
+
├── skills/ # Raw SKILL.md files (77 directories)
|
|
160
|
+
├── public/
|
|
161
|
+
│ ├── skills.json # Skills database (77 skills, all metadata + content)
|
|
162
|
+
│ ├── llms.txt # LLM-readable skill index
|
|
163
|
+
│ ├── llms-full.txt # Full content dump for LLMs
|
|
164
|
+
│ ├── robots.txt # Crawl directives
|
|
165
|
+
│ └── install.sh # Bash installer script
|
|
166
|
+
└── skills.json # Master skills database
|
|
37
167
|
```
|
|
38
168
|
|
|
169
|
+
### Build Output
|
|
170
|
+
|
|
171
|
+
Static export generates ~85 pages:
|
|
172
|
+
- Homepage + docs + CLI + FAQ + 404
|
|
173
|
+
- 77 individual skill detail pages
|
|
174
|
+
- XML sitemap
|
|
175
|
+
|
|
176
|
+
No server needed — deploy to any static host (Vercel, Netlify, GitHub Pages, S3).
|
|
177
|
+
|
|
178
|
+
---
|
|
179
|
+
|
|
180
|
+
## SEO & Structured Data
|
|
181
|
+
|
|
182
|
+
- Dynamic XML sitemap with all skill pages
|
|
183
|
+
- OpenGraph + Twitter Card meta tags
|
|
184
|
+
- JSON-LD schemas: Organization, WebSite, SoftwareApplication, BreadcrumbList, FAQPage
|
|
185
|
+
- Google Analytics 4 integration
|
|
186
|
+
- `llms.txt` + `llms-full.txt` for AI crawlers
|
|
187
|
+
- `robots.txt` with sitemap reference
|
|
188
|
+
|
|
189
|
+
---
|
|
190
|
+
|
|
39
191
|
## Security
|
|
40
192
|
|
|
41
|
-
|
|
193
|
+
Skills are **markdown files only** — no executable code.
|
|
194
|
+
|
|
195
|
+
- Zero runtime dependencies (no supply chain risk)
|
|
196
|
+
- No `eval()`, `exec()`, or `child_process` patterns
|
|
197
|
+
- All skills built in-house, no third-party content
|
|
198
|
+
- VirusTotal scanning on all skill files
|
|
199
|
+
- Environment-only credentials (nothing hardcoded)
|
|
200
|
+
- npm package published with Sigstore provenance attestation
|
|
201
|
+
|
|
202
|
+
See [SECURITY.md](SECURITY.md) for vulnerability reporting.
|
|
203
|
+
|
|
204
|
+
---
|
|
42
205
|
|
|
43
206
|
## License
|
|
44
207
|
|
|
@@ -13,7 +13,7 @@ export function generateStaticParams() {
|
|
|
13
13
|
|
|
14
14
|
export function generateMetadata({ params }: { params: { name: string } }): Metadata {
|
|
15
15
|
const skill = getSkill(params.name);
|
|
16
|
-
if (!skill) return
|
|
16
|
+
if (!skill) return notFound();
|
|
17
17
|
|
|
18
18
|
const title = `${skill.name} — AI Agent Skill`;
|
|
19
19
|
const description = `${skill.description} Install with npx skills-ws install ${skill.name}. Works with OpenClaw, Claude Code, Cursor, and Codex.`;
|
|
@@ -31,6 +31,7 @@ export default function FaqAccordion({ faqs }: { faqs: Faq[] }) {
|
|
|
31
31
|
role="region"
|
|
32
32
|
aria-labelledby={`faq-btn-${i}`}
|
|
33
33
|
aria-hidden={open !== i}
|
|
34
|
+
inert={open !== i ? true : undefined}
|
|
34
35
|
className="overflow-hidden transition-all duration-200"
|
|
35
36
|
style={{ maxHeight: open === i ? "500px" : "0px" }}
|
|
36
37
|
>
|
|
@@ -23,14 +23,10 @@ export default function SkillContent({ content }: { content: string }) {
|
|
|
23
23
|
),
|
|
24
24
|
p: ({ children }) => <p className="mb-3 leading-relaxed">{children}</p>,
|
|
25
25
|
ul: ({ children }) => <ul className="mb-4 space-y-1.5 list-none">{children}</ul>,
|
|
26
|
-
ol: ({ children }) => <ol className="mb-4 space-y-1.5 list-
|
|
27
|
-
li: ({ children
|
|
26
|
+
ol: ({ children }) => <ol className="mb-4 space-y-1.5 list-decimal list-inside">{children}</ol>,
|
|
27
|
+
li: ({ children }: { children?: React.ReactNode }) => (
|
|
28
28
|
<li className="flex items-start gap-2">
|
|
29
|
-
|
|
30
|
-
<span className="text-accent text-[12px] font-mono mt-0.5 shrink-0 min-w-[1.2em]">{(index ?? 0) + 1}.</span>
|
|
31
|
-
) : (
|
|
32
|
-
<span className="w-1 h-1 rounded-full bg-accent mt-2.5 shrink-0" />
|
|
33
|
-
)}
|
|
29
|
+
<span className="w-1 h-1 rounded-full bg-accent mt-2.5 shrink-0" />
|
|
34
30
|
<span className="flex-1 min-w-0">{children}</span>
|
|
35
31
|
</li>
|
|
36
32
|
),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skills-ws",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "next dev",
|
|
6
6
|
"build": "next build",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"tailwindcss": "^3.4.1",
|
|
26
26
|
"typescript": "^5"
|
|
27
27
|
},
|
|
28
|
-
"description": "77 expert agent skills for AI coding assistants
|
|
28
|
+
"description": "77 expert agent skills for AI coding assistants — marketing, growth, web3, dev, design & operations. Built for OpenClaw, Claude Code, Cursor, and Codex.",
|
|
29
29
|
"bin": {
|
|
30
30
|
"skills-ws": "bin/cli.mjs"
|
|
31
31
|
},
|
|
@@ -64,4 +64,4 @@
|
|
|
64
64
|
},
|
|
65
65
|
"homepage": "https://skills.ws",
|
|
66
66
|
"author": "skills.ws"
|
|
67
|
-
}
|
|
67
|
+
}
|