picasso-skill 1.5.0 → 1.5.1
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/bin/install.mjs +11 -0
- package/package.json +1 -1
- package/skills/picasso/SKILL.md +7 -0
package/bin/install.mjs
CHANGED
|
@@ -23,6 +23,8 @@ if (command === "help" || command === "--help" || command === "-h") {
|
|
|
23
23
|
npx picasso-skill --skill-only Install skill only (no agent)
|
|
24
24
|
npx picasso-skill --cursor Install skill for Cursor
|
|
25
25
|
npx picasso-skill --codex Install skill for Codex
|
|
26
|
+
npx picasso-skill --openclaw Install skill for OpenClaw (project skills/)
|
|
27
|
+
npx picasso-skill --openclaw -g Install skill for OpenClaw globally (~/.openclaw/skills/)
|
|
26
28
|
npx picasso-skill --agents Install to .agents/skills/
|
|
27
29
|
npx picasso-skill --path DIR Install to a custom directory
|
|
28
30
|
|
|
@@ -49,6 +51,15 @@ if (isGlobal) {
|
|
|
49
51
|
} else if (args.includes("--codex")) {
|
|
50
52
|
skillDir = join(home, ".codex", "skills", "picasso");
|
|
51
53
|
agentDir = null;
|
|
54
|
+
} else if (args.includes("--openclaw")) {
|
|
55
|
+
// OpenClaw: skills live in workspace skills/ dir or ~/.openclaw/skills/
|
|
56
|
+
const openclawGlobal = args.includes("--global") || args.includes("-g");
|
|
57
|
+
if (openclawGlobal) {
|
|
58
|
+
skillDir = join(home, ".openclaw", "skills", "picasso");
|
|
59
|
+
} else {
|
|
60
|
+
skillDir = join(process.cwd(), "skills", "picasso");
|
|
61
|
+
}
|
|
62
|
+
agentDir = null; // OpenClaw uses SOUL.md, not agents/
|
|
52
63
|
} else if (args.includes("--agents")) {
|
|
53
64
|
skillDir = join(process.cwd(), ".agents", "skills", "picasso");
|
|
54
65
|
agentDir = null;
|
package/package.json
CHANGED
package/skills/picasso/SKILL.md
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: picasso
|
|
3
|
+
version: 1.5.0
|
|
3
4
|
description: >
|
|
4
5
|
The ultimate frontend design and UI engineering skill. Use this whenever the user asks to build, design, style, or improve any web interface, component, page, application, dashboard, landing page, artifact, poster, or visual output. Covers typography, color systems, spatial design, motion/animation, interaction design, responsive layouts, sound design, haptic feedback, icon systems, generative art, theming, React best practices, and DESIGN.md system generation. Also use when the user asks to audit, critique, polish, simplify, animate, or normalize a frontend. Triggers on any mention of "make it look good," "fix the design," "UI," "UX," "frontend," "component," "landing page," "dashboard," "artifact," "poster," "design system," "theme," "animation," "responsive," or any request to improve visual quality. Use this skill even when the user does not explicitly ask for design help but the task involves producing a visual interface.
|
|
6
|
+
metadata:
|
|
7
|
+
openclaw:
|
|
8
|
+
always: false
|
|
9
|
+
skillKey: picasso
|
|
10
|
+
emoji: "\U0001F3A8"
|
|
11
|
+
homepage: https://github.com/viperrcrypto/picasso
|
|
5
12
|
---
|
|
6
13
|
|
|
7
14
|
# Picasso
|