← ClaudeAtlas

dlclisted

Dev Life Cycle quality gates: run security scans, code quality checks, performance analysis, test coverage, and PR review compliance. Routes to domain-specific sub-skills or runs all checks in sequence.
rube-de/cc-skills · ★ 10 · AI & Automation · score 78
Install: claude install-skill rube-de/cc-skills
# Dev Life Cycle (DLC) Automated quality gates for the development life cycle. Each sub-skill detects your project type, runs appropriate tools, and creates a GitHub issue with structured findings. ## Sub-Skills | Skill | Command | Description | |-------|---------|-------------| | Security | `/dlc:security` | Dependency audits, SAST scanning, secret detection | | Quality | `/dlc:quality` | Linting, complexity analysis, duplication, dead code | | Performance | `/dlc:perf` | Bundle analysis, profiling, algorithmic complexity review | | Testing | `/dlc:test` | Test execution, coverage measurement, gap analysis | | PR Review | `/dlc:pr-check` | Fetch PR comments, implement fixes, reply inline | | PR Validity | `/dlc:pr-validity` | Detect duplicate/redundant code in PR changes | | Git Ops | `/dlc:git-ops` | Branch cleanup, remote pruning, repo state verification | ## Usage ```text /dlc → Show this overview /dlc security → Run security scan /dlc:security → Run security scan (alternate syntax) /dlc --all → Run all checks in sequence ``` ## Routing Parse the first argument: | Argument | Route to | |----------|----------| | `--all` | Run all sub-skills in sequence (see below) | | `security` | Invoke `dlc:security` via `Skill` | | `quality` | Invoke `dlc:quality` via `Skill` | | `perf` | Invoke `dlc:perf` via `Skill` | | `test` | Invoke `dlc:test` via `Skill` | | `pr-check` | Invoke `dlc:pr-check` via `Skill` | | `pr-validity` | Invok