Consolidate changelog to v1.1.0, add GitHub link, universal ZIP README

- Combined all post-v1.0 changelog entries into single v1.1.0
- Updated version to 1.1.0 in package.json, plugin.json, marketplace.json
- Added GitHub icon link to hero top-right
- Added README.txt to universal ZIP (macOS hides dotfile-only folders)
- Added versioning instructions to CLAUDE.md

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Paul Bakaus
2026-03-04 14:49:49 -08:00
co-authored by Claude Opus 4.6
parent 0981be5ba5
commit 2239279fd7
8 changed files with 75 additions and 31 deletions
+18
View File
@@ -154,6 +154,24 @@ function assembleUniversal(distDir) {
}
}
// Add a visible README so macOS users don't see an empty folder
// (all provider dirs are dotfiles, hidden by default in Finder)
fs.writeFileSync(path.join(universalDir, 'README.txt'),
`Impeccable — Design fluency for AI harnesses
https://impeccable.style
This folder contains skills for all supported tools:
.cursor/ → Cursor
.claude/ → Claude Code
.gemini/ → Gemini CLI
.codex/ → Codex CLI
.agents/ → VS Code Copilot, Antigravity
To install, copy the relevant folder(s) into your project root.
These are hidden folders (dotfiles) — press Cmd+Shift+. in Finder to see them.
`);
console.log(`✓ Assembled universal directory (${providerMappings.length} providers)`);
}