Alternatives
Products that do what GoMask as Code does
Test data as code: YAML rules, Git versioned, & CI/CD ready
- 1

- 2CC
We're two engineers that got fed up with context switching. Why do we need to do a git push, open a browser tab, wait for some task to actually start, bite nails (or read HackerNews) for 10 minutes or more while dependencies are being installed for the 100th time and finally end up with an invalid YAML error. And for some reason this usually happens in the final stage of the pipeline leading up to the inevitable git commits "Fixed", "Fixed again", "Test", "Really fixed this time". We can do better. We set out to build Zippy. A CI/CD system that works from your terminal. No context…
Mar 2026 · zippy.sh
- 3OS
Hey Everyone! Avi and I (in the current YC S25 Batch) noticed how fragmented crypto compliance is with rules changing constantly, vary by region, and force developers and legal teams into a scramble. So we hacked together a prototype framework that generates a “guardrail” smart contract which: - Hooks into your KYC provider - Enforces rules defined a simple compliance.yaml file - Automatically blocks users you can't legally serve When regulations shift (new blocked country, updated KYC threshold, etc.), just update your YAML and redeploy with no smart contract rewrites. Audit prep also…
2025 · github.com
- 4GG
2018 · github.com
- 5CA
Hello HN! I built a pre-commit code scanner that checks your staged changes for security vulnerabilities every time you run 'git commit'. I am an inexperienced programmer and this is my first personal project. Any feedback, positive or negative, big or small, relevant or not, would be greatly helpful and appreciated! The tool requires Gitleaks and Python to run, you will also need to use your own AI API key, which I understand is a big setup friction. You can check out my demo video instead if that is more convenient: https://youtu.be/ZYe5vWFRTus?si=9Fv8DhTHktwDK4mV Thank you…
Jun 2026 · github.com
- 6GR
2014 · gitframe.com
- 7AG
I built a GitHub app that checks for uncompleted checkboxes within pull request comments and blocks the merge if found. This allows you to treat checkboxes as to-do’s and: * Open pull requests with a to-do list template -> make sure all steps are completed before merging * Leave to-do reminders for yourself as you work on a pull request * Leave to-do reminders for someone else as part of your code review Especially useful for large PRs with collapsed comments.
2024 · github.com
- 8GC
We built a Git-native CLI tool that automates Git branch stacking. Here's why stacking matters and how GX helps: Code review is a notorious bottleneck. You write a large PR, wait for review, get feedback, iterate, and wait again - especially painful across timezones. Meanwhile, you're blocked from shipping dependent changes. Stacking lets you parallelise development and code review by breaking changes into logical and dependent chunks. Current stacking tools will consider each commit its own PR, but GX will automatically group commits into separate stacks while optimising for structural…
2025 · github.com
- 9GA
Easy to run script that allow you to have a report on your compliance to CIS Benchmarks rules. Get the YAML rules from the repository, run the script, and get your results by SMS, Email, Teams, or simply by reading the logs. Currently available for AWS & Azure CIS Benchmarks, else you can check the rules folder in the repository to find rules you want to apply for the next report !
2024 · github.com
- 10LP
This is a small plugin for Simon Willison’s llm utility. It uses staged Git changes and generates a commit message using a LLM. You can do things like: git add . # Stage your changes llm commit # Automatically generate a commit message from the staged diff llm commit --model gpt-4 --max-tokens 150 --temperature 0.8 --yes # Customize model settings (e.g., GPT-4) or skip confirmation
2025 · github.com
- 11GZ
Feb 2026 · github.com
- 12IE
Hi HN! GitSummarize is an open-source devtool that I made this weekend. Given any public GitHub repository it generates high-quality documentation from the codebase using Gemini 2.5 Pro. Specifically, it tries to extract the tribal knowledge, business logic/rules embedded within codebases. Pro Tip: You can replace "hub" with "summarize" in any repository URL to access its documentation. I created this because there was a steep learning curve to understanding some of the open-source codebases out there while getting started with contributing. Having detailed documentation would be…
2025 · gitsummarize.com
- 13GS
Hunk-by-hunk and line-by-line staging for git, designed for building clean commit history! Writing code is messy. Git history doesn't have to be. During development we experiment, refactor, backtrack, and fix mistakes. If every step ends up as a commit, the history becomes noise. A curated history turns that process into a clear sequence of logical changes. git-stage-batch helps you build that history incrementally by letting you stage changes hunk-by-hunk or line-by-line, shaping commits around meaning instead of the order the edits happened.
Apr 2026 · github.com
- 14TA
Tuki is a small, open-source utility that lets you run one-off commands in production through Git, bringing version control and code review to production scripts. I built it after accidentally dropping a production table due to a console typo Key features: - Run scripts through Git PRs instead of direct console access - Built-in auditing via Git history - RBAC through standard Git permissions - Simple setup for non-Kubernetes environments - MIT licensed Demo & more details: https://github.com/hundredwatt/tuki Announcement blog post:…
2024 · github.com
- 15BL
Hello everyone! I am Jan, CTO and one of the creators of Pathway, the real-time data processing framework. I’m excited to share Pathway’s ready-to-use AI Pipelines, configurable with just YAML! These frameworks offer out-of-the-box solutions for AI search, RAG, and more—optimized for real-time indexing and in-memory processing. What makes it simple? YAML templates! The pipeline templates are fully customizable using YAMLs to fit your needs, from changing the data sources to the choice of the LLM model, all without touching Pathway’s Python code. Thanks to the Pathway data processing engine,…
2024 · pathway.com
- 16LA
I built this tool that auto-commits your code when you run an experiment, storing structured metadata in the commit message. A bit like `wandb` but local. There is a small CLI that lets you query for (e.g.) `metrics.accuracy > 0.9`, to find the code state that produced a good results. This is the first release, and there are quite a few planned features if anyone wants to submit a PR.
2025 · github.com
- 17WA
Today you can easily adopt AI coding tools because you have git for branching and rolling back if AI writes bad code. We haven't seen this same capability for data and decided to build it ourselves. Nile is a new kind of data lake, purpose built for using with AI. It can act as your data engineer or data analyst creating new tables and rolling back bad changes in seconds. We support real versions for data, schema, and ETL. We'd love your feedback on any part of what we are building - https://getnile.ai/ What do you think?
Jan 2026
- 18YV
Hi HN, I made a tiny tool called YAML Validator that checks your YAML files with one Docker command — no installs, no setup, no excuses. It does: - Syntax checks - yamllint linting - checkov security scanning - All in one lightweight, zero-config container --------------------------------------------------------- How to use: docker run -v "$(pwd):/data" pooyanazad/yaml-checker Optional alias (for .bashrc / .zshrc): alias ytest='docker run -v "$(pwd):/data" pooyanazad/yaml-checker' Then simply call: ytest sample.yaml YAML powers CI/CD, configs, infra ,and…
Nov 2025
- 19BE
I realised I was working on more parallel tasks with coding agents, but git branches became a huge bottleneck. Tried Git Butler but it just complicated things further. Found git worktrees as a solution but the git API was a bit too complicated for day to day. So thought I'll vibe-code this simple CLI utility to manage the process. It technically works with any setup – claude/codex/gemini + cursor/vim/whatever. Just manages git worktrees inside your repo and sets up your dev environment how you like it. Nothing fancy, just something I built to scratch my own itch. Figured…
2025 · github.com
- 20CC
2016 · gitsense.com
- 21BC
Hey HN, I'm Fedor (solo founder). After ~20 years of watching devs fight Git, I'm building Branching. Branching streams your local edits to teammates in real time - no manual push/pull. It's Git-compatible and works offline. Why you might care - Teams see each other's changes instantly instead of in PR-sized batches - Conflicts surface ASAP while context is fresh (LLM-assisted merge is experimental, off by default) - Same GitHub remote, so no migration Ships today - VSCode extension + desktop app (macOS / Windows / Linux) - 3 small product teams have been using it for 1–6…
2025 · branching.app
- 22

- 23

Ranked by how close each launch is in meaning, then by votes. Refine with a description →