Back to authors
levnikolaevich

levnikolaevich

129 Skills published on GitHub.

ln-610-docs-auditor

Coordinates audit of project knowledge surfaces: markdown documentation plus inline code documentation (comments/docstrings). Use when auditing project documentation.

UncategorizedView skill →

ln-611-docs-structure-auditor

Checks hierarchy, links, SSOT, compression, requirements compliance, freshness, legacy cleanup. Use when auditing documentation structure.

UncategorizedView skill →

ln-612-semantic-content-auditor

Checks document semantic content against SCOPE and project goals, coverage gaps, off-topic content, SSOT. Use when auditing documentation relevance.

UncategorizedView skill →

ln-613-code-comments-auditor

Checks inline code documentation quality: WHY-not-WHAT, density, forbidden content, docstrings quality, actuality, legacy cleanup. Use when auditing comments and docstrings.

UncategorizedView skill →

ln-614-docs-fact-checker

Verifies claims in .md files (paths, versions, counts, configs, endpoints) against codebase, cross-checks contradictions. Use when auditing docs accuracy.

UncategorizedView skill →

ln-620-codebase-auditor

Coordinates codebase audit across security, build, code quality, dependencies, and architecture. Use when auditing entire codebase.

UncategorizedView skill →

ln-621-security-auditor

Checks hardcoded secrets, SQL injection, XSS, insecure deps, input validation. Use when auditing security.

UncategorizedView skill →

ln-622-build-auditor

Checks compiler/linter errors, deprecation warnings, type errors, failed tests, build config issues. Use when auditing build health.

UncategorizedView skill →

ln-623-code-principles-auditor

Checks DRY, KISS/YAGNI, error handling, DI patterns. Use when auditing code principles compliance.

UncategorizedView skill →

ln-624-code-quality-auditor

Checks cyclomatic complexity, nesting, long methods, god classes, O(n2), N+1 queries, constants management. Use when auditing code quality.

UncategorizedView skill →

ln-625-dependencies-auditor

Checks outdated packages, unused deps, reinvented wheels, CVE/CVSS vulnerability scan. Use when auditing dependencies.

UncategorizedView skill →

ln-626-dead-code-auditor

Checks unreachable code, unused imports/variables/functions, commented-out code, deprecated patterns. Use when auditing dead code.

UncategorizedView skill →

ln-628-concurrency-auditor

Checks async races, thread safety, TOCTOU, deadlocks, blocking I/O, resource contention. Use when auditing concurrency safety.

UncategorizedView skill →

ln-629-lifecycle-auditor

Checks bootstrap initialization, graceful shutdown, resource cleanup, signal handling, liveness/readiness probes. Use when auditing app lifecycle.

UncategorizedView skill →

ln-630-test-auditor

Coordinates test suite audit across business logic, E2E coverage, value, isolation, manual quality, and structure. Use when auditing entire test suite.

UncategorizedView skill →

ln-631-test-business-logic-auditor

Detects tests validating framework/library behavior instead of project code. Use when auditing test business logic focus.

UncategorizedView skill →

ln-632-test-e2e-priority-auditor

Validates E2E coverage for critical paths (money, security, data integrity). Risk-based prioritization. Use when auditing E2E test coverage.

UncategorizedView skill →

ln-633-test-value-auditor

Scores each test by Impact x Probability, returns KEEP/REVIEW/REMOVE decisions. Use when auditing test value and pruning low-value tests.

UncategorizedView skill →

ln-634-test-coverage-auditor

Identifies missing tests for critical paths (money, security, data integrity, core flows). Use when auditing test coverage gaps.

UncategorizedView skill →

ln-635-test-isolation-auditor

Checks test isolation (API/DB/FS/Time/Network), determinism, flaky tests, order-dependency, anti-patterns. Use when auditing test isolation.

UncategorizedView skill →

ln-636-manual-test-auditor

Checks manual test scripts for harness adoption, golden files, fail-fast, config sourcing, idempotency. Use when auditing manual test quality.

UncategorizedView skill →

ln-637-test-structure-auditor

Checks test file organization, directory layout, test-to-source mapping, domain grouping, co-location. Use when auditing test structure.

UncategorizedView skill →

ln-640-pattern-evolution-auditor

Audits architectural patterns against best practices, maintains patterns catalog with compliance scores. Use when auditing pattern evolution.

UncategorizedView skill →

ln-641-pattern-analyzer

Analyzes single pattern implementation, calculates compliance/completeness/quality scores, identifies gaps. Use when auditing a specific pattern.

