Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Auto Setup

Detects your project's stack and auto-configures lint, typecheck, test and format quality gates plus a Claude settings file.

Dev & CodingBeginner2,775270AI score 9/10Last updated: Aug 10, 2026

What it does

  • Scans for package.json, pyproject.toml, Cargo.toml, go.mod and 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 warnings and cargo fmt --check.
  • Verifies each tool is actually installed and reports missing ones with install commands.
  • Writes .claude/settings.json containing 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

  1. "Onboard me to this repo" → detects Node.js + pnpm and registers npx tsc --noEmit and prettier --check ..
  2. Run inside a Python service → sets ruff check ., mypy ., pytest --tb=short -q, and flags mypy as missing with the pip command.
  3. 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repository to a temp folder: git clone https://github.com/rohitg00/pro-workflow.git /tmp/pro-workflow
  3. Create the skills directory if needed: mkdir -p ~/.claude/skills
  4. Copy the skill in: cp -r /tmp/pro-workflow/skills/auto-setup ~/.claude/skills/
  5. Restart Claude Code, open your project folder and ask: "run auto-setup to configure quality gates".
  6. Review the generated .claude/settings.json before approving it.