ワンクリックで
runtime-scripts
Use Mix.install to execute standalone Elixir scripts with dynamic dependencies for tasks, tests, and API logic
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use Mix.install to execute standalone Elixir scripts with dynamic dependencies for tasks, tests, and API logic
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
行为驱动开发编译器 (BDDC)。使用此技能通过 DSL 管理 BDD 测试,该 DSL 可编译为 ExUnit 测试。包括从 .dsl 文件生成测试、验证指令集以及通过 lint 确保测试质量。
Create and use Mix.install standalone scripts for debugging Elixir code, testing APIs, exploring libraries, and isolating problems. Use when you need to test third-party integrations, verify library behavior, debug signatures, or prototype solutions outside the main project.
调用 Google Jules API 进行远程代理协作编程。适用于跨仓库重构、自动 PR 生成、以及需要利用 Google 强大远程代理能力的场景。
Remote debugging for BEAM/Elixir in production-like environments. Use when you need to enter a live container or host via kubectl exec or ssh to run IEx/remote RPC, reproduce issues, and collect telemetry/metrics safely with human-in-the-loop approval.
Invoke external agent CLIs (codex/gemini/claude) via shell from chat.
Manage Elixir dependencies at runtime using Mix
| name | runtime-scripts |
| description | Use Mix.install to execute standalone Elixir scripts with dynamic dependencies for tasks, tests, and API logic |
This skill enables you to create and execute self-contained Elixir scripts. This is the preferred way to run temporary logic, test new libraries, or perform one-off data migrations without modifying the main project's mix.exs.
Use Mix.install/2 at the top of an .exs file to manage dependencies.
Mix.install([
{:jason, "~> 1.4"},
{:req, "~> 0.5"}
])
defmodule TaskRunner do
def run do
# Perform complex logic here
IO.puts("Script executed successfully.")
end
end
TaskRunner.run()
{:cortex, path: "."}.shell tool: elixir my_script.exs.phoenix-playground skill for detailed instructions on ports, styling, and LiveView structure.