Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
40 prioritized NestJS best practices across architecture, DI, security, performance, testing, and microservices.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
scripts/build.sh
1#!/bin/bash23# Build script for generating AGENTS.md4# Usage: ./build.sh56SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"7cd "$SCRIPT_DIR"89# Check if ts-node is available10if command -v npx &> /dev/null; then11echo "Running build with ts-node..."12npx ts-node build-agents.ts13else14echo "Error: npx not found. Please install Node.js."15exit 116fi17