# Verify After Pushing

> Use when after pushing commits to remote repository

- Skill: `viteinfinite/verify-after-pushing` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add viteinfinite/verify-after-pushing`
- Raw SKILL.md: https://api.skillmd.com/api/skills/viteinfinite/verify-after-pushing/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: viteinfinite (https://skillmd.com/u/viteinfinite)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/viteinfinite/verify-after-pushing

---

# Verify After Pushing

## Overview
CRITICAL: Always verify the following checklist after pushing to remote.

## Checklist

- [ ] `npx-test.sh` does not produce failures
- [ ] `npm-install-test.sh` does not produce failures

## Why This Matters
Git push succeeding does not mean the package actually works. These scripts verify the package is installable and functional.

## Common Mistakes
- Assuming successful push means package works
- Skipping verification after "git push succeeded"
- Closing work without testing package installation

