Auto Setup
Detects your stack and wires lint/typecheck/test/format quality gates into .claude/settings.json.
Test report
- Verdict
- Tested · Works
- Score
- Tested
- Jul 10, 2026
- Environment
- Claude Code 2.x (agent harness)
- Upstream re-checked
- Aug 10, 2026 · 62ee70f
Ran it against a real bare-bones Node package.json (no tsconfig.json): it correctly detected Node.js and confirmed eslint/jest/prettier via real --version calls, but the Node/TS gate block it copies in verbatim would still add a 'tsc --noEmit' typecheck step to a project that has no TypeScript at all — a real, silent gap in the type-detection logic.
Scored on four weighted criteria — install, triggering, output vs. baseline, docs. How scoring works
- Installs cleanly 5/5
- Triggers reliably 5/5
- Output vs. baseline 7/10
- Docs & honesty 4/5
What Auto Setup does
Scans a new project for package.json, pyproject.toml, Cargo.toml, go.mod, Gemfile or build.gradle, picks the matching lint/typecheck/test/format commands, verifies the tools are actually installed with --version checks, and writes a .claude/settings.json quality-gate block. Triggers when onboarding an unfamiliar codebase or wiring up CI integration; it applies the whole Node/TypeScript command block to any package.json project without checking for tsconfig.json, so it can propose a typecheck gate that doesn't apply to plain JS repos.
How to install Auto Setup
git clone https://github.com/rohitg00/pro-workflow
cd pro-workflow
mkdir -p ~/.claude/skills
cp -r skills/auto-setup ~/.claude/skills/auto-setup
Skills live in ~/.claude/skills/ (global) or .claude/skills/
(per-project). Restart Claude Code after installing.
Commands — how to trigger Auto Setup
-
/auto-setupDetects your stack and wires lint/typecheck/test/format quality gates into .claude/settings.json.
It also activates on plain-language prompts like these:
-
Detect my stack and wire up lint and test quality gates -
Scan this new project and configure typecheck commands -
Set up format and test gates in .claude/settings.json
Frequently asked questions
- Is the Auto Setup skill free?
- Yes. The skill itself is free from rohitg00/pro-workflow. SkillProof publishes the install command and an independent test verdict at no cost.
- Does Auto Setup work with Claude Code?
- We tested it with Claude Code 2.x (agent harness) on Jul 10, 2026. Verdict: Tested · Works. Ran it against a real bare-bones Node package.json (no tsconfig.json): it correctly detected Node.js and confirmed eslint/jest/prettier via real --version calls, but the Node/TS gate block it copies in verbatim would still add a 'tsc --noEmit' typecheck step to a project that has no TypeScript at all — a real, silent gap in the type-detection logic.
- What is the Auto Setup SkillProof Score?
- 8.4/10 — installs cleanly 5/5, triggers reliably 5/5, output vs. baseline 7/10, docs & honesty 4/5.
- How do I install Auto Setup?
- Copy the install command from this page, run it in your terminal, and restart Claude Code. Skills live in ~/.claude/skills/ (global) or .claude/skills/ inside a project.
- Can I use Auto Setup with Cursor, Copilot, Gemini CLI, Codex or other AI tools?
- The SKILL.md format is native to Claude (Claude Code, Desktop, claude.ai). The instructions inside adapt to other assistants: Cursor rules, GitHub Copilot instructions, Windsurf rules, Custom GPTs, AGENTS.md for OpenAI Codex, and GEMINI.md for Google Gemini CLI — our conversion guides cover each, and the free converter on the tools page does the wrapping for you.