UncategorizedView skill →

ln-642-layer-boundary-auditor

Checks layer boundary violations, transaction boundaries, session ownership, cross-layer consistency. Use when auditing architecture layers.

UncategorizedView skill →

ln-643-api-contract-auditor

Checks layer leakage in method signatures, missing DTOs, entity leakage to API, inconsistent error contracts. Use when auditing API contracts.

UncategorizedView skill →

ln-644-dependency-graph-auditor

Builds dependency graph, detects cycles, validates boundary rules, calculates coupling metrics (Ca/Ce/I). Use when auditing dependency structure.

UncategorizedView skill →

ln-645-open-source-replacer

Discovers custom modules replaceable by OSS, evaluates alternatives (stars, license, CVE), generates migration plan. Use when reducing custom code.

UncategorizedView skill →

ln-646-project-structure-auditor

Checks file hygiene, ignore files, framework conventions, domain/layer organization, naming. Use when auditing project structure.

UncategorizedView skill →

ln-647-env-config-auditor

Checks env var config sync, missing defaults, naming conventions, startup validation. Use when auditing environment configuration.

UncategorizedView skill →

ln-650-persistence-performance-auditor

Coordinates persistence and performance audit across queries, transactions, runtime, and resource lifecycle. Use when auditing data layer performance.

UncategorizedView skill →

ln-651-query-efficiency-auditor

Checks redundant fetches, N+1 loops, over-fetching, missing bulk operations, wrong caching scope. Use when auditing query efficiency.

UncategorizedView skill →

ln-652-transaction-correctness-auditor

Checks transaction scope, missing rollback handling, long-held transactions, trigger/notify interaction. Use when auditing transaction correctness.

UncategorizedView skill →

ln-653-runtime-performance-auditor

Checks blocking IO in async, unnecessary allocations, sync sleep, string concat in loops, redundant copies. Use when auditing runtime performance.

UncategorizedView skill →

ln-654-resource-lifecycle-auditor

Checks session scope mismatch, missing cleanup, pool config, error path leaks, resource holding. Use when auditing resource lifecycle.

UncategorizedView skill →

ln-700-project-bootstrap

Bootstraps projects to production-ready structure. Use when creating new or transforming existing projects.

UncategorizedView skill →

ln-720-structure-migrator

Scaffolds new or restructures existing projects to Clean Architecture. Use when setting up project structure.

UncategorizedView skill →

ln-721-frontend-restructure

Scaffolds new React projects or restructures monoliths to component-based architecture. Use when setting up frontend structure.

UncategorizedView skill →

ln-722-backend-generator

Generates .NET Clean Architecture backend structure from entity definitions. Use when bootstrapping .NET backend projects.

UncategorizedView skill →

ln-723-seed-data-generator

Generates seed data from ORM schemas or entity definitions to any target format. Use when populating databases for development.

UncategorizedView skill →

ln-724-artifact-cleaner

Removes platform-specific artifacts from Replit, StackBlitz, CodeSandbox, Glitch. Use when preparing exported projects for production.

UncategorizedView skill →

ln-730-devops-setup

Sets up Docker, CI/CD, and environment configuration with auto-detection. Use when adding DevOps infrastructure to a project.

UncategorizedView skill →

ln-731-docker-generator

Generates Dockerfile and docker-compose configuration for multi-container development. Use when containerizing a project.

UncategorizedView skill →

ln-732-cicd-generator

Generates GitHub Actions CI workflow configuration. Use when adding continuous integration to a project.

UncategorizedView skill →

ln-733-env-configurator

Configures environment variables and secrets protection. Use when setting up .env files and gitignore rules for a project.

UncategorizedView skill →

ln-740-quality-setup

Sets up linters, pre-commit hooks, and test infrastructure. Use when adding code quality tooling to a project.

UncategorizedView skill →

ln-741-linter-configurator

Configures ESLint, Prettier, Ruff, mypy, and .NET analyzers. Use when setting up linting and formatting for a project.

UncategorizedView skill →

ln-742-precommit-setup

Configures Husky, lint-staged, commitlint, and Python pre-commit hooks. Use when adding Git hook automation to a project.

UncategorizedView skill →

ln-743-test-infrastructure

Sets up test infrastructure with Vitest, xUnit, and pytest. Use when adding testing frameworks and sample tests to a project.

UncategorizedView skill →

ln-760-security-setup

Sets up security scanning for secrets and dependency vulnerabilities. Use when adding security infrastructure to a project.

UncategorizedView skill →

Page 2 of 3 · 129 results