elixir-no-shortcuts

8
mkreymanmkreyman

BLOCKS shortcuts like modifying dialyzer.ignore or .credo.exs excludes. Enforces fixing actual problems. Use when encountering ANY error, warning, or quality tool complaint.

194 days ago

elixir-discipline

8
mkreymanmkreyman

MANDATORY pre-check before ANY response - ensures you use applicable skills and follow best practices. Use this skill FIRST before responding to any Elixir/Phoenix request.

194 days ago

elixir-quality-gate

8
mkreymanmkreyman

Run comprehensive Elixir quality checks (format, credo, dialyzer, tests) with proper error handling and reporting. Use when validating code quality, before commits, or preparing for deployment.

194 days ago

elixir-root-cause-only

8
mkreymanmkreyman

MANDATORY systematic debugging - trace to root cause before proposing fixes. NO random changes, NO symptom fixes, NO "try this". Use when debugging ANY error or issue.

194 days ago

elixir-verification-gate

8
mkreymanmkreyman

MANDATORY verification before claiming anything works. Run actual commands, read actual output, provide evidence. Use when claiming tests pass, build succeeds, or code works.

194 days ago

phoenix-context-creator

8
mkreymanmkreyman

Create complete Phoenix contexts following best practices including bounded contexts, proper API design, and comprehensive testing. Use when designing new features or refactoring code into contexts.

194 days ago

elixir-test-runner

8
mkreymanmkreyman

Run ExUnit tests with smart filtering, debugging options, and proper error reporting. Use when running tests, debugging failures, or validating specific test cases.

194 days ago

phoenix-generator

8
mkreymanmkreyman

Generate Phoenix resources (contexts, schemas, LiveViews, controllers) using mix phx.gen.* commands with best practices. Use when creating new Phoenix resources, contexts, or LiveView components.

194 days ago

elixir-no-placeholders

8
mkreymanmkreyman

PROHIBITS placeholder code, default values that mask missing data, and silent failures. Enforces fail-fast with loud errors. Use when implementing ANY function or data structure.

194 days ago

elixir-tdd-enforcement

8
mkreymanmkreyman

MANDATORY for ANY feature or bugfix - write ExUnit test FIRST, watch it FAIL, then implement. NO exceptions. Use before writing any Elixir production code.

194 days ago

ecto-migration-helper

8
mkreymanmkreyman

Create, manage, and safely run Ecto database migrations with proper rollback handling and best practices. Use when working with database schema changes, adding columns, or modifying constraints.

194 days ago