{"id":"4e83c1fb-62fc-4eda-a027-81d02c800e9b","shortId":"rPKW8f","kind":"skill","title":"review-tooling","tagline":"Detect what dev tooling infrastructure a project has and flag gaps across linters, formatters, pre-commit hooks, test runners, and CI/CD pipelines. Returns structured findings without applying changes. Use when the user asks to \"review tooling\", \"check project tooling\", \"what too","description":"# Review Tooling\n\nDetect dev tooling infrastructure and flag gaps. Analysis only. Does not install or configure tools.\n\n## Scope\n\nTooling review always operates at the project level since config files live at the project root. Scope parameters (diff commands, file lists) are accepted but ignored.\n\nWhen called standalone, use the git repository root as the project root (fall back to the current working directory if not in a git repo).\n\n## Step 1: Detect Tooling\n\nSearch for config files in the project root and subdirectories (exclude vendored directories like `node_modules/`, `vendor/`, `.build/`). Classify findings into five categories:\n\n### Linters\n\n| Config file pattern | Tool |\n|---|---|\n| `.eslintrc*`, `eslint.config.*` | ESLint |\n| `biome.json`, `biome.jsonc` | Biome (linter + formatter) |\n| `deno.json`, `deno.jsonc` with `lint` config | Deno lint |\n| `.swiftlint.yml` | SwiftLint |\n| `ruff.toml`, `[tool.ruff]` in `pyproject.toml` | Ruff |\n| `.pylintrc`, `pylintrc` | Pylint |\n| `.flake8`, `[flake8]` in `setup.cfg` | Flake8 |\n| `.rubocop.yml` | RuboCop |\n| `.golangci.yml`, `.golangci.yaml` | golangci-lint |\n| `clippy.toml`, `.clippy.toml` | Clippy |\n| `ktlint*`, `.editorconfig` with `ktlint` | ktlint |\n\n### Formatters\n\n| Config file pattern | Tool |\n|---|---|\n| `.prettierrc*`, `prettier.config.*` | Prettier |\n| `biome.json`, `biome.jsonc` | Biome (linter + formatter) |\n| `deno.json`, `deno.jsonc` with `fmt` config | Deno fmt |\n| `.swift-format`, `.swiftformat` | swift-format / SwiftFormat |\n| `[tool.black]` in `pyproject.toml`, `pyproject.toml` with `[tool.ruff.format]` | Black / Ruff formatter |\n| `rustfmt.toml`, `.rustfmt.toml` | rustfmt |\n| `gofmt` / `goimports` (check CI config or `Makefile` for usage) | gofmt |\n| `.clang-format` | ClangFormat |\n\n### Pre-commit Hooks\n\n| Config file pattern | Tool |\n|---|---|\n| `.husky/` directory | Husky |\n| `.lintstagedrc*`, `lint-staged` key in `package.json` | lint-staged |\n| `.pre-commit-config.yaml` | pre-commit framework |\n| `.git/hooks/pre-commit` (non-sample) | Custom git hook |\n| `.lefthook.yml`, `lefthook.yml` | Lefthook |\n\n### Test Runners\n\n| Config file pattern | Tool |\n|---|---|\n| `jest.config.*`, `jest` key in `package.json` | Jest |\n| `vitest.config.*` | Vitest |\n| `pytest.ini`, `[tool.pytest]` in `pyproject.toml`, `conftest.py` | pytest |\n| `Package.swift` with test targets, `*Tests/` directories | Swift Testing / XCTest |\n| `_test.go` files | Go testing |\n| `Cargo.toml` with `[dev-dependencies]`, `tests/` directory | Rust tests |\n| `.rspec`, `spec/` directory | RSpec |\n| `phpunit.xml*` | PHPUnit |\n\n### CI/CD Pipelines\n\n| Config file pattern | Tool |\n|---|---|\n| `.github/workflows/*.yml` | GitHub Actions |\n| `.gitlab-ci.yml` | GitLab CI |\n| `Jenkinsfile` | Jenkins |\n| `.circleci/config.yml` | CircleCI |\n| `bitbucket-pipelines.yml` | Bitbucket Pipelines |\n| `.travis.yml` | Travis CI |\n| `azure-pipelines.yml` | Azure Pipelines |\n\nThese tables are not exhaustive. If the project uses a tool not listed here, detect it by recognizing its config files.\n\n## Step 2: Identify the Project Ecosystem\n\nDetermine the primary language(s) and ecosystem from config files and source code. This informs which tooling gaps are relevant. A Go project without Prettier is not a gap. A Node.js project without a linter is.\n\n| Signal | Ecosystem |\n|---|---|\n| `package.json` | Node.js / JavaScript / TypeScript |\n| `Package.swift`, `*.xcodeproj` | Swift / Apple |\n| `pyproject.toml`, `setup.py`, `requirements.txt` | Python |\n| `go.mod` | Go |\n| `Cargo.toml` | Rust |\n| `Gemfile` | Ruby |\n| `pom.xml`, `build.gradle*` | Java / Kotlin |\n| `deno.json`, `deno.jsonc` | Deno |\n\n## Step 3: Analyze Gaps\n\nFor each category, assess whether the project has adequate tooling for its ecosystem:\n\n- **Present and configured** — tool detected with config file\n- **Partially configured** — tool detected but config appears minimal or default\n- **Missing** — no tool detected for a category where one is standard for the ecosystem\n\nWhen assessing pre-commit hooks, also check whether detected linters and formatters are wired into the hooks. A project with ESLint and Prettier but no pre-commit hook means formatting issues can slip into commits.\n\nWhen assessing CI/CD, check whether the pipeline runs tests and linters. A CI config that only builds but never tests is a gap.\n\n## Output Format\n\nReturn findings as a numbered list. For each finding:\n\n```\n### [P<N>] <title (imperative, <=80 chars)>\n\n**Category:** <Linters | Formatters | Pre-commit Hooks | Test Runners | CI/CD>\n\n<one paragraph: what is missing or misconfigured and why it matters for this project>\n```\n\nAfter all findings, add:\n\n```\n## Tooling Summary\n\n| Category | Status | Tool(s) |\n|---|---|---|\n| Linters | <Present/Partial/Missing> | <detected tools or \"—\"> |\n| Formatters | <Present/Partial/Missing> | <detected tools or \"—\"> |\n| Pre-commit Hooks | <Present/Partial/Missing> | <detected tools or \"—\"> |\n| Test Runners | <Present/Partial/Missing> | <detected tools or \"—\"> |\n| CI/CD | <Present/Partial/Missing> | <detected tools or \"—\"> |\n\n## Overall Verdict\n\n**Tooling:** <well-equipped | gaps found>\n\n<1-3 sentence summary>\n```\n\nIf all categories are adequately covered, report that and highlight what the project does well.\n\n## Priority Levels\n\n- **P0** — No test runner detected for a project with source code\n- **P1** — No linter for the primary language, or CI/CD pipeline exists but skips tests\n- **P2** — No formatter, no pre-commit hooks, or linter/formatter not wired into hooks\n- **P3** — No CI/CD pipeline, or minor config gaps","tags":["review","tooling","turbo","tobihagemann","agent-skills","claude-code","claude-skills","developer-tools","skills"],"capabilities":["skill","source-tobihagemann","skill-review-tooling","topic-agent-skills","topic-claude-code","topic-claude-skills","topic-developer-tools","topic-skills"],"categories":["turbo"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/tobihagemann/turbo/review-tooling","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add tobihagemann/turbo","source_repo":"https://github.com/tobihagemann/turbo","install_from":"skills.sh"}},"qualityScore":"0.590","qualityRationale":"deterministic score 0.59 from registry signals: · indexed on github topic:agent-skills · 280 github stars · SKILL.md body (5,585 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-22T00:54:12.044Z","embedding":null,"createdAt":"2026-04-18T22:04:05.293Z","updatedAt":"2026-04-22T00:54:12.044Z","lastSeenAt":"2026-04-22T00:54:12.044Z","tsv":"'-3':614 '1':116,613 '2':378 '3':447 '80':569 'accept':87 'across':15 'action':339 'add':584 'adequ':458,621 'also':501 'alway':66 'analysi':55 'analyz':448 'appear':477 'appl':428 'appli':31 'ask':37 'assess':453,496,533 'azur':354 'azure-pipelines.yml':353 'back':103 'biom':152,202 'biome.json':150,200 'biome.jsonc':151,201 'bitbucket':348 'bitbucket-pipelines.yml':347 'black':226 'build':136,548 'build.gradle':440 'call':91 'cargo.toml':315,435 'categori':141,452,487,571,587,619 'chang':32 'char':570 'check':41,234,502,535 'ci':235,342,352,544 'ci/cd':25,330,534,580,603,653,675 'circleci':346 'circleci/config.yml':345 'clang':243 'clang-format':242 'clangformat':245 'classifi':137 'clippi':186 'clippy.toml':184,185 'code':395,644 'command':83 'commit':20,248,270,499,523,531,576,597,665 'config':73,121,143,159,193,209,236,250,284,332,375,391,469,476,545,679 'configur':61,465,472 'conftest.py':300 'cover':622 'current':106 'custom':276 'default':480 'deno':160,210,445 'deno.json':155,205,443 'deno.jsonc':156,206,444 'depend':319 'detect':4,48,117,370,467,474,484,504,638 'determin':383 'dev':6,49,318 'dev-depend':317 'diff':82 'directori':108,131,255,307,321,326 'ecosystem':382,389,420,462,494 'editorconfig':188 'equip':610 'eslint':149,516 'eslint.config':148 'eslintrc':147 'exclud':129 'exhaust':360 'exist':655 'fall':102 'file':74,84,122,144,194,251,285,312,333,376,392,470 'find':29,138,558,565,583 'five':140 'flag':13,53 'flake8':172,173,176 'fmt':208,211 'format':214,218,244,526,556 'formatt':17,154,192,204,228,507,573,593,661 'found':612 'framework':271 'gap':14,54,400,411,449,554,611,680 'gemfil':437 'git':95,113,277 'git/hooks/pre-commit':272 'github':338 'github/workflows':336 'gitlab':341 'gitlab-ci.yml':340 'go':313,404,434 'go.mod':433 'gofmt':232,241 'goimport':233 'golangci':182 'golangci-lint':181 'golangci.yaml':180 'golangci.yml':179 'highlight':626 'hook':21,249,278,500,512,524,577,598,666,672 'huski':254,256 'identifi':379 'ignor':89 'imper':568 'inform':397 'infrastructur':8,51 'instal':59 'issu':527 'java':441 'javascript':423 'jenkin':344 'jenkinsfil':343 'jest':289,293 'jest.config':288 'key':261,290 'kotlin':442 'ktlint':187,190,191 'languag':386,651 'lefthook':281 'lefthook.yml':279,280 'level':71,633 'like':132 'lint':158,161,183,259,265 'lint-stag':258,264 'linter':16,142,153,203,417,505,542,572,591,647 'linter/formatter':668 'lintstagedrc':257 'list':85,368,562 'live':75 'makefil':238 'mean':525 'minim':478 'minor':678 'miss':481 'modul':134 'never':550 'node':133 'node.js':413,422 'non':274 'non-sampl':273 'number':561 'one':489 'oper':67 'output':555 'overal':605 'p':566 'p0':634 'p1':645 'p2':659 'p3':673 'package.json':263,292,421 'package.swift':302,425 'paramet':81 'partial':471 'pattern':145,195,252,286,334 'phpunit':329 'phpunit.xml':328 'pipelin':26,331,349,355,538,654,676 'pom.xml':439 'pre':19,247,269,498,522,575,596,664 'pre-commit':18,246,268,497,521,574,595,663 'pre-commit-config.yaml':267 'present':463 'present/partial/missing':592,594,599,602,604 'prettier':199,407,518 'prettier.config':198 'prettierrc':197 'primari':385,650 'prioriti':632 'project':10,42,70,78,100,125,363,381,405,414,456,514,629,641 'pylint':171 'pylintrc':169,170 'pyproject.toml':167,222,223,299,429 'pytest':301 'pytest.ini':296 'python':432 'recogn':373 'relev':402 'repo':114 'report':623 'repositori':96 'requirements.txt':431 'return':27,557 'review':2,39,46,65 'review-tool':1 'root':79,97,101,126 'rspec':324,327 'rubi':438 'rubocop':178 'rubocop.yml':177 'ruff':168,227 'ruff.toml':164 'run':539 'runner':23,283,579,601,637 'rust':322,436 'rustfmt':231 'rustfmt.toml':229,230 'sampl':275 'scope':63,80 'search':119 'sentenc':615 'setup.cfg':175 'setup.py':430 'signal':419 'sinc':72 'skill' 'skill-review-tooling' 'skip':657 'slip':529 'sourc':394,643 'source-tobihagemann' 'spec':325 'stage':260,266 'standalon':92 'standard':491 'status':588 'step':115,377,446 'structur':28 'subdirectori':128 'summari':586,616 'swift':213,217,308,427 'swift-format':212,216 'swiftformat':215,219 'swiftlint':163 'swiftlint.yml':162 'tabl':357 'target':305 'test':22,282,304,306,309,314,320,323,540,551,578,600,636,658 'test.go':311 'titl':567 'tool':3,7,40,43,47,50,62,64,118,146,196,253,287,335,366,399,459,466,473,483,585,589,607 'tool.black':220 'tool.pytest':297 'tool.ruff':165 'tool.ruff.format':225 'topic-agent-skills' 'topic-claude-code' 'topic-claude-skills' 'topic-developer-tools' 'topic-skills' 'travi':351 'travis.yml':350 'typescript':424 'usag':240 'use':33,93,364 'user':36 'vendor':130,135 'verdict':606 'vitest':295 'vitest.config':294 'well':609,631 'well-equip':608 'whether':454,503,536 'wire':509,670 'without':30,406,415 'work':107 'xcodeproj':426 'xctest':310 'yml':337","prices":[{"id":"9ddf1d50-597b-4bcc-951e-f32c85e2c3ac","listingId":"4e83c1fb-62fc-4eda-a027-81d02c800e9b","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"tobihagemann","category":"turbo","install_from":"skills.sh"},"createdAt":"2026-04-18T22:04:05.293Z"}],"sources":[{"listingId":"4e83c1fb-62fc-4eda-a027-81d02c800e9b","source":"github","sourceId":"tobihagemann/turbo/review-tooling","sourceUrl":"https://github.com/tobihagemann/turbo/tree/main/skills/review-tooling","isPrimary":false,"firstSeenAt":"2026-04-18T22:04:05.293Z","lastSeenAt":"2026-04-22T00:54:12.044Z"}],"details":{"listingId":"4e83c1fb-62fc-4eda-a027-81d02c800e9b","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"tobihagemann","slug":"review-tooling","github":{"repo":"tobihagemann/turbo","stars":280,"topics":["agent-skills","claude-code","claude-skills","developer-tools","skills"],"license":"mit","html_url":"https://github.com/tobihagemann/turbo","pushed_at":"2026-04-21T12:22:12Z","description":"A composable dev process for Claude Code, packaged as modular skills.","skill_md_sha":"933f4cf88825016c03ebe096848801a1ef8048f6","skill_md_path":"skills/review-tooling/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/tobihagemann/turbo/tree/main/skills/review-tooling"},"layout":"multi","source":"github","category":"turbo","frontmatter":{"name":"review-tooling","description":"Detect what dev tooling infrastructure a project has and flag gaps across linters, formatters, pre-commit hooks, test runners, and CI/CD pipelines. Returns structured findings without applying changes. Use when the user asks to \"review tooling\", \"check project tooling\", \"what tooling is missing\", \"review dev infrastructure\", or \"tooling audit\"."},"skills_sh_url":"https://skills.sh/tobihagemann/turbo/review-tooling"},"updatedAt":"2026-04-22T00:54:12.044Z"}}