2 pointsby bulyaki4 hours ago1 comment
  • bulyaki4 hours ago
    Hi HN,

    I forked Garry Tan's [gstack](https://github.com/garrytan/gstack) and adapted it for C++ development. The original is brilliant for web dev (Playwright, npm, React). I rebuilt it for the C++ toolchain.

    What changed:

    - Browser automation → cmake/make/ninja build system - Playwright QA → ctest + GTest/Catch2 - ESLint → clang-tidy/cppcheck - Browser console errors → ASan/UBSan/TSan/valgrind reports

    What it does:

    13 specialist AI roles: - `/review` — Pre-landing PR review (memory safety, UB, data races) - `/qa` — Build → test → analyze → sanitizers → fix → re-verify - `/ship` — One-command ship with PR creation - Plus architecture planning, design audit, CEO review, etc.

    My additions (v0.7.0):

    - n8n integration for GitHub → Slack → Jira automation - MCP server wrapper for external AI agents - Pre-built workflows for common operations

    Try it:

    ```bash git clone https://github.com/bulyaki/gstackplusplus.git ~/.claude/skills/gstackplusplus cd ~/.claude/skills/gstackplusplus && ./setup ```

    Repo: https://github.com/bulyaki/gstackplusplus

    Would love feedback from the C++ community!