softr-vibe-coding 1.1.0 → 1.2.0
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/README.md +21 -0
- package/SKILL.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -84,6 +84,27 @@ Build me a Softr Vibe Coding block that shows a team directory with cards
|
|
|
84
84
|
|
|
85
85
|
---
|
|
86
86
|
|
|
87
|
+
## Companion skill — `building-design-md`
|
|
88
|
+
|
|
89
|
+
This skill is **Step 2** of a two-skill brand-to-blocks pipeline:
|
|
90
|
+
|
|
91
|
+
```
|
|
92
|
+
New client → building-design-md (brand → DESIGN.md) → softr-vibe-coding (DESIGN.md → JSX blocks) → shipped Softr app
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
The upstream skill is [`building-design-md`](https://github.com/leo-softr/design-md-extractor-skill), which extracts a brand foundation (colors, typography, voice) from a website URL or brand guide into a portable `DESIGN.md` file. When that file exists in your project folder, this skill picks it up automatically and applies the brand tokens throughout every block it generates — no re-asking about colors or fonts.
|
|
96
|
+
|
|
97
|
+
**Install both for the full workflow:**
|
|
98
|
+
|
|
99
|
+
```bash
|
|
100
|
+
npx building-design-md@latest init
|
|
101
|
+
npx softr-vibe-coding@latest init
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
Both auto-update on every Claude Code session. Skip the first one if you only want default Softr styling.
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
87
108
|
## Updating
|
|
88
109
|
|
|
89
110
|
**If you used the recommended `npx ... init` install**, updates are automatic — the SessionStart hook pulls the latest published version on every Claude Code session, so you're always at most one session behind the latest release.
|
package/SKILL.md
CHANGED
|
@@ -40,7 +40,7 @@ You generate complete, production-ready Softr Vibe Coding blocks as JSX files. A
|
|
|
40
40
|
- **If `./DESIGN.md` is NOT found:** Tell the user:
|
|
41
41
|
|
|
42
42
|
> "No DESIGN.md found in this project. Three options:
|
|
43
|
-
> A. **Set up a brand foundation first** —
|
|
43
|
+
> A. **Set up a brand foundation first** — use the `building-design-md` skill to extract brand tokens from the client's website or a brand guide, then come back here. (Recommended for client work. Not installed? Run `npx building-design-md@latest init` in your terminal.)
|
|
44
44
|
> B. **Quick brand override** — paste the brand's primary color, accent color, and font name now. I'll apply just those.
|
|
45
45
|
> C. **Use the default Softr style** — primary `#386AF5`, accent `#FCB500`, Inter font."
|
|
46
46
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "softr-vibe-coding",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Claude Code skill for generating production-ready Softr Vibe Coding blocks (JSX). Installs into ~/.claude/skills/ and auto-updates on each Claude Code session.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"softr-vibe-coding": "./bin/cli.js"
|