mirror of
https://github.com/Nutlope/hallmark.git
synced 2026-08-14 12:35:33 +02:00
The skills CLI copies everything under the directory containing SKILL.md. With SKILL.md at the repo root, installs were pulling in docs/, site/, package.json, README, ROADMAP, vercel.json, LICENSE. Moving the skill into skills/hallmark/ scopes the install to just SKILL.md + references/. The CLI's priority search hits skills/ first, so `npx skills add nutlope/hallmark` is unchanged. Updated README install paths, package.json (entry/references/files), and the internal links that crossed the new boundary.
36 lines
707 B
JSON
36 lines
707 B
JSON
{
|
|
"name": "hallmark",
|
|
"version": "1.0.0",
|
|
"description": "A design skill for AI coding assistants. Makes the UIs they generate look made, not generated. Powered by Together AI.",
|
|
"keywords": [
|
|
"claude",
|
|
"claude-code",
|
|
"cursor",
|
|
"codex",
|
|
"skill",
|
|
"design",
|
|
"ui",
|
|
"anti-ai-slop",
|
|
"typography",
|
|
"oklch",
|
|
"together-ai"
|
|
],
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"files": [
|
|
"skills"
|
|
],
|
|
"skill": {
|
|
"entry": "skills/hallmark/SKILL.md",
|
|
"references": "skills/hallmark/references",
|
|
"harnesses": [
|
|
"claude-code",
|
|
"cursor",
|
|
"codex"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"serve": "python3 -m http.server --directory site 4173"
|
|
}
|
|
}
|