phoenix-pubsub-patterns

phoenix-pubsub-patterns is a skill for Claude Code, Codex from j-morgan6/elixir-phoenix-guide. It costs 33 tokens per session (1,933 once invoked), scanned A, original, MIT.

A set of patterns for Phoenix.PubSub, Phoenix's system for sending messages between parts of an application so connected users can see updates in real time. It covers subscriptions, message handling, topic names, and tests.

In plain words
What is it for?
Use it when adding live updates to Phoenix LiveView features, such as notifying pages about changed records, and when testing the full update flow.
Why use it?
It prevents common real-time bugs, such as subscribing during the wrong render, putting business logic in the page layer, or handling messages as if they came from a user.

Skill for Claude CodeCodex

Part of the elixir-phoenix-guide plugin — 19 skills, 3 hooks shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/j-morgan6/elixir-phoenix-guide/phoenix-pubsub-patterns
Any agent
npx skills add j-morgan6/elixir-phoenix-guide --skill phoenix-pubsub-patterns
Clone the repo
git clone --depth 1 https://github.com/j-morgan6/elixir-phoenix-guide

Made for: Claude Code, Codex.

Or install elixir-phoenix-guide, the plugin that ships this one along with the rest of its 19 skills, 3 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for phoenix-pubsub-patterns

README.md
[![agentmods](https://agentmods.dev/badge/skills/j-morgan6/elixir-phoenix-guide/phoenix-pubsub-patterns.svg)](https://agentmods.dev/skills/j-morgan6/elixir-phoenix-guide/phoenix-pubsub-patterns)
Your own site
<a href="https://agentmods.dev/skills/j-morgan6/elixir-phoenix-guide/phoenix-pubsub-patterns"><img src="https://agentmods.dev/badge/skills/j-morgan6/elixir-phoenix-guide/phoenix-pubsub-patterns.svg" alt="Measured on agentmods" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,933 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00033 $0.01933
Opus 5 $0.00016 $0.00966
Sonnet 5 $0.00007 $0.00387
Haiku 4.5 $0.00003 $0.00193

Measured 5d ago against content hash d116bd641692, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

phoenix-pubsub-patterns scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/phoenix-pubsub-patterns/SKILL.md · 267 lines

How it starts

The opening of the file, as written. The whole thing — 267 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Phoenix PubSub Patterns

RULES — Follow these with no exceptions

  1. Always guard subscriptions with if connected?(socket) — the disconnected render runs in a separate short-lived process; subscribing there is wasted work, not a duplicate (LiveView mounts twice: once static, once connected)
  2. Broadcast from contexts, not LiveViews — keeps real-time logic in the business layer; LiveViews only subscribe and react
  3. Use consistent topic naming"resource:id" for specific resources, "resource:action" for collection-wide events
  4. Handle PubSub messages in handle_info/2 — never in handle_event/3; PubSub messages are process messages, not client events
  5. Prefer update/3 when the new value derives from the oldupdate(socket, :posts, &[post | &1]) reads better than reaching into socket.assigns manually. Both are equivalent; this is style, not safety.
  6. Test PubSub by calling context functions and asserting LiveView updates — don't test PubSub.broadcast directly; test the full cycle

Subscription Pattern

Subscribe in mount/3 only when connected. The static render doesn't need real-time updates.

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

  @impl true
  def mount(_params, _session, socket) do
    if connected?(socket) do
      Phoenix.PubSub.subscribe(MyApp.PubSub, "posts")
    end

    {:ok, assign(socket, :posts, list_posts())}
  end

  @impl true
  def handle_info({:post_created, post}, socket) do
    {:noreply, update(socket, :posts, fn posts -> [post | posts] end)}
  end

  @impl true
  def handle_info({:post_updated, post}, socket) do
    {:noreply,
     update(socket, :posts, fn posts ->
       Enum.map(posts, fn
         p when p.id == post.id -> post
         p -> p
       end)
     end)}
  end

  @impl true
  def handle_info({:post_deleted, post}, socket) do
    {:noreply,
     update(socket, :posts, fn posts ->
       Enum.reject(posts, &(&1.id == post.id))
     end)}
  end
end

Read the full file on GitHub · 267 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 267 lines · 33 tokens per session scan A d116bd641692

Subscribe to this mod's changes

phoenix-pubsub-patterns is a skill published in the GitHub repository j-morgan6/elixir-phoenix-guide (159 stars, last pushed 2mo ago), licensed MIT. It adds 33 tokens to every session and 1,933 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

imagegen

Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…

openai/codex · 113 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens