error-handling
No SKILL.md available for this skill.
View on GitHubMore from j-morgan6/elixir-claude-optimization
ecto-essentials
MANDATORY for ALL database work. Invoke before modifying schemas, queries, or migrations.
5liveview-lifecycle
INVOKE BEFORE working with LiveView rendering phases. REQUIRED for understanding static vs connected rendering, safe assign access with assigns[:key], mount initialization, and preventing KeyError crashes. Critical for avoiding common LiveView bugs.
5phoenix-static-files
INVOKE BEFORE serving uploaded files or static content. REQUIRED for static_paths configuration, Plug.Static setup, and troubleshooting 404 errors on static files. Critical when files uploaded but not accessible via HTTP.
5ecto-database
INVOKE BEFORE modifying any Ecto schema, query, or migration. REQUIRED for schemas, changesets, queries, associations, preloading, transactions, and migrations. Essential for all database operations.
4