Auto Setup
Detects your project's stack and auto-configures lint, typecheck, test and format quality gates plus a Claude settings file.
Dev & CodingBeginner★ 2,775⑂ 270AI score 9/10Last updated: Aug 10, 2026
What it does
- Scans for
package.json,pyproject.toml,Cargo.toml,go.modand friends to identify the stack and package manager. - Proposes a matching set of four quality-gate commands (lint / typecheck / test / format) — e.g. Rust gets
cargo clippy -- -D warningsandcargo fmt --check. - Verifies each tool is actually installed and reports missing ones with install commands.
- Writes
.claude/settings.jsoncontaining the gates, suggested permission rules and hook config, never overwriting existing settings without asking.
Who it's for
- Developers onboarding onto an unfamiliar repository who need to know which checks to run.
- Teams that spin up new projects often and dislike repeating lint/test wiring by hand.
- Monorepo maintainers who want consistent gates across workspaces.
Examples
- "Onboard me to this repo" → detects Node.js + pnpm and registers
npx tsc --noEmitandprettier --check .. - Run inside a Python service → sets
ruff check .,mypy .,pytest --tb=short -q, and flags mypy as missing with the pip command. - Preparing CI → copy the verified command list straight into your pipeline steps.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/rohitg00/pro-workflow/HEAD/skills/auto-setup/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/auto-setup folder from the GitHub repo rohitg00/pro-workflow into my ~/.claude/skills/auto-setup/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/rohitg00/pro-workflow.git /tmp/pro-workflow && mkdir -p ~/.claude/skills && cp -r /tmp/pro-workflow/skills/auto-setup ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repository to a temp folder:
git clone https://github.com/rohitg00/pro-workflow.git /tmp/pro-workflow - Create the skills directory if needed:
mkdir -p ~/.claude/skills - Copy the skill in:
cp -r /tmp/pro-workflow/skills/auto-setup ~/.claude/skills/ - Restart Claude Code, open your project folder and ask: "run auto-setup to configure quality gates".
- Review the generated
.claude/settings.jsonbefore approving it.