buildcheck-dev

Monitor Docker container logs and statuses to verify development build health.

5|Updated Aug 23, 2025
One-click install
npx skills add https://github.com/Rzyfront/Vendix --skill buildcheck-dev
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: buildcheck-dev
Source: https://github.com/Rzyfront/Vendix/tree/main/skills/buildcheck-dev
Command: npx skills add https://github.com/Rzyfront/Vendix --skill buildcheck-dev

SYSTEM DOCUMENTATION & REQUIREMENTS

## What problem does it solve?

This Skill provides a structured approach to verify that code changes do not introduce build regressions by systematically inspecting Docker container logs and statuses during development.

## Core Features & Use Cases

  • Watch-mode log verification: tail container logs to detect compile-time and runtime errors as changes are made.
  • Container health checks: ensure all services (backend, frontend, database) are running before marking work complete.
  • Troubleshooting workflow: concise steps to identify and fix issues from logs and container status.

### Quick Start

Start the environment and monitor logs using the following steps:

docker compose up -d --build docker ps docker logs --tail 40 vendix_backend docker logs --tail 40 vendix_frontend docker logs --tail 40 vendix_postgres

Frequently Asked Questions about buildcheck-dev

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

FAQPage Schema
How do I verify Docker container logs for build errors during active development?

You can verify Docker container logs for build errors by running docker compose up in watch mode and tailing logs for backend, frontend, and database services to catch compile-time issues. This systematic inspection ensures code changes do not introduce regressions.

What's the best way to monitor Docker Compose services for runtime issues while coding?

The best way to monitor Docker Compose services is by tailing container logs and checking service statuses to confirm the backend, frontend, and database are running without errors before marking work complete.

Do I need Docker Compose to check development build health across my stack?

Yes, you need Docker with Compose to check development build health, as this verification process requires access to running project containers to perform log tailing, status checks, and zero-error verification.

How does watch-mode log inspection work for catching compile-time issues?

Watch-mode log inspection works by continuously tailing active Docker container logs to detect compile-time and runtime errors as code changes are made, providing immediate feedback on build regressions.

What steps should I follow to troubleshoot runtime errors from container statuses?

To troubleshoot runtime errors from container statuses, use docker ps to check running services, tail logs with docker logs --tail 40 for specific containers, and follow a concise workflow to identify and fix issues before completing work.