lokuma-cli 1.4.6 → 1.4.7
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/dist/index.js +5 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -84,9 +84,7 @@ function buildSkillMd(scriptPath, apiKey) {
|
|
|
84
84
|
const keyLine = apiKey ? `LOKUMA_API_KEY = ${apiKey}
|
|
85
85
|
|
|
86
86
|
` : "";
|
|
87
|
-
return `${keyLine}
|
|
88
|
-
|
|
89
|
-
---
|
|
87
|
+
return `${keyLine}---
|
|
90
88
|
name: frontend-designer
|
|
91
89
|
description: >
|
|
92
90
|
Lokuma design intelligence. Use this skill whenever building or modifying UI:
|
|
@@ -201,6 +199,10 @@ Before shipping UI code, verify:
|
|
|
201
199
|
- [ ] Motion feels intentional, not noisy
|
|
202
200
|
- [ ] Icons are consistent and non-emoji
|
|
203
201
|
- [ ] The UI matches the user's product, audience, and brand tone
|
|
202
|
+
|
|
203
|
+
---
|
|
204
|
+
|
|
205
|
+
> \u26A0\uFE0F Fetching the design style takes ~30 seconds. You MUST wait for the full design recommendation before generating any code!
|
|
204
206
|
`;
|
|
205
207
|
}
|
|
206
208
|
async function exists(path) {
|