chore: CREDITS, bin entrypoint, cross-platform hook, CI verify, plugin fixes#24
Merged
KailasMahavarkar merged 1 commit intomainfrom Apr 10, 2026
Merged
Conversation
…lugin fixes - CREDITS.md: acknowledge obra/superpowers (MIT) for enforcement pattern - README.md: add Acknowledgements section + CREDITS link; architecture note for bin/ - bin/hyperstack.mjs: Node wrapper that boots src/index.ts via tsx (replaces dist/index.js as bin target) - hooks/session-start.mjs: cross-platform SessionStart hook replacing bash-only script - hooks/hooks.json + hooks-cursor.json: point to session-start.mjs - install.md: update local install instructions to use bin/hyperstack.mjs - package.json: move tsx to prod deps, add test script, update bin entrypoint - .github/workflows/publish.yml: add verify job (matrix: 3 OS × 3 Node versions) before Docker push - tests/: initial test suite for generator and workflow behaviour - fix(designer): component name extraction preserves multi-word names - fix(lenis): useReducedMotion SSR-safe with useEffect + event listener - fix(motion): correct component signatures for stagger, exit, layout variants; fix useEffect dep array - fix(reactflow): inline store code instead of comment block; add missing xyflow type imports Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
KailasMahavarkar
added a commit
that referenced
this pull request
Apr 14, 2026
…lugin fixes (#24) - CREDITS.md: acknowledge obra/superpowers (MIT) for enforcement pattern - README.md: add Acknowledgements section + CREDITS link; architecture note for bin/ - bin/hyperstack.mjs: Node wrapper that boots src/index.ts via tsx (replaces dist/index.js as bin target) - hooks/session-start.mjs: cross-platform SessionStart hook replacing bash-only script - hooks/hooks.json + hooks-cursor.json: point to session-start.mjs - install.md: update local install instructions to use bin/hyperstack.mjs - package.json: move tsx to prod deps, add test script, update bin entrypoint - .github/workflows/publish.yml: add verify job (matrix: 3 OS × 3 Node versions) before Docker push - tests/: initial test suite for generator and workflow behaviour - fix(designer): component name extraction preserves multi-word names - fix(lenis): useReducedMotion SSR-safe with useEffect + event listener - fix(motion): correct component signatures for stagger, exit, layout variants; fix useEffect dep array - fix(reactflow): inline store code instead of comment block; add missing xyflow type imports Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
bin/src/index.tsviatsx. Replacesdist/index.jsas the published bin target - no build step needed.session-startscript. Works on Windows, macOS, and Linux.node session-start.mjsbin/hyperstack.mjstsxfrom devDeps to deps (required at runtime via bin), addtestscript, update bin entrypointverifyjob (matrix: ubuntu/macos/windows × Node 18/20/24) that runs tests + type-check before the Docker push jobuseReducedMotionrewritten to be SSR-safe usinguseEffect+addEventListeneruseEffectmissinganimatein dep arrayTest plan
npm installsucceedsnode bin/hyperstack.mjsstarts the MCP servernpm testruns without errorsnpm run build(tsc --noEmit) passes🤖 Generated with Claude Code