Local CI runner with full GitHub Actions parity
The 'commit and pray' workflow for testing CI changes is a recurring complaint in HN dev-tool wishlists. nektos/act is the de facto answer but explicitly lacks concurrency, vars context, and parts of the github context. Demand is for an act successor that targets feature parity, not just docker-in-docker, so workflow changes can be debugged in seconds without polluting commit history.
The hard part isn't docker, it's the GitHub Actions runtime semantics. Steal the act architecture, then close the parity gaps one by one with a conformance test suite vs real Actions. The conformance scoreboard alone is good marketing.
landscape (3 existing solutions)
Anyone solving local CI today either uses act and accepts the gaps, or rewrites pipelines into a CI-agnostic DSL. The gap is the boring one: an act that actually passes the same workflow that GitHub passes, without rewrites.