원클릭으로
rlm
Recursive Language Model pattern for analyzing data too large for a single context window
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Recursive Language Model pattern for analyzing data too large for a single context window
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
行为驱动开发编译器 (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
SOC 직업 분류 기준
| name | rlm |
| description | Recursive Language Model pattern for analyzing data too large for a single context window |
Use this pattern when:
llm_query.(prompt, data) — Query sub-LLM with default modelllm_query_with_model.(model, prompt, data) — Query with specific modelllm_query_many.(chunks, prompt) — Parallel batch query (default concurrency: 4)llm_query_many.(chunks, prompt, max_concurrency: 8, model: "gpt-4o") — With optionsiex> raw = File.read!("/path/to/large_file.log")
iex> lines = String.split(raw, "\n")
iex> length(lines) # Check size
iex> Enum.take(lines, 5) # Sample first few lines
iex> chunks = Enum.chunk_every(lines, 500) |> Enum.map(&Enum.join(&1, "\n"))
iex> length(chunks) # How many chunks?
iex> results = llm_query_many.(chunks, "Identify error patterns and anomalies in this log segment. Return a bullet list.")
iex> combined = Enum.with_index(results, 1) |> Enum.map(fn {r, i} -> "## Chunk #{i}\n#{r}" end) |> Enum.join("\n\n")
iex> summary = llm_query.("Synthesize these analyses into a final report with root causes and recommendations:", combined)
Enum.take(lines, 10) to understand data structure before chunkingshell("wc -l /path/to/file") to check file size firstwrite_file to save the final synthesis report