@veyralabs/skills 0.2.0 → 0.4.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 +65 -101
- package/bin/cli.js +20 -1
- package/commands/brandaudit.md +3 -0
- package/commands/competitornames.md +3 -0
- package/commands/domainforge.md +3 -0
- package/commands/namingguide.md +3 -0
- package/commands/shopify-dev.md +3 -0
- package/commands/shopify-store.md +3 -0
- package/commands/webcloner.md +5 -0
- package/install.sh +24 -1
- package/package.json +8 -2
- package/skills/shopify-suite/shopify-dev/SKILL.md +409 -0
- package/skills/shopify-suite/shopify-dev/references/app-architecture.md +322 -0
- package/skills/shopify-suite/shopify-dev/references/cli-workflows.md +257 -0
- package/skills/shopify-suite/shopify-dev/references/graphql-queries.md +298 -0
- package/skills/shopify-suite/shopify-dev/references/liquid-patterns.md +286 -0
- package/skills/shopify-suite/shopify-store/SKILL.md +283 -0
- package/skills/shopify-suite/shopify-store/references/app-stack.md +175 -0
- package/skills/shopify-suite/shopify-store/references/audit-framework.md +206 -0
- package/skills/shopify-suite/shopify-store/references/mcp-queries.md +216 -0
- package/skills/shopify-suite/shopify-store/references/product-optimization.md +266 -0
- package/skills/shopify-suite/shopify-store/references/seo-shopify.md +165 -0
package/README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
|
-
#
|
|
1
|
+
# VeyraSkills
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
[](#packs)
|
|
5
|
-
[](#supported-agents)
|
|
3
|
+
Skills for Claude Code and other AI coding agents. Each skill is a plain text file that teaches your agent a specialized workflow — naming, branding, website cloning, and more.
|
|
6
4
|
|
|
7
|
-
|
|
5
|
+
```bash
|
|
6
|
+
npx @veyralabs/skills install naming-suite
|
|
7
|
+
npx @veyralabs/skills install webcloner
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
Or install everything at once:
|
|
8
11
|
|
|
9
12
|
```bash
|
|
10
13
|
bash <(curl -fsSL https://raw.githubusercontent.com/veyralabsgroup/veyraskills/main/install.sh)
|
|
@@ -12,47 +15,52 @@ bash <(curl -fsSL https://raw.githubusercontent.com/veyralabsgroup/veyraskills/m
|
|
|
12
15
|
|
|
13
16
|
---
|
|
14
17
|
|
|
15
|
-
##
|
|
18
|
+
## Available Skills
|
|
16
19
|
|
|
17
|
-
###
|
|
20
|
+
### naming-suite
|
|
18
21
|
|
|
19
|
-
Four skills
|
|
22
|
+
Four skills for naming products, auditing brands, mapping competitors, and building naming systems.
|
|
20
23
|
|
|
21
24
|
| Skill | What it does |
|
|
22
25
|
|-------|-------------|
|
|
23
|
-
| [
|
|
24
|
-
| [
|
|
25
|
-
| [
|
|
26
|
-
| [
|
|
26
|
+
| [domainforge](./skills/naming-suite/domainforge/SKILL.md) | Generate startup name candidates. Scores each on 8 factors: memorability, distinctiveness, domain availability, trademark risk, pronunciation, spelling, brandability, market fit |
|
|
27
|
+
| [brandaudit](./skills/naming-suite/brandaudit/SKILL.md) | Audit an existing brand name. Returns severity scores across 8 dimensions and a rebrand verdict |
|
|
28
|
+
| [competitornames](./skills/naming-suite/competitornames/SKILL.md) | Map how competitors in a market are named. Identifies saturation, naming clusters, and open whitespace |
|
|
29
|
+
| [namingguide](./skills/naming-suite/namingguide/SKILL.md) | Build a naming system for a company or product line. Covers principles, naming patterns, approval criteria, and anti-patterns |
|
|
27
30
|
|
|
28
|
-
|
|
31
|
+
Works best in sequence: run `competitornames` to understand the landscape, then `domainforge` to generate names that stand out from it.
|
|
29
32
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
33
|
+
### webcloner
|
|
34
|
+
|
|
35
|
+
Clone any landing page, marketing site, portfolio, or ecommerce storefront into a pixel-accurate Next.js replica.
|
|
36
|
+
|
|
37
|
+
| Skill | What it does |
|
|
38
|
+
|-------|-------------|
|
|
39
|
+
| [webcloner](./skills/webcloner/SKILL.md) | Six-phase visual cloning: recon with Scrapling, foundation setup, spec generation per section, parallel component build with git worktrees, assembly, and visual QA |
|
|
40
|
+
|
|
41
|
+
Includes three scripts: a Scrapling-based extractor (`extract.py`), an asset downloader with WebP conversion (`download-assets.mjs`), and a side-by-side screenshot comparison tool (`compare.mjs`).
|
|
34
42
|
|
|
35
|
-
|
|
43
|
+
Works for landings, marketing sites, portfolios, and ecommerce product pages. Not designed for SaaS dashboards, auth flows, or real-time data apps.
|
|
36
44
|
|
|
37
45
|
---
|
|
38
46
|
|
|
39
|
-
##
|
|
47
|
+
## Install
|
|
40
48
|
|
|
41
|
-
###
|
|
49
|
+
### A specific pack or skill
|
|
42
50
|
|
|
43
51
|
```bash
|
|
44
|
-
|
|
52
|
+
npx @veyralabs/skills install naming-suite
|
|
53
|
+
npx @veyralabs/skills install webcloner
|
|
54
|
+
npx @veyralabs/skills install domainforge
|
|
45
55
|
```
|
|
46
56
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
### Specific skill
|
|
57
|
+
### All skills
|
|
50
58
|
|
|
51
59
|
```bash
|
|
52
|
-
bash <(curl -fsSL https://raw.githubusercontent.com/veyralabsgroup/veyraskills/main/install.sh)
|
|
60
|
+
bash <(curl -fsSL https://raw.githubusercontent.com/veyralabsgroup/veyraskills/main/install.sh)
|
|
53
61
|
```
|
|
54
62
|
|
|
55
|
-
### Global
|
|
63
|
+
### Global (available across all projects)
|
|
56
64
|
|
|
57
65
|
```bash
|
|
58
66
|
bash <(curl -fsSL https://raw.githubusercontent.com/veyralabsgroup/veyraskills/main/install.sh) --global
|
|
@@ -60,10 +68,10 @@ bash <(curl -fsSL https://raw.githubusercontent.com/veyralabsgroup/veyraskills/m
|
|
|
60
68
|
|
|
61
69
|
### Manual
|
|
62
70
|
|
|
63
|
-
Copy the skill folder
|
|
71
|
+
Copy the skill folder into your agent's skills directory and restart the agent.
|
|
64
72
|
|
|
65
|
-
| Agent | Project | Global |
|
|
66
|
-
|
|
73
|
+
| Agent | Project skills | Global skills |
|
|
74
|
+
|-------|---------------|--------------|
|
|
67
75
|
| Claude Code | `.claude/skills/` | `~/.claude/skills/` |
|
|
68
76
|
| Cursor | `.cursor/skills/` | `~/.cursor/skills/` |
|
|
69
77
|
| Windsurf | `.windsurf/skills/` | `~/.codeium/windsurf/skills/` |
|
|
@@ -72,111 +80,67 @@ Copy the skill folder to your agent's skills directory and restart the agent.
|
|
|
72
80
|
|
|
73
81
|
---
|
|
74
82
|
|
|
75
|
-
##
|
|
83
|
+
## How it works
|
|
76
84
|
|
|
77
|
-
|
|
85
|
+
Skills are Markdown files with a small YAML header. Claude Code reads them at startup and knows when to activate them based on what you type. No configuration, no plugins, no API keys.
|
|
78
86
|
|
|
79
|
-
**DomainForge:**
|
|
80
87
|
```
|
|
81
|
-
Find a
|
|
82
|
-
Name my CLI tool for environment variables
|
|
83
|
-
What should I call this project?
|
|
88
|
+
Find a name for my new developer tool
|
|
84
89
|
```
|
|
85
90
|
|
|
86
|
-
|
|
87
|
-
```
|
|
88
|
-
Audit the brand name "Acme" for a B2B SaaS
|
|
89
|
-
Is our brand name working? Company is called Vercel for analytics tools
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
**CompetitorNames:**
|
|
93
|
-
```
|
|
94
|
-
Map the naming landscape for developer config tools
|
|
95
|
-
Who are my competitors and how are they named?
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
**NamingGuide:**
|
|
99
|
-
```
|
|
100
|
-
Create a naming guide for our company
|
|
101
|
-
We're building a product line and need naming conventions
|
|
102
|
-
Our feature naming is inconsistent — generate a guide
|
|
103
|
-
```
|
|
91
|
+
That's enough to activate `domainforge`. The skill takes over from there.
|
|
104
92
|
|
|
105
93
|
---
|
|
106
94
|
|
|
107
|
-
##
|
|
108
|
-
|
|
109
|
-
```
|
|
110
|
-
DomainForge Analysis — Developer Config Management
|
|
111
|
-
|
|
112
|
-
Archetype: DevTool / Infrastructure
|
|
113
|
-
Mode: Indie Hacker
|
|
95
|
+
## Packs vs individual skills
|
|
114
96
|
|
|
115
|
-
|
|
97
|
+
A pack is a folder of related skills that work together. Install a pack and you get all the skills inside it.
|
|
116
98
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
Domain: krev.dev — available (~$12/yr Porkbun)
|
|
121
|
-
Social: @krev — available on X, GitHub
|
|
122
|
-
Trademark: Clean
|
|
99
|
+
```bash
|
|
100
|
+
# Install the full naming-suite pack (4 skills)
|
|
101
|
+
npx @veyralabs/skills install naming-suite
|
|
123
102
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
Domain: onyx.sh — available (~$18/yr)
|
|
127
|
-
Social: @onyxdev — available
|
|
128
|
-
Trademark: Check in software category
|
|
103
|
+
# Install just one skill from the pack
|
|
104
|
+
npx @veyralabs/skills install domainforge
|
|
129
105
|
```
|
|
130
106
|
|
|
131
107
|
---
|
|
132
108
|
|
|
133
|
-
##
|
|
134
|
-
|
|
135
|
-
| Agent | Supported |
|
|
136
|
-
|-------|-----------|
|
|
137
|
-
| Claude Code | ✅ |
|
|
138
|
-
| Cursor | ✅ |
|
|
139
|
-
| Windsurf | ✅ |
|
|
140
|
-
| Gemini CLI | ✅ |
|
|
141
|
-
| GitHub Copilot | ✅ |
|
|
142
|
-
| Codex | ✅ |
|
|
143
|
-
| Cline | ✅ |
|
|
144
|
-
| Goose | ✅ |
|
|
145
|
-
| OpenHands | ✅ |
|
|
146
|
-
| Roo Code | ✅ |
|
|
147
|
-
|
|
148
|
-
---
|
|
149
|
-
|
|
150
|
-
## Roadmap
|
|
109
|
+
## Coming soon
|
|
151
110
|
|
|
152
|
-
**
|
|
153
|
-
|
|
154
|
-
**brand-suite** *(coming soon)*
|
|
111
|
+
**brand-suite**
|
|
155
112
|
- `brandvoice` — tone of voice guide generator
|
|
156
|
-
- `brandpositioning` — positioning statement
|
|
113
|
+
- `brandpositioning` — positioning statement and competitive differentiation
|
|
157
114
|
- `taglineforge` — tagline generation with scoring
|
|
158
115
|
|
|
159
|
-
**gtm-suite**
|
|
116
|
+
**gtm-suite**
|
|
160
117
|
- `icp` — Ideal Customer Profile builder
|
|
161
118
|
- `pricingstrategy` — pricing model analysis
|
|
162
119
|
- `gtmplan` — go-to-market plan generator
|
|
163
120
|
|
|
164
121
|
---
|
|
165
122
|
|
|
166
|
-
##
|
|
123
|
+
## Individual packages
|
|
167
124
|
|
|
168
|
-
|
|
125
|
+
Each skill is also published as a standalone npm package if you only want one:
|
|
169
126
|
|
|
170
|
-
|
|
127
|
+
- `@veyralabs/naming-suite`
|
|
128
|
+
- `@veyralabs/webcloner`
|
|
129
|
+
|
|
130
|
+
---
|
|
131
|
+
|
|
132
|
+
## Contributing
|
|
133
|
+
|
|
134
|
+
Validate your skill before opening a PR:
|
|
171
135
|
|
|
172
136
|
```bash
|
|
173
137
|
node validate.js
|
|
174
138
|
```
|
|
175
139
|
|
|
140
|
+
See [CONTRIBUTING.md](./CONTRIBUTING.md) for the full guide.
|
|
141
|
+
|
|
176
142
|
---
|
|
177
143
|
|
|
178
144
|
## License
|
|
179
145
|
|
|
180
|
-
MIT
|
|
181
|
-
|
|
182
|
-
Built by [VeyraLabs](https://veyralabs.com).
|
|
146
|
+
MIT. Built by [VeyraLabs](https://veyralabs.com).
|
package/bin/cli.js
CHANGED
|
@@ -5,7 +5,8 @@ const fs = require('fs');
|
|
|
5
5
|
const path = require('path');
|
|
6
6
|
const os = require('os');
|
|
7
7
|
|
|
8
|
-
const SKILLS_DIR
|
|
8
|
+
const SKILLS_DIR = path.join(__dirname, '..', 'skills');
|
|
9
|
+
const COMMANDS_DIR = path.join(__dirname, '..', 'commands');
|
|
9
10
|
|
|
10
11
|
const AGENT_PATHS = {
|
|
11
12
|
claude: { local: '.claude/skills', global: '.claude/skills' },
|
|
@@ -77,6 +78,23 @@ function copySkill(name, skillPath, dest) {
|
|
|
77
78
|
console.log(` ✓ ${name}`);
|
|
78
79
|
}
|
|
79
80
|
|
|
81
|
+
// Copy slash commands — Claude Code only (.claude/commands/)
|
|
82
|
+
function copyCommands(agent, isGlobal) {
|
|
83
|
+
if (agent !== 'claude') return;
|
|
84
|
+
if (!fs.existsSync(COMMANDS_DIR)) return;
|
|
85
|
+
|
|
86
|
+
const cmdDest = isGlobal
|
|
87
|
+
? path.join(os.homedir(), '.claude', 'commands')
|
|
88
|
+
: path.join(process.cwd(), '.claude', 'commands');
|
|
89
|
+
|
|
90
|
+
fs.mkdirSync(cmdDest, { recursive: true });
|
|
91
|
+
for (const f of fs.readdirSync(COMMANDS_DIR)) {
|
|
92
|
+
if (!f.endsWith('.md')) continue;
|
|
93
|
+
fs.copyFileSync(path.join(COMMANDS_DIR, f), path.join(cmdDest, f));
|
|
94
|
+
}
|
|
95
|
+
console.log(` ✓ slash commands → ${cmdDest}`);
|
|
96
|
+
}
|
|
97
|
+
|
|
80
98
|
function printHelp() {
|
|
81
99
|
console.log(`
|
|
82
100
|
Usage:
|
|
@@ -151,6 +169,7 @@ if (command === 'install') {
|
|
|
151
169
|
const scope = isGlobal ? 'global' : 'project';
|
|
152
170
|
console.log(`\nInstalling into ${dest} [${agent}/${scope}]\n`);
|
|
153
171
|
toInstall.forEach(name => copySkill(name, skills[name], dest));
|
|
172
|
+
copyCommands(agent, isGlobal);
|
|
154
173
|
console.log('\nDone. Restart your agent to activate skills.\n');
|
|
155
174
|
process.exit(0);
|
|
156
175
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
Generate startup name candidates for: $ARGUMENTS
|
|
2
|
+
|
|
3
|
+
Use the domainforge skill. Score each candidate on 8 factors: memorability, distinctiveness, domain availability, trademark risk, pronunciation, spelling, brandability, market fit. Check domain availability and social handles. Return a ranked list with scores and a one-line brand narrative per name.
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
Activate the shopify-dev skill. Task: $ARGUMENTS
|
|
2
|
+
|
|
3
|
+
Start by detecting the mode from context (theme / app / api / cli / hydrogen / debug). Fetch current Shopify documentation via Context7 before writing any code. Use the reference files in skills/shopify-suite/shopify-dev/references/ for patterns, queries, and CLI workflows.
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
Activate the shopify-store skill. Task: $ARGUMENTS
|
|
2
|
+
|
|
3
|
+
Start with mode detection: attempt list_products via shopify-mcp. If MCP responds, run the full Mode A audit pipeline. If not available, switch to Mode B (public extraction via Scrapling). Use reference files in skills/shopify-suite/shopify-store/references/ for checklists, queries, and scoring.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
Clone this website: $ARGUMENTS
|
|
2
|
+
|
|
3
|
+
Use the webcloner skill. Start with the recon phase: run extract.py against the URL to get the full site manifest (DOM structure, computed CSS, assets, animation libraries, tech stack). Do not write any component code until the recon summary is reviewed.
|
|
4
|
+
|
|
5
|
+
If the target is out of scope (SaaS dashboard, auth flow, real-time data), say so before starting.
|
package/install.sh
CHANGED
|
@@ -140,6 +140,28 @@ install_skill() {
|
|
|
140
140
|
rm -rf "$tmp"
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
+
install_commands() {
|
|
144
|
+
local agent="$1"
|
|
145
|
+
local is_global="$2"
|
|
146
|
+
local tmp="$3"
|
|
147
|
+
|
|
148
|
+
# Slash commands are only supported by Claude Code
|
|
149
|
+
[[ "$agent" != "claude" ]] && return
|
|
150
|
+
|
|
151
|
+
local cmd_dir
|
|
152
|
+
if [[ "$is_global" == "true" ]]; then
|
|
153
|
+
cmd_dir="$HOME/.claude/commands"
|
|
154
|
+
else
|
|
155
|
+
cmd_dir=".claude/commands"
|
|
156
|
+
fi
|
|
157
|
+
|
|
158
|
+
if [[ -d "$tmp/commands" ]]; then
|
|
159
|
+
mkdir -p "$cmd_dir"
|
|
160
|
+
cp "$tmp/commands/"*.md "$cmd_dir/" 2>/dev/null || true
|
|
161
|
+
echo " Slash commands → ${cmd_dir}/"
|
|
162
|
+
fi
|
|
163
|
+
}
|
|
164
|
+
|
|
143
165
|
install_all() {
|
|
144
166
|
local dest_dir="$1"
|
|
145
167
|
local tmp
|
|
@@ -150,7 +172,7 @@ install_all() {
|
|
|
150
172
|
|
|
151
173
|
echo " Cloning veyralabsgroup/veyraskills..."
|
|
152
174
|
git clone --depth=1 --filter=blob:none --sparse "$GITHUB" "$tmp" -q
|
|
153
|
-
(cd "$tmp" && git sparse-checkout set "skills")
|
|
175
|
+
(cd "$tmp" && git sparse-checkout set "skills" "commands")
|
|
154
176
|
|
|
155
177
|
if [[ ! -d "$tmp/skills" ]]; then
|
|
156
178
|
echo " Error: could not retrieve skills from repository."
|
|
@@ -159,6 +181,7 @@ install_all() {
|
|
|
159
181
|
|
|
160
182
|
mkdir -p "$dest_dir"
|
|
161
183
|
cp -r "$tmp/skills/." "$dest_dir/"
|
|
184
|
+
install_commands "$AGENT" "$GLOBAL" "$tmp"
|
|
162
185
|
|
|
163
186
|
trap - EXIT
|
|
164
187
|
rm -rf "$tmp"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veyralabs/skills",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "VeyraSkills — A curated collection of Claude Code skills for founders, developers and AI builders",
|
|
5
5
|
"bin": {
|
|
6
6
|
"veyraskills": "bin/cli.js"
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"files": [
|
|
9
9
|
"bin/",
|
|
10
10
|
"skills/",
|
|
11
|
+
"commands/",
|
|
11
12
|
"install.sh",
|
|
12
13
|
"validate.js"
|
|
13
14
|
],
|
|
@@ -29,7 +30,12 @@
|
|
|
29
30
|
"domain-generator",
|
|
30
31
|
"startup-branding",
|
|
31
32
|
"brand-strategy",
|
|
32
|
-
"developer-tools"
|
|
33
|
+
"developer-tools",
|
|
34
|
+
"shopify",
|
|
35
|
+
"shopify-theme",
|
|
36
|
+
"shopify-app",
|
|
37
|
+
"shopify-audit",
|
|
38
|
+
"ecommerce"
|
|
33
39
|
],
|
|
34
40
|
"author": "VeyraLabs <hello@veyralabs.com>",
|
|
35
41
|
"license": "MIT",
|