skills-ws 1.4.1 → 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 CHANGED
@@ -1,11 +1,12 @@
1
- # SKILLS.ws
1
+ # skills.ws
2
2
 
3
- 77 expert agent skills for AI coding assistants.
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
- ## Install skills
7
+ ---
8
+
9
+ ## Quick Start
9
10
 
10
11
  ```bash
11
12
  npx skills-ws install # interactive picker
@@ -14,32 +15,193 @@ npx skills-ws install all # install everything
14
15
  npx skills-ws list # list available skills
15
16
  ```
16
17
 
17
- ## What are skills?
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
- Skills are `SKILL.md` files that give AI coding assistants specialized knowledge — workflows, checklists, code patterns, and domain expertise. Compatible with OpenClaw, Claude Code, Cursor, Codex, and any agent that supports the SKILL.md format.
36
+ ### Conversion (8)
37
+ Landing pages, signup flows, popups, A/B testing, pricing optimization, lead scoring, CRO, sales funnels.
20
38
 
21
- ## Categories
39
+ ### Analytics (7)
40
+ Google Analytics, Search Console, Bing/Yandex Webmaster, data analytics, retention analytics.
22
41
 
23
- - **Marketing** — SEO/GEO, content strategy, copywriting, paid ads, email sequences, PR/media, influencer, brand strategy, webinars, blog engine, social media kit
24
- - **Dev** — Git workflow, CI/CD, API design, database design, testing, web performance, security hardening, prompt engineering, AI agent building, MVP launcher, Next.js stack, Next.js performance, PostgreSQL, Docker, AWS deploy, monitoring, Stripe billing, auth
25
- - **Growth** — Social media, community building, customer feedback, business development, cold outreach, competitor intelligence, affiliate marketing, growth hacking, product-led growth, marketplace launch
26
- - **Conversion** — Landing pages, signup flows, popups, A/B testing, pricing optimization, lead scoring, CRO, sales funnels
27
- - **Analytics** — Google Analytics, Search Console, Bing/Yandex Webmaster, data analytics, retention analytics, marketing analytics, on-chain analytics
28
- - **Operations** — EU legal compliance (GDPR, AI Act, DSA), EU tax & accounting, hiring/team building, project management, CRM, revenue ops
29
- - **Web3** — Solidity dev, DeFi integration, smart contract auditor, wallet integration, Aleph Cloud self-deployment
30
- - **Design** — UI/UX Pro Max, landing page builder, design system, ASCII banner
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
+ ---
31
120
 
32
121
  ## Development
33
122
 
34
123
  ```bash
124
+ git clone https://github.com/san-npm/skills-ws.git
125
+ cd skills-ws
35
126
  npm install
36
127
  npm run dev # http://localhost:3000
37
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
38
167
  ```
39
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
+
40
191
  ## Security
41
192
 
42
- See [SECURITY.md](SECURITY.md) for vulnerability reporting and security model.
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
+ ---
43
205
 
44
206
  ## License
45
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-none">{children}</ol>,
27
- li: ({ children, ordered, index }: { children?: React.ReactNode; ordered?: boolean; index?: number }) => (
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
- {ordered ? (
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.4.1",
3
+ "version": "1.5.0",
4
4
  "scripts": {
5
5
  "dev": "next dev",
6
6
  "build": "next build",