merge: incorporate origin/main into community-mode branch

Conflicts resolved:
- CHANGELOG.md: both sides added [0.13.0.0] entries — bumped our
  community-mode entry to [0.14.0.0], kept main's design tools
  entry as [0.13.0.0] below it
- VERSION + package.json: bumped to 0.14.0.0 to sit above main's 0.13.0.0

Main brought in: design binary ($D) with 13 commands, /design-shotgun
skill, comparison board, design memory, visual diffing, gallery timeline,
screenshot evolution, responsive variants, design-to-code prompts.

Also fixed: zsh glob safety in design-shotgun/SKILL.md.tmpl (added
setopt +o nomatch guard to ls variant-*.png).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Garry Tan
2026-03-27 19:52:08 -07:00
72 changed files with 7451 additions and 752 deletions
+3 -2
View File
@@ -1,6 +1,6 @@
{
"name": "gstack",
"version": "0.13.0.0",
"version": "0.14.0.0",
"description": "Garry's Stack — Claude Code skills + fast headless browser. One repo, one install, entire AI engineering workflow.",
"license": "MIT",
"type": "module",
@@ -8,7 +8,8 @@
"browse": "./browse/dist/browse"
},
"scripts": {
"build": "bun run gen:skill-docs; bun run gen:skill-docs --host codex; bun build --compile browse/src/cli.ts --outfile browse/dist/browse && bun build --compile browse/src/find-browse.ts --outfile browse/dist/find-browse && bun build --compile bin/gstack-global-discover.ts --outfile bin/gstack-global-discover && bash browse/scripts/build-node-server.sh && git rev-parse HEAD > browse/dist/.version && rm -f .*.bun-build || true",
"build": "bun run gen:skill-docs; bun run gen:skill-docs --host codex; bun build --compile browse/src/cli.ts --outfile browse/dist/browse && bun build --compile browse/src/find-browse.ts --outfile browse/dist/find-browse && bun build --compile design/src/cli.ts --outfile design/dist/design && bun build --compile bin/gstack-global-discover.ts --outfile bin/gstack-global-discover && bash browse/scripts/build-node-server.sh && git rev-parse HEAD > browse/dist/.version && git rev-parse HEAD > design/dist/.version && rm -f .*.bun-build || true",
"dev:design": "bun run design/src/cli.ts",
"gen:skill-docs": "bun run scripts/gen-skill-docs.ts",
"dev": "bun run browse/src/cli.ts",
"server": "bun run browse/src/server.ts",