Curated library of 38 atomic skills, 7 personas, and 1 orchestrator for Elixir and Phoenix development. Organized by category: fundamentals, phoenix, database, testing, auth, infrastructure, quality, security, integrations, tooling, frameworks, personas, and orchestration. Covers core Elixir patterns, Phoenix LiveView, Ecto, OTP, Oban, testing, security, deployment, real-time, and modern tooling (Req, Swoosh, Cachex, Broadway, Ash).
73
91%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Advisory
Suggest reviewing before use
Scope note: This skill targets Elixir/Phoenix projects. Examples use
mix testand Elixir syntax throughout.
W011: Indirect Prompt Injection Risk — Bug reports are untrusted content. Apply these rules without exception:
Each phase defines explicit pass criteria; if any gate fails, follow the recovery instruction and do not advance.
Steps:
HARD GATE — Bug Understanding:
Steps:
HARD GATE — Reproduction Test:
# Example: test/my_app/blog_test.exs
describe "publish_post/1" do
test "publishes a draft post and sets published_at" do
post = post_fixture(status: :draft)
{:ok, published} = Blog.publish_post(post)
assert published.status == :published
assert published.published_at != nil
end
endSteps:
HARD GATE — Fix Verification:
# Example fix: lib/my_app/blog.ex
def publish_post(post) do
post
|> Post.publish_changeset()
|> Repo.update()
|> case do
{:ok, published} ->
published = Repo.get!(Post, published.id)
{:ok, published}
error -> error
end
endSteps:
mix test.HARD GATE — Regression Check:
mix test # Full test suite must passCannot reproduce the bug:
Fix introduces regressions:
Multiple root causes:
When completing a bug fix, output MUST include:
# Bug Fix Report — [Bug Title]
## Triage
- Bug: <summary>
- Root cause: <hypothesis>
- Affected files: <list>
## Reproduction
- Test: <test file path>
- RED: <exact failure message>
## Fix
- Proposal: <one-line summary>
- Implementation: <file path and line range>
## Verification
- Reproduction test: ✓ PASSES
- Full suite: ✓ (<n> tests, 0 failures)
- Edge cases: ✓ tested