Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

dev-rlm开发 RLM

Agent Skill

dev-rlm 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

816

周安装

34

GitHub Stars

公开资料未说明

下载量

272
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dev-rlm(开发 RLM)
来源仓库:https://github.com/molechowski/claude-skills
仓库路径:skills/dev-rlm
安装命令:
npx skills add https://github.com/molechowski/claude-skills --skill dev-rlm
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/molechowski/claude-skills --skill dev-rlm

简介

dev-rlm 实现递归语言模型驱动的任务分解,依据复杂度动态分配子任务并管理上下文查询。

  • 其核心理念是将文件系统视为数据库,按需查询而非全量加载,适用于大型代码库或复杂推理场景。
  • 通过 rlm.py 引擎控制交互策略,支持多轮递归处理,提升 Agent 在深度理解与分层执行方面的能力。
  • 使用前需配置好 Python 环境与依赖项,注意频繁查询可能增加资源消耗,建议监控运行效率。
  • dev-rlm 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Recursive Language Model (RLM) Skill

Core Philosophy

"Context is an external resource, not a local variable."

Three principles:

  1. Never load what you can query — Filesystem is a database. Use rlm.py to query it.
  2. The model decides the strategy — No fixed modes. Assess the task, pick the approach.
  3. Recurse when complexity demands it — If a sub-task is too complex for one agent, that agent spawns its own sub-agents.

Context Engine (rlm.py)

The streaming query engine for filesystem interaction. Never loads all files into RAM.

# Codebase overview (no file reads)
python3 ~/.claude/skills/rlm/scripts/dev-rlm.py stats
python3 ~/.claude/skills/rlm/scripts/dev-rlm.py stats --type py

# Regex search across files (streaming)
python3 ~/.claude/skills/rlm/scripts/dev-rlm.py grep "pattern" --type py

# Substring search with context window
python3 ~/.claude/skills/rlm/scripts/dev-rlm.py peek "error_handler" --context 300

# Read single file or line range
python3 ~/.claude/skills/rlm/scripts/dev-rlm.py read src/auth/login.py --lines 50-100

# Partition files for agent distribution
python3 ~/.claude/skills/rlm/scripts/dev-rlm.py chunk --type py --size 15 --output /tmp/rlm_chunks.json

All commands support --output /path/to/file.json to write results to file.

Fallback: If rlm.py unavailable, use native tools: Grep, Glob, Read, rg, find.

Pipeline: Index → Filter → Map → Reduce

1. Index

Discover structure without reading file content.

python3 ~/.claude/skills/rlm/scripts/dev-rlm.py stats
python3 ~/.claude/skills/rlm/scripts/dev-rlm.py stats --type py

2. Filter

Narrow candidates programmatically.

python3 ~/.claude/skills/rlm/scripts/dev-rlm.py grep "TODO|FIXME|HACK" --type py
rg -l "error" --type py

3. Map (Parallel Agents)

Distribute filtered work across agents. See Strategy Selection below.

4. Reduce

Aggregate results from /tmp/.

jq -s '.' /tmp/rlm_*.json > /tmp/rlm_report.json
jq -s '[.[].findings] | add | group_by(.severity)' /tmp/rlm_*.json

Strategy Selection

Assess the task. Pick the strategy that fits. Combine strategies within a single analysis.

Strategies

StrategyWhenAgent TypeAgents
PeekQuick answer, few files relevantNone (main context)0
Grep + ReadPattern in known locationsNone (main context)0
Fan-out ExploreQuestion about code behavior/patternsExplore2-5
Partition + MapSystematic analysis of many filesgeneral-purpose3-8
Recursive DecomposePartitions still complexgeneral-purpose2-4 per level
Summarize + DrillLarge result set needs synthesis firstMixed2-6

Selection Logic

  1. Run Index (stats). How many candidate files?
  2. < 5 files: Peek or Grep+Read. Handle in main context. No agents needed.
  3. 5-50 files: Fan-out Explore (questions) or Partition+Map (analysis).
  4. 50-200 files: Partition+Map with coarse grouping. Consider Recursive Decompose if partitions remain complex.
  5. 200+ files: Recursive Decompose. Split into domains at depth 0, let workers decide depth-1 strategy.

Do NOT pick a strategy before running Index. Let the data decide.

Agent Patterns

Fan-out Explore

Deploy Explore agents with complementary perspectives.

Task(
  description="Trace error propagation paths",
  prompt="Search for error handling patterns in this codebase.
  Focus on: try/catch, error types, propagation chains.
  Write summary to /tmp/rlm_errors.md",
  subagent_type="Explore",
  run_in_background=true
)

Assign each agent a distinct angle: architecture, patterns, specific modules, tests, dependencies.

Partition + Map

Split files into groups. Each general-purpose agent processes a partition.

Task(
  description="Analyze auth module (partition 1/4)",
  prompt="Analyze these files for security issues:
  [file list from rlm.py chunk output]

  Write findings to /tmp/rlm_p1.json as JSON:
  {\"partition\": 1, \"findings\": [{\"file\": \"\", \"line\": 0, \"issue\": \"\", \"severity\": \"\"}]}",
  subagent_type="general-purpose",
  run_in_background=true
)

Partition sources: rlm.py chunk output, directory boundaries, file type grouping.

Collect Results

TaskOutput(task_id=<agent_id>, block=true, timeout=120000)

Recursive Decomposition

When a sub-task is too complex for a single agent, that agent spawns its own sub-agents. Only general-purpose agents can recurse (Explore agents cannot spawn agents).

When to Recurse

An agent should recurse when:

  • Its assigned partition has 50+ files and the analysis requires understanding, not just scanning
  • It discovers distinct sub-problems (e.g., "this module has 3 independent subsystems")
  • The prompt explicitly allows recursion

Depth Control

LevelRoleMax AgentsSpawns?
0 (Main)Orchestrator5Yes
1 (Worker)Domain analyzer3 per workerYes
2 (Leaf)Module specialist0Never

Hard limits:

  • Max recursion depth: 2 (main → worker → leaf)
  • Max total agents: 15 across all levels
  • Leaf agents MUST NOT spawn sub-agents

Recursive Agent Prompt Template

Include these instructions when spawning agents that may recurse:

"You are analyzing [SCOPE]. You may spawn up to [N] sub-agents if needed.

RECURSION RULES:
- Current depth: [D]. Max depth: 2.
- If depth=2, you are a leaf. Do NOT spawn agents.
- Only recurse if your scope has 50+ files or distinct sub-problems.
- Each sub-agent writes to /tmp/rlm_d[D+1]_[ID].json
- After sub-agents complete, merge their results into your output file."

Output Routing

DepthOutput PathMerged By
2 (leaf)/tmp/rlm_d2_*.jsonDepth-1 parent
1 (worker)/tmp/rlm_d1_*.jsonMain orchestrator
0 (main)/tmp/rlm_report.jsonMain context

Guardrails

Limits

MetricLimit
Max concurrent agents (any level)5
Max total agents (all levels)15
Max recursion depth2
Max files per leaf agent20
Timeout per agent120s
Max spawn rounds (main orchestrator)3

Iteration Control

  • Each round of agent spawning should have a clear purpose
  • If 2 rounds produce no new information, stop
  • Never "try again" — refine the query or change strategy

Token Protection

  • Agents write to /tmp/rlm_*, not to main context
  • Main context reads only summaries and aggregated JSON
  • Never cat agent output files raw into main context

Constraints

Never

  • cat * or load entire codebases into context
  • Spawn agents without running Index (stats) first
  • Skip Filter stage for 50+ file codebases
  • Exceed depth or agent limits
  • Load rlm.py output raw into main context for large results

Always

  • Use rlm.py stats before choosing strategy
  • Filter with rlm.py grep or rg before spawning agents
  • Write agent outputs to /tmp/rlm_*
  • Include recursion depth and limits in recursive agent prompts
  • Clean up /tmp/rlm_* after delivering results

Fallback (Without rlm.py)

If rlm.py is unavailable, use native Claude Code tools:

rlm.py commandNative equivalent
stats`find. -type f \wc -l + tree -L 2 -I 'node_modules\.git'`
grepGrep tool or rg -l "pattern" --type py
peekGrep tool with -C context
readRead tool with offset/limit
chunkGlob + manual partitioning

The pipeline and strategy selection remain the same. Only the tooling changes.

Integration

  • rlm.py for Index/Filter stages
  • Explore agents for fan-out investigation
  • general-purpose agents for partition+map and recursive decomposition
  • rg/grep as rlm.py fallback for Filter
  • cli-jq for Reduce stage (merge and filter results)

Quick Reference

See quick-reference.md for decision tree and command patterns.

Credits

Based on the RLM paradigm (arXiv:2512.24601). Original skill by BowTiedSwan.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.42%
按下载量换算99

Claude

28.88%
按下载量换算79

Cursor

17.72%
按下载量换算48

Gemini CLI

8.99%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/molechowski/claude-skills --skill dev-rlm 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills