softr-vibe-coding 1.3.0 → 1.3.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/package.json +3 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,40 @@
1
+ # Changelog
2
+
3
+ All notable changes to this skill are documented here. Versions follow [Semantic Versioning](https://semver.org/), and the format draws from [Keep a Changelog](https://keepachangelog.com/).
4
+
5
+ Entries from 1.3.1 onward are generated automatically from git commit subjects between version bumps (see `.github/workflows/publish.yml`). Entries before 1.3.1 were backfilled by hand from the existing commit history.
6
+
7
+ ## [1.3.2] - 2026-05-21
8
+ - Fix CHANGELOG anchor detection in publish workflow; bump to 1.3.2
9
+
10
+ ## [1.3.1] - 2026-05-21
11
+ - Add CHANGELOG.md with auto-generation on publish (workflow now prepends a new entry from commit subjects between version bumps and commits the updated CHANGELOG.md back to main with `[skip ci]`)
12
+ - Backfill CHANGELOG.md entries for 1.0.0 → 1.3.0 from existing git history
13
+ - Add CHANGELOG.md to the npm tarball via package.json `files`
14
+
15
+ ## [1.3.0] - 2026-05-21
16
+ - Cross-link Airtable data source ↔ automation scripts (`datasources/airtable.md` and `datasources/writing.md` now point to `references/airtable-automations.md`)
17
+ - Refresh README's "What's Included" tree: add `airtable-automations.md` and `common-patterns.md`, update stale line counts, fix version badge
18
+
19
+ ## [1.2.0] - 2026-05-20
20
+ - Add `building-design-md` companion section to SKILL.md and README
21
+ - Add install notes for the two-skill brand-to-blocks workflow
22
+
23
+ ## [1.1.0] - 2026-05-20
24
+ - Package as an npm CLI: `npx softr-vibe-coding@latest init` installs into `~/.claude/skills/softr-vibe-coding/` and wires a `SessionStart` hook for auto-updates
25
+ - Add `references/airtable-automations.md` — Airtable Automation Scripts, Scripting Extension, and Airtable formulas (with `input.config()` / `input.secret()` rules, the `output` API divergence between environments, `updateRecordsAsync` duplicate-id rejection, batch-50 cap, field-ID-not-name discipline)
26
+ - Add detail-page back-button rule to placement Q&A; add Block Placement & Page Spacing section to SKILL.md; add brand-source detection step (DESIGN.md handoff)
27
+ - Document `useRecordUpdate.mutate()` parser requirements: method must be `.mutate()` not `.mutateAsync()`, payload must be nested `{ recordId, fields: {...} }` not flat
28
+ - Document `useNavigationSetting`'s `openIn` enum (`SELF` / `TAB` / `MODAL` only) and the canonical `<NavigationAction>` + `<Button asChild>` pattern, with per-action-type config requirements
29
+ - Document `OPEN_CHAT` data-source requirement (button-only helper blocks with no data source cause `chat/prepare` 500s)
30
+ - Document Global Data Restrictions as a separate permissions layer above block-level visibility
31
+ - Add anti-patterns: sub-components defined inside `Block()` (focus loss), brand fonts inside shadow DOM (need inline application), double-painted background on block wrapper, `document.getElementById` / `querySelector` failing silently inside blocks
32
+ - Verify and document Airtable column-name-only constraint with rename mitigations
33
+ - Codify three common Vibe Coding patterns and the network-inspector schema-discovery + AI-paste workflow
34
+ - Verify public Softr Database REST API write path
35
+ - Flatten repo layout: move `SKILL.md` and skill content to repo root for direct `~/.claude/skills/softr-vibe-coding/` consumption
36
+ - Add `.gitignore` covering sensitive and noise files
37
+
38
+ ## [1.0.0] - 2026-04-14
39
+ - Initial release of the Softr Vibe Coding Block Claude Skill
40
+ - Full SKILL.md workflow, ui-ux-guidelines.md, references (helper-blocks, advanced-integrations, anti-patterns, quick-reference), data source guides for all 14 supported sources
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "softr-vibe-coding",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
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"
@@ -12,7 +12,8 @@
12
12
  "references/",
13
13
  "datasources/",
14
14
  "LICENSE",
15
- "README.md"
15
+ "README.md",
16
+ "CHANGELOG.md"
16
17
  ],
17
18
  "keywords": [
18
19
  "claude",