check-and-commit

Run build, generation, i18n, typecheck, unit tests, and app build checks before committing and pushing.

1|2|Updated Apr 12, 2026
One-click install
npx skills add https://github.com/matchojecki/logistiko-celny --skill check-and-commit-matchojecki
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: check-and-commit
Source: https://github.com/matchojecki/logistiko-celny/tree/main/.ai/skills/check-and-commit
Command: npx skills add https://github.com/matchojecki/logistiko-celny --skill check-and-commit-matchojecki

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Verifies that a code branch is ready for release by performing a comprehensive, CI-style verification across the repository, including build, generation, i18n synchronization, typechecking, unit tests, and an app build.

Core Features & Use Cases

  • End-to-end gate verification across multiple packages before publishing.
  • Lightweight i18n drift repairs and sync checks to keep locales aligned.
  • Safe commit and push workflows that only occur after all verification gates succeed.

Quick Start

Run this skill on your feature branch to automatically verify gates, repair obvious i18n issues, and push when all checks pass.

Frequently Asked Questions about check-and-commit

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run build, typecheck, and tests before pushing a git branch?

You can verify a branch before pushing by running build, typecheck, unit tests, and i18n checks in a defined order. This workflow commits and pushes only when all verification gates pass green.

What is the best way to automate i18n drift checks before a commit?

Automating i18n drift checks before a commit involves running scope-aware synchronization across your locales. This skill repairs lightweight i18n drift and ensures locale alignment before progressing to the push phase.

Can I use this branch verification workflow on a monorepo with multiple packages?

Yes, this branch verification workflow supports typical monorepo or multi-package repositories. It applies scope-aware fixes across multiple packages and handles end-to-end gate verification before publishing.

How does a non-interactive commit and push work after CI checks pass?

A non-interactive commit and push executes automatically once all verification gates succeed. The workflow runs build, typecheck, and tests in a defined order, performing the push only if every gate reports green results.

Do I need yarn or npm installed to run pre-publish verification gates?

Yes, you need project tooling such as yarn or npm installed to run pre-publish verification gates. The workflow relies on these package managers to execute build, generation, and unit test commands in your repository.