-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.79 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
{
"name": "skillengine",
"version": "1.0.0",
"description": "Forge production-grade AI agents with battle-tested engineering skills",
"private": true,
"scripts": {
"test": "npm run validate && npm run validate:evals && npm run lint:md && npm run test:hooks && npm run quality:cross-skill && npm run quality:agents",
"validate": "node scripts/validate-skills.js",
"validate:strict": "node scripts/validate-skills.js --strict",
"validate:fix": "node scripts/validate-skills.js --fix",
"validate:evals": "node scripts/validate-evals.js",
"lint:md": "markdownlint-cli2 'skills/**/*.md' 'agents/**/*.md' 'references/**/*.md' 'docs/**/*.md' 'hooks/**/*.md' 'evals/**/*.md'",
"lint:md:fix": "markdownlint-cli2 --fix 'skills/**/*.md' 'agents/**/*.md' 'references/**/*.md' 'docs/**/*.md' 'hooks/**/*.md' 'evals/**/*.md'",
"lint:scripts": "shellcheck hooks/*.sh",
"test:hooks": "bash hooks/session-start-test.sh && bash hooks/simplify-ignore-test.sh",
"quality:cross-skill": "node scripts/quality-gate.js",
"quality:agents": "node scripts/validate-agents.js",
"quality:report": "node scripts/quality-gate.js --report",
"build:packages": "node scripts/build-packages.js",
"ci": "npm run validate:strict && npm run validate:evals && npm run lint:md && npm run test:hooks && npm run quality:cross-skill && npm run quality:agents",
"precommit": "npm run ci",
"stats": "node scripts/project-stats.js"
},
"devDependencies": {
"markdownlint-cli2": "^0.13.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/borhen68/SkillEngine.git"
},
"license": "MIT",
"keywords": [
"ai",
"agent",
"skills",
"claude",
"cursor",
"engineering",
"workflow",
"best-practices"
]
}