-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.3 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
{
"name": "ultimate-design-skill",
"version": "0.1.0",
"description": "OKF-based design skill for contract-driven AI design.",
"type": "module",
"private": false,
"homepage": "https://aa2246740.github.io/ultimate-design/",
"license": "MIT",
"bin": {
"ultimate-design-install-skill": "./scripts/install-agent-skill.mjs"
},
"scripts": {
"flow-check": "python3 skill/ultimate-design/scripts/flow_check.py skill/ultimate-design",
"install:codex": "node scripts/install-agent-skill.mjs --target codex",
"install:claude": "node scripts/install-agent-skill.mjs --target claude-code",
"install:pi": "node scripts/install-agent-skill.mjs --target pi-agent",
"install:all": "node scripts/install-agent-skill.mjs --target all",
"check-integrations": "node scripts/check-agent-integrations.mjs",
"scan-release": "! rg -n \"(/Users/|api[_-]?key|secret|password|OPENAI|ANTHROPIC)\" . --glob '!node_modules/**' --glob '!package.json'",
"score-okf": "node benchmarks/score-okf-run.mjs"
},
"pi": {
"skills": [
"skill/ultimate-design"
]
},
"keywords": [
"codex-skill",
"claude-code-skill",
"pi-agent-skill",
"agent-skills",
"design",
"okf",
"design-system",
"design-to-code",
"frontend",
"presentation",
"visual-verification"
]
}