11 developer CLI tools that catch problems before production. Open source, MIT licensed.
| Tool | What It Does |
|---|---|
| API Contract Guardian | Catch breaking OpenAPI changes in CI |
| json2sql | Convert JSON to SQL INSERT statements |
| DeployDiff | Preview infrastructure costs before deploy |
| ConfigDrift | Detect config drift across environments |
| APIGhost | Mock API server from OpenAPI specs |
| Envault | Sync and rotate .env files |
| SchemaForge | Bidirectional ORM schema conversion (11 formats) |
| click-to-mcp | Wrap any Click/Typer CLI as MCP server |
| DeadCode | Find and remove dead code in React/Next.js |
| DataMorph | Convert between CSV, JSON, YAML, Parquet, Avro, Protobuf |
| DevForge | Unified CLI — install all tools at once |
pip install devforgeThis repository provides reusable GitHub Actions workflows for use across the DevForge organization.
Scans PR dependency changes for known vulnerabilities before merging.
name: Dependency Review
on:
pull_request:
branches: [main]
jobs:
dependency-review:
uses: Coding-Dev-Tools/.github/.github/workflows/dependency-review.yml@main
permissions:
contents: read
pull-requests: writeSupported inputs:
| Input | Default | Description |
|---|---|---|
fail-on-severity |
high |
Severity threshold: low, medium, high, critical |
allow-licenses |
(empty) | Comma-separated allowed licenses |
deny-licenses |
(empty) | Comma-separated denied licenses |
fail-on-scopes |
runtime,unknown |
Scopes to fail on: runtime, development, unknown |