|
8 | 8 |
|
9 | 9 | <span class="rlm-badge rlm-badge--purple">v0.1.5</span> |
10 | 10 | <span class="rlm-badge rlm-badge--green">Python 3.11+</span> |
11 | | -<span class="rlm-badge rlm-badge--blue">Apache-2.0</span> |
| 11 | +<span class="rlm-badge rlm-badge--blue">Apache 2.0</span> |
12 | 12 |
|
13 | 13 | </div> |
14 | 14 |
|
@@ -101,39 +101,39 @@ Risk assessment with **40+ rules**, 6 approval modes, and full audit logging to |
101 | 101 |
|
102 | 102 | <div class="rlm-quickstart" markdown> |
103 | 103 |
|
104 | | -### Install & Launch |
| 104 | +**Install and launch** |
105 | 105 |
|
106 | 106 | ```bash |
107 | 107 | uv tool install "rlm-code[tui,llm-all]" |
108 | 108 | rlm-code |
109 | 109 | ``` |
110 | 110 |
|
111 | | -### Connect to a model |
| 111 | +**Connect to a model** |
112 | 112 |
|
113 | | -``` |
| 113 | +```text |
114 | 114 | /connect anthropic claude-opus-4-6 |
115 | 115 | ``` |
116 | 116 |
|
117 | | -### Run your first benchmark |
| 117 | +**Run your first benchmark** |
118 | 118 |
|
119 | | -``` |
| 119 | +```text |
120 | 120 | /rlm bench preset=dspy_quick |
121 | 121 | ``` |
122 | 122 |
|
123 | | -### Keep runs bounded |
| 123 | +**Keep runs bounded** |
124 | 124 |
|
125 | | -``` |
| 125 | +```text |
126 | 126 | /rlm run "small scoped task" steps=4 timeout=30 budget=60 |
127 | 127 | /rlm abort all |
128 | 128 | ``` |
129 | 129 |
|
130 | | -### Compare benchmark output |
| 130 | +**Compare benchmark output** |
131 | 131 |
|
132 | | -``` |
| 132 | +```text |
133 | 133 | /rlm bench compare candidate=latest baseline=previous |
134 | 134 | ``` |
135 | 135 |
|
136 | | -### Switch to the Research tab |
| 136 | +**Switch to the Research tab** |
137 | 137 |
|
138 | 138 | Press `Ctrl+5` or `F6` to open the **Research** tab to see your run's dashboard, trajectory, reward curves, and live events. |
139 | 139 |
|
@@ -181,27 +181,27 @@ graph TB |
181 | 181 |
|
182 | 182 | ## 📋 Feature Matrix |
183 | 183 |
|
184 | | -| Feature | Status | Module | |
185 | | -|---------|--------|--------| |
186 | | -| 🧠 RLM Runner (multi-paradigm) | ✅ | `rlm_code.rlm.runner` | |
187 | | -| 🧪 Pure RLM Environment | ✅ | `rlm_code.rlm.pure_rlm_environment` | |
188 | | -| 📡 Event System (27+ types) | ✅ | `rlm_code.rlm.events` | |
189 | | -| 🎯 Policy Lab (16 policies) | ✅ | `rlm_code.rlm.policies` | |
190 | | -| 🔒 HITL Approval Gates | ✅ | `rlm_code.rlm.approval` | |
191 | | -| 📊 Observability (7 sinks) | ✅ | `rlm_code.rlm.observability` | |
192 | | -| 🏆 Benchmarks (10 presets) | ✅ | `rlm_code.rlm.benchmarks` | |
193 | | -| 📊 Leaderboard | ✅ | `rlm_code.rlm.leaderboard` | |
194 | | -| ⏪ Session Replay | ✅ | `rlm_code.rlm.session_replay` | |
195 | | -| 🔁 Paradigm Comparison | ✅ | `rlm_code.rlm.comparison` | |
196 | | -| 📈 Trajectory Logging | ✅ | `rlm_code.rlm.trajectory` | |
197 | | -| 🧹 Memory Compaction | ✅ | `rlm_code.rlm.memory_compaction` | |
198 | | -| 📦 6 Sandbox Runtimes | ✅ | `rlm_code.sandbox.runtimes` | |
199 | | -| 🤖 12+ LLM Providers | ✅ | `rlm_code.models` | |
200 | | -| 🔌 MCP Server | ✅ | `rlm_code.mcp` | |
201 | | -| 🖥️ Unified TUI (5 tabs) | ✅ | `rlm_code.ui.tui_app` | |
202 | | -| ⌨️ 50+ Slash Commands | ✅ | `rlm_code.commands` | |
203 | | -| ✅ Code Validation | ✅ | `rlm_code.validation` | |
204 | | -| 🧩 Framework Adapters | ✅ | `rlm_code.rlm.frameworks` | |
| 184 | +| Feature | Module | |
| 185 | +|---------|--------| |
| 186 | +| 🧠 RLM Runner (multi-paradigm) | `rlm_code.rlm.runner` | |
| 187 | +| 🧪 Pure RLM Environment | `rlm_code.rlm.pure_rlm_environment` | |
| 188 | +| 📡 Event System (27+ types) | `rlm_code.rlm.events` | |
| 189 | +| 🎯 Policy Lab (16 policies) | `rlm_code.rlm.policies` | |
| 190 | +| 🔒 HITL Approval Gates | `rlm_code.rlm.approval` | |
| 191 | +| 📊 Observability (7 sinks) | `rlm_code.rlm.observability` | |
| 192 | +| 🏆 Benchmarks (10 presets) | `rlm_code.rlm.benchmarks` | |
| 193 | +| 📊 Leaderboard | `rlm_code.rlm.leaderboard` | |
| 194 | +| ⏪ Session Replay | `rlm_code.rlm.session_replay` | |
| 195 | +| 🔁 Paradigm Comparison | `rlm_code.rlm.comparison` | |
| 196 | +| 📈 Trajectory Logging | `rlm_code.rlm.trajectory` | |
| 197 | +| 🧹 Memory Compaction | `rlm_code.rlm.memory_compaction` | |
| 198 | +| 📦 6 Sandbox Runtimes | `rlm_code.sandbox.runtimes` | |
| 199 | +| 🤖 12+ LLM Providers | `rlm_code.models` | |
| 200 | +| 🔌 MCP Server | `rlm_code.mcp` | |
| 201 | +| 🖥️ Unified TUI (5 tabs) | `rlm_code.ui.tui_app` | |
| 202 | +| ⌨️ 50+ Slash Commands | `rlm_code.commands` | |
| 203 | +| Code Validation | `rlm_code.validation` | |
| 204 | +| 🧩 Framework Adapters | `rlm_code.rlm.frameworks` | |
205 | 205 |
|
206 | 206 | --- |
207 | 207 |
|
|
0 commit comments