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).
91
91%
Does it follow best practices?
Impact
91%
1.37xAverage score across 56 eval scenarios
Advisory
Suggest reviewing before use
Your team has been building a Phoenix blog feature for MyApp. The core context module (MyApp.Blog) and its associated Ecto schema (MyApp.Blog.Post) have been written by another developer and are stored in the inputs/ directory. There's also a LiveView index page (MyAppWeb.PostLive.Index) that lists posts belonging to the currently authenticated user and allows them to delete posts.
Before this code can be merged, it needs a comprehensive ExUnit test suite. You've been handed the stub implementation files and asked to write tests covering the Blog context functions (create_post/1, update_post/2, delete_post/1, list_posts/1) and the PostLive.Index LiveView page. The codebase is a standard Phoenix project — DataCase and ConnCase are already defined in test/support/ and you may use MyApp.Repo and the standard sandbox setup without implementing them yourself.
The team cares that the test suite is maintainable and production-ready: tests should not be flaky and the suite should cover both the happy path and edge cases, including scenarios where a user is not logged in or does not own the resource they are trying to act on.
Write ExUnit test files covering the MyApp.Blog context and the MyAppWeb.PostLive.Index LiveView. Also write any supporting test helper files you need.
Name each output file according to standard Phoenix project conventions. Do not include mix.exs, config files, or migration files.
The test files should be written as if they belong to a real Phoenix project. Reference the source modules in inputs/ (e.g., MyApp.Blog, MyApp.Blog.Post, MyAppWeb.PostLive.Index) as the subjects under test.
.tessl-plugin
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10
scenario-11
scenario-12
scenario-13
scenario-14
scenario-15
scenario-16
scenario-17
scenario-18
scenario-19
scenario-20
scenario-21
scenario-22
scenario-23
scenario-24
scenario-25
scenario-26
scenario-27
scenario-28
scenario-29
scenario-30
scenario-31
scenario-32
scenario-33
scenario-34
scenario-35
scenario-36
scenario-37
scenario-38
scenario-39
scenario-40
scenario-41
scenario-42
scenario-43
scenario-44
scenario-45
scenario-46
scenario-47
scenario-48
scenario-49
scenario-50
scenario-51
scenario-52
scenario-53
scenario-54
scenario-55
scenario-56
skills
frameworks
ash-framework
infrastructure
orchestration
elixir-skill-router
personas
phoenix
quality
security
security-essentials
tooling
mix-tasks-generators