phoenix-framework

Installation
SKILL.md

Phoenix Framework

Build real-time web applications with Phoenix, LiveView, channels, and Elixir's concurrent architecture.

Core Patterns

LiveView

defmodule MyAppWeb.UserLive.Index do
  use MyAppWeb, :live_view

  alias MyApp.Accounts

  def mount(_params, _session, socket) do
    {:ok, assign(socket, users: Accounts.list_users())}
  end
Installs
5
GitHub Stars
6
First Seen
Feb 21, 2026
phoenix-framework — spjoshis/claude-code-plugins