phoenix-patterns

Installation
SKILL.md

Phoenix Patterns

Master Phoenix Framework patterns to build well-structured, maintainable web applications in Elixir.

Context Design

Contexts are dedicated modules that expose and group related functionality:

defmodule MyApp.Accounts do
  @moduledoc """
  The Accounts context handles user management and authentication.
  """

  alias MyApp.Repo
  alias MyApp.Accounts.User
Installs
37
GitHub Stars
166
First Seen
Jan 22, 2026
phoenix-patterns — thebushidocollective/han