project-tooling

Featured

gh, vercel, supabase, render CLI and deployment platform setup

Code & Development 694 stars 57 forks Updated today MIT

Install

View on GitHub

Quality Score: 98/100

Stars 20%
95
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Project Tooling Skill Standard CLI tools for project infrastructure management. --- ## Required CLI Tools Before starting any project, verify these tools are installed and authenticated: ### 1. GitHub CLI (gh) ```bash # Verify installation gh --version # Verify authentication gh auth status # If not authenticated: gh auth login ``` ### 2. Vercel CLI ```bash # Verify installation vercel --version # Verify authentication vercel whoami # If not authenticated: vercel login ``` ### 3. Supabase CLI ```bash # Verify installation supabase --version # Verify authentication (check if linked to a project or logged in) supabase projects list # If not authenticated: supabase login ``` ### 4. Render CLI (optional - for Render deployments) ```bash # Verify installation render --version # If using Render API instead: # Ensure RENDER_API_KEY is set in environment ``` --- ## Validation Script Run this at project initialization to verify all tools: ```bash #!/bin/bash # scripts/verify-tooling.sh set -e echo "Verifying project tooling..." # GitHub CLI if command -v gh &> /dev/null; then if gh auth status &> /dev/null; then echo "✓ GitHub CLI authenticated" else echo "✗ GitHub CLI not authenticated. Run: gh auth login" exit 1 fi else echo "✗ GitHub CLI not installed. Run: brew install gh" exit 1 fi # Vercel CLI if command -v vercel &> /dev/null; then if vercel whoami &> /dev/null; then echo "✓ Vercel CLI authenticated" else echo "✗ Verce...

Details

Author
alinaqi
Repository
alinaqi/maggy
Created
5 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category