Releases: mirekondro/The-Pre-Flight-Check
v1.4.0
What's Changed
- chore(release): bump Homebrew + Scoop to v1.3.0 by @mirekondro in #16
Full Changelog: v1.3.0...v1.4.0
v1.3.0
What's Changed
- chore(release): bump Homebrew + Scoop to v1.2.2 by @mirekondro in #15
Full Changelog: v1.2.2...v1.3.0
v1.2.2
What's Changed
- chore(release): bump Homebrew + Scoop to v1.2.1 by @mirekondro in #14
Full Changelog: v1.2.1...v1.2.2
v1.2.1
What's Changed
- chore(release): fill in v1.2.0 sha256 hashes by @mirekondro in #6
- fix(brew): correct v1.2.0 tarball sha256 to value Homebrew sees by @mirekondro in #7
- fix(ci): installer-smoke uses empty tempdir + Windows Unicode encoding in CLI by @mirekondro in #8
Full Changelog: v1.2.0...v1.2.1
v1.2.0 — Package managers + Claude plugin marketplace
pre-flight-check is now installable via every major package manager — and as a Claude Code plugin.
Install (pick one)
macOS / Linux — Homebrew
brew tap mirekondro/pre-flight-check https://github.com/mirekondro/The-Pre-Flight-Check
brew install pre-flight-checkWindows — Scoop
scoop bucket add pre-flight-check https://github.com/mirekondro/The-Pre-Flight-Check
scoop install pre-flight-checkAny platform — pipx
pipx install git+https://github.com/mirekondro/The-Pre-Flight-Check.git@v1.2.0Claude Code plugin marketplace
claude plugin marketplace add mirekondro/The-Pre-Flight-Check
claude plugin install pre-flight-checkOne-line installers (still supported)
# macOS / Linux
curl -fsSL https://raw.githubusercontent.com/mirekondro/The-Pre-Flight-Check/main/install.sh | bash
# Windows
irm https://raw.githubusercontent.com/mirekondro/The-Pre-Flight-Check/main/install.ps1 | iexWhat's new in v1.2.0
- ✨ Python package —
pip install pre-flight-checkships a proper CLI:run,init,uninstall,list-tools,version - 🍺 Homebrew formula —
brew install pre-flight-check - 🪣 Scoop bucket —
scoop install pre-flight-check - 🔌 Claude Code plugin marketplace —
claude plugin install pre-flight-check - 📋 CLAUDE.md for contributors using Claude Code to work on this repo
- 📐 README v2 — cleaner design, install matrix front and center, dropped emoji art
Then use it
pre-flight-check init --tool claude # or cursor, codex, gemini, copilot, …
pre-flight-check init --tool all --project # install for every supported AI tool
pre-flight-check run # run the gate manuallyCoverage
10 AI coding tools supported natively: Claude Code · OpenAI Codex · Gemini CLI · Cursor · GitHub Copilot · Windsurf · Cline · Kiro · Roo Code · Agent Skills standard.
Backward compatibility
None broken. All v1.0.0 and v1.1.0 install paths continue to work.
Verification
The wheel and sdist for this release are signed by SHA256:
pre_flight_check-1.2.0-py3-none-any.whl→7fd7cd24edb072c12566e809c5f0bc944a2984e899b758183d219db1b4d1d96cpre_flight_check-1.2.0.tar.gz→21fa0ce5abccf732502e4201676221a7618da3fd4201c7aea4fa11a933f33392
Full changelog: v1.1.0...v1.2.0
What's Changed
- ci: fix PSScriptAnalyzer false-positive on Write-Host by @mirekondro in #3
- ci: surface PowerShell warnings without failing the job by @mirekondro in #4
- v1.2.0 — Package managers (pipx/brew/scoop), Claude plugin marketplace, README v2 by @mirekondro in #5
Full Changelog: v1.1.0...v1.2.0
What's Changed
- ci: fix PSScriptAnalyzer false-positive on Write-Host by @mirekondro in #3
- ci: surface PowerShell warnings without failing the job by @mirekondro in #4
- v1.2.0 — Package managers (pipx/brew/scoop), Claude plugin marketplace, README v2 by @mirekondro in #5
Full Changelog: v1.1.0...v1.2.0
v1.1.0 — Multi-tool support
pre-flight-check now ships native adapters for 10 AI coding agents. The pipeline engine, fail-fast protocol, and quality gates are identical across all tools — only the delivery format differs.
What's new
The skill is now universally available as a native rule/instruction file for:
- 🤖 Claude Code —
.claude/skills/pre-flight-check/ - ⚡ OpenAI Codex —
AGENTS.mdat repo root - 💎 Gemini CLI —
GEMINI.md+gemini-extension.json - 🪄 Cursor —
.cursor/rules/pre-flight-check.mdc - 🐙 GitHub Copilot —
.github/copilot-instructions.md - 🌊 Windsurf —
.windsurf/rules/pre-flight-check.md - 🤖 Cline —
.clinerules/pre-flight-check.md - 🦊 Kiro —
.kiro/steering/pre-flight-check.md - 🦘 Roo Code —
.roo/rules/pre-flight-check.md - 🌐 Agent Skills standard —
.agents/skills/pre-flight-check/(cross-tool)
Installer
The installer is now a multi-tool dispatcher:
# Single tool
curl -fsSL https://raw.githubusercontent.com/mirekondro/The-Pre-Flight-Check/main/install.sh \
| bash -s -- --tool cursor --project
# All ten tools at once
curl -fsSL https://raw.githubusercontent.com/mirekondro/The-Pre-Flight-Check/main/install.sh \
| bash -s -- --tool all --project
# See the full list
bash install.sh --list-toolsPowerShell uses the same flags as -Tool, -Project, -Force, etc.
Backward compatibility
bash install.sh (no flags) still defaults to --tool claude --global — identical to v1.0.0 behavior. All existing one-liners in the wild continue to work.
Breaking changes
None.
Coverage tip
Most modern agents (Copilot Coding Agent, Windsurf, Kiro, Codex) read AGENTS.md at the repo root as a fallback. Shipping --tool codex alone gives you baseline coverage across a wide swath of the ecosystem.
Full changelog: v1.0.0...v1.1.0
v1.0.0 — Initial release
First public release of pre-flight-check — a Claude Code skill that runs a fail-fast quality gate pipeline (Typecheck → Lint → Test → Security Audit) before your agent is allowed to declare a task done or commit code.
Install
macOS / Linux:
curl -fsSL https://raw.githubusercontent.com/mirekondro/The-Pre-Flight-Check/main/install.sh | bashWindows:
irm https://raw.githubusercontent.com/mirekondro/The-Pre-Flight-Check/main/install.ps1 | iexWhat's included
- Auto-detection of Node.js (npm/pnpm/yarn) and Python (poetry/pip) projects
- 4 sequential quality gates with structured Markdown output for LLM consumption
- Strict
SKILL.mdprotocol that forbids the agent from suppressing errors - Cross-platform installers with
--global/--project/--dirscopes - Example fixtures demonstrating TYPECHECK failure format
- Full contribution guide + GitHub Issue Forms + CI