verify-code

Run unit tests, integration tests, type checking, and linting on Python, TypeScript, and JavaScript code.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/EtroxTaran/conductor --skill verify-code-etroxtaran
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: verify-code
Source: https://github.com/EtroxTaran/conductor/tree/main/collection/skills/verify-code
Command: npx skills add https://github.com/EtroxTaran/conductor --skill verify-code-etroxtaran

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates the crucial step of verifying code implementation against defined tests and quality standards, preventing incomplete or buggy code from being merged.

Core Features & Use Cases

  • Automated Testing: Executes pytest for Python or npm test for Node.js projects.
  • Type Checking: Runs npm run typecheck for TypeScript projects.
  • Quality Gate: Ensures all tests pass, type checking succeeds, and linting is clean before marking implementation as complete.
  • Use Case: After an AI implements a new feature, this Skill acts as a final quality assurance step, running all relevant tests to confirm the implementation is correct and robust.

Quick Start

Run the verification commands to check the code quality and test results.

Frequently Asked Questions about verify-code

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

FAQPage Schema
How do I automate code quality checks for Python and TypeScript projects?

Automated verification checks execute unit tests, type checking, and linting to ensure code quality. This Skill runs pytest for Python or npm test and typecheck for TypeScript, preventing buggy code from merging.

Can I run automated tests after an AI implements a new feature?

Yes, you can run automated tests after AI implementation by using this Skill as a final quality assurance step. It executes all relevant tests and type checks to confirm the new feature is robust and correct.

Does the automated verification process support JavaScript and TypeScript?

Yes, automated verification supports JavaScript and TypeScript projects. It runs npm test for testing and npm run typecheck to validate TypeScript types before marking the implementation as complete.

What is the best way to ensure all tests pass before merging code?

The best way to ensure tests pass before merging is to enforce a quality gate executing pytest or npm test. This verification step blocks incomplete code by validating that all tests, types, and linting succeed.

How to execute type checking and linting for Node.js projects automatically?

Execute type checking and linting automatically by running npm run typecheck and test commands. This Skill automates these checks to verify Node.js code meets quality standards before completion.

When do I need to run integration tests and unit tests for my codebase?

You need to run integration and unit tests when verifying newly implemented features before completion. This ensures the code is correct, robust, and adheres to defined quality standards before merging.