// catalog · grep -e "Dev Tools"
Catalog/Dev Tools · page 5/5
Showing entries 25 to 29 of 29 · click any row to launch
- 025 Dev Tools env-template:// Extracts every environment-variable reference from a code snippet and produces a documented .env.example. Each variable gets: required/optional status, type, example value (redacted-like for secrets), and a one-line "what this controls".
- 026 Dev Tools naming-help:// Suggests names for variables, functions, or classes from a description of their purpose. Returns 6 candidates spanning short / verbose / domain-flavoured / framework-conventional styles, each with rationale + a clash warning if the name shadows something common.
- 027 Dev Tools typescript-strictify:// Strictifies loose TypeScript. Finds every `any` (explicit or implicit) in a snippet and proposes a concrete type. Outputs the strictified code + a numbered list of replacements with the inference reasoning. The "I'll fix the types later" debt-clearer.
- 028 Dev Tools changelog-from-tags:// Turns a git log between tags into a CHANGELOG.md section. Sorts commits into Keep-a-Changelog categories (Added / Changed / Fixed / Deprecated / Removed / Security). Translates conventional commits or commit subjects into user-facing language. Flags ambiguous commits for review.
- 029 Dev Tools lint-rule-explain:// Decodes a linter rule violation. Paste the error (ESLint / pylint / clippy / golangci-lint / shellcheck etc). Returns what the rule means, why it exists historically, a 2-line example of the violation + fix, and the suppression syntax marked clearly as a last resort.