From magic-powers
Use when bootstrapping new projects, setting up dev environments, writing onboarding docs, or configuring local development tooling
npx claudepluginhub kienbui1995/magic-powers --plugin magic-powersThis skill uses the workspace's default tool permissions.
A new developer should go from `git clone` to running the app in under 15 minutes. If it takes longer, your setup is broken.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
A new developer should go from git clone to running the app in under 15 minutes. If it takes longer, your setup is broken.
git clone → install deps → copy env → start → working app
Every project needs a README.md with these exact steps. If any step requires tribal knowledge, document it.
| File | Purpose |
|---|---|
README.md | Setup instructions, architecture overview |
.env.example | All env vars with dummy values and comments |
.editorconfig | Consistent formatting across editors |
.gitignore | Exclude build artifacts, deps, secrets |
Makefile or package.json scripts | Common commands (make dev, npm run dev) |
docker-compose.yml | Local services (DB, Redis, etc.) |
# Database
DATABASE_URL=postgresql://user:pass@localhost:5432/myapp
# Auth
JWT_SECRET=change-me-in-production
# External APIs
STRIPE_KEY=sk_test_...
Rule: .env.example committed to git, .env in .gitignore.
# Makefile
setup:
cp .env.example .env
docker-compose up -d
npm install
npm run db:migrate
npm run db:seed
@echo "Ready! Run 'make dev' to start."
dev:
npm run dev
README.md has step-by-step setup instructions.env.example has all required variables with commentsmake setup or equivalent one-command bootstrap