405+ Tools

STACKSHACK

Free skills, commands, and settings for Claude Code. Build your stack, ship faster.

100% Free
Verified

Showing 50 of 50 commands

🔄
Verifiedgit

Quick Commit

Stage all changes and commit with a message

git add -A && git commit -m "$MESSAGE"
git
0
🔄
Verifiedgit

Push Current Branch

Push current branch to origin

git push -u origin $(git branch --show-current)
git
0
🔄
Verifiedgit

Pull with Rebase

Pull latest changes and rebase local commits

git pull --rebase origin $(git branch --show-current)
git
0
🔄
Verifiedgit

Create Feature Branch

Create and switch to a new feature branch

git checkout -b feature/$NAME
git
0
🔄
Verifiedgit

Merge Main into Current

Merge main/master into current branch

git fetch origin && git merge origin/main
git
0
🔄
Verifiedgit

Stash Changes

Stash all current changes with a message

git stash push -m "$MESSAGE"
git
0
🔄
Verifiedgit

Pop Latest Stash

Apply and remove the latest stash

git stash pop
git
0
🔄
Verifiedgit

Interactive Rebase

Interactively rebase last N commits

git rebase -i HEAD~$COUNT
git
0
🔄
Verifiedgit

Undo Last Commit

Undo last commit but keep changes staged

git reset --soft HEAD~1
git
0
🔄
Verifiedgit

Pretty Git Log

Show commit history in a clean format

git log --oneline --graph --decorate -20
git
0
Verifiedsetup

Create Next.js App

Initialize a new Next.js 14 project with TypeScript

npx create-next-app@latest $NAME --typescript --tailwind --eslint --app --src-dir
nodenpm
0
Verifiedsetup

Create Vite Project

Initialize a new Vite project with React and TypeScript

npm create vite@latest $NAME -- --template react-ts
nodenpm
0
Verifiedsetup

Setup Environment

Copy .env.example to .env.local

cp .env.example .env.local && echo "Created .env.local - please fill in values"
0
Verifiedsetup

Install Dependencies

Install all project dependencies

npm install
nodenpm
0
Verifiedsetup

Create React Component

Generate a new React component with TypeScript

mkdir -p src/components/$NAME && echo "export function $NAME() { return <div>$NAME</div> }" > src/components/$NAME/index.tsx
node
0
Verifiedsetup

Initialize Prisma

Setup Prisma ORM with PostgreSQL

npx prisma init --datasource-provider postgresql
nodenpm
0
Verifiedsetup

Setup Git Hooks

Install Husky for Git hooks with lint-staged

npx husky-init && npm install && npx husky add .husky/pre-commit "npx lint-staged"
nodenpmgit
0
Verifiedsetup

Setup shadcn/ui

Initialize shadcn/ui component library

npx shadcn-ui@latest init
nodenpmtailwind
0
🧪
Verifiedtesting

Run Tests

Execute all tests in the project

npm test
nodenpm
0
🧪
Verifiedtesting

Test Watch Mode

Run tests in watch mode for development

npm test -- --watch
nodenpm
0
🧪
Verifiedtesting

Test Coverage

Run tests with coverage report

npm test -- --coverage
nodenpm
0
🧪
Verifiedtesting

Run E2E Tests

Execute Playwright end-to-end tests

npx playwright test
nodenpmplaywright
0
🧪
Verifiedtesting

E2E Test UI Mode

Run Playwright tests with UI mode

npx playwright test --ui
nodenpmplaywright
0
🧪
Verifiedtesting

Lint Check

Run ESLint to check for issues

npm run lint
nodenpmeslint
0
🧪
Verifiedtesting

Lint Fix

Auto-fix ESLint issues

npm run lint -- --fix
nodenpmeslint
0
🧪
Verifiedtesting

TypeScript Check

Run TypeScript compiler without emitting

npx tsc --noEmit
nodenpmtypescript
0
🚀
Verifieddeployment

Deploy to Vercel

Deploy project to Vercel production

vercel --prod
vercel-cli
0
🚀
Verifieddeployment

Deploy Preview

Create a Vercel preview deployment

vercel
vercel-cli
0
🚀
Verifieddeployment

Production Build

Create optimized production build

npm run build
nodenpm
0
🚀
Verifieddeployment

Docker Build

Build Docker image for the project

docker build -t $NAME:latest .
docker
0
🚀
Verifieddeployment

Docker Compose Up

Start all services with Docker Compose

docker-compose up -d
dockerdocker-compose
0
🚀
Verifieddeployment

Pull Vercel Env

Download environment variables from Vercel

vercel env pull .env.local
vercel-cli
0
🚀
Verifieddeployment

Push Vercel Env

Upload environment variable to Vercel

vercel env add $VAR_NAME
vercel-cli
0
🚀
Verifieddeployment

Bundle Analyzer

Analyze bundle size with next/bundle-analyzer

ANALYZE=true npm run build
nodenpm
0
Verifieddatabase

Run Migrations

Apply pending database migrations

npx prisma migrate deploy
prisma
0
Verifieddatabase

Push Schema

Push Prisma schema changes to database

npx prisma db push
prisma
0
Verifieddatabase

Seed Database

Run database seed script

npx prisma db seed
prisma
0
Verifieddatabase

Reset Database

Reset database and run all migrations

npx prisma migrate reset
prisma
0
Verifieddatabase

Open Prisma Studio

Launch Prisma Studio database GUI

npx prisma studio
prisma
0
Verifieddatabase

Supabase Push

Push local migrations to Supabase

npx supabase db push
supabase-cli
0
Verifieddatabase

Supabase Pull

Pull remote schema changes from Supabase

npx supabase db pull
supabase-cli
0
Verifieddatabase

Generate Types

Generate TypeScript types from Supabase schema

npx supabase gen types typescript --local > src/types/database.ts
supabase-cli
0
Verifieddevelopment

Start Dev Server

Start the development server

npm run dev
nodenpm
0
Verifieddevelopment

Turbo Dev Server

Start Next.js dev server with Turbopack

npm run dev -- --turbo
nodenpm
0
Verifieddevelopment

Clean Install

Remove node_modules and reinstall

rm -rf node_modules && rm -f package-lock.json && npm install
nodenpm
0
Verifieddevelopment

Clear Next.js Cache

Remove .next cache directory

rm -rf .next
nextjs
0
Verifieddevelopment

Format Code

Run Prettier to format all files

npx prettier --write .
prettier
0
Verifieddevelopment

Node Debug Mode

Start dev server with Node debugger

NODE_OPTIONS="--inspect" npm run dev
nodenpm
0
Verifieddevelopment

Check Updates

Check for package updates

npx npm-check-updates
nodenpm
0
Verifieddevelopment

Update Dependencies

Update all dependencies to latest

npx npm-check-updates -u && npm install
nodenpm
0

Build your stack. Ship faster.

All tools are 100% free. Add to your stack and install in seconds.