بنقرة واحدة
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 ويثبّتها لك.
استنادا إلى تصنيف 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 | 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