-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@barlevalon/skills",
"version": "2.3.0",
"description": "Bootstrap Alon's agentic environment with maintained local skills and upstream workflow skills.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/barlevalon/skills.git"
},
"bugs": {
"url": "https://github.com/barlevalon/skills/issues"
},
"homepage": "https://github.com/barlevalon/skills#readme",
"keywords": [
"agent-skill",
"agent-skills",
"ai-agent",
"claude-code",
"codex",
"cursor",
"monorepo",
"pi",
"pi-package",
"skills"
],
"bin": {
"skills": "./bin/skills.mjs"
},
"files": [
"bin",
"lib",
"skills",
"catalog",
"docs",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"workspaces": [
"skills/*"
],
"scripts": {
"test": "node --test",
"validate": "node scripts/validate-package.mjs && node scripts/validate-catalog.mjs",
"catalog:sync": "node scripts/sync-catalog.mjs",
"catalog:check": "node scripts/sync-catalog.mjs --check",
"pack:check": "npm pack --dry-run",
"pack:skills": "npm run pack:check --workspaces --if-present",
"ci": "npm run catalog:check && npm test && npm run validate && npm run pack:check && npm run pack:skills"
},
"pi": {
"skills": [
"./skills/*/SKILL.md",
"./catalog/skills/*/SKILL.md"
]
},
"curator": "Alon Hearter",
"dependencies": {
"@inquirer/prompts": "^8.5.2"
}
}