ワンクリックで
elixir
Elixir conventions, tooling, and CLI commands.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Elixir conventions, tooling, and CLI commands.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Plan mode — iterative exploration and planning. Read-only.
Dev mode — implement features following a plan using TDD. Load when asked to build, implement, code, or apply a plan. Full tools available.
Review mode — evaluate implementations for correctness, security, style, and completeness. Load when asked to review, audit, evaluate, or assess code. Read-only.
todo.txt plain text task tracking. Use when managing tasks — creating, listing, updating status, searching, or completing tasks.
Jira CLI for issue management. Use when asked to list, view, create, transition, or comment on Jira issues, search with JQL, manage sprints, epics, or releases. Use for all Jira/Atlassian operations.
Academic research workflows — PDF parsing, literature review, and paper analysis. Load when working with papers, citations, or academic content.
| name | elixir |
| description | Elixir conventions, tooling, and CLI commands. |
| disable-model-invocation | true |
mix test # Run tests
mix format # Format code
iex -S mix # Interactive shell
mix deps.get && mix deps.compile # Install dependencies
This is a learning context — prefer explanation alongside implementation. When making a non-obvious choice, explain the idiomatic Elixir reasoning behind it.
mix test for tests; ExUnit is the standard frameworkmix format for formattingiex -S mix for interactive explorationmix deps.get and mix deps.compile for dependenciesif/cond where idiomatic|> for readabilitywith for multi-step operations that can failExUnit.Case with async: true where tests are side-effect freesetup blocks for shared stateassert with pattern matching over equality checks where it aids claritydoctest for documented examples in module docs