You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix documentation and CLI error messages based on skill execution analysis (#10)
Documentation:
- Update session file location from "working directory" to home directory (~/)
in agent-guide.md, troubleshooting.md, and reference.md
- Add "Exporting Session Content to Files" section explaining slice vs next
- Clarify parallel processing workflow requires chunking before next command
- Add Claude Code integration setup instructions to README.md
CLI:
- Add helpful error message to stderr when `rlm next --raw` fails due to
missing chunks: "Error: No chunks available. Run 'rlm chunk' first."
- Use assembly version instead of hardcoded version string in Program.cs
@@ -193,6 +193,33 @@ rlm next --raw --session parent
193
193
echo"$SUMMARY"| rlm store summary - --session child_1
194
194
```
195
195
196
+
### Exporting Session Content to Files
197
+
198
+
Use `slice` when you need to export session content to files (e.g., for parallel worker input). Use `next` for iterative chunk-by-chunk processing within a single agent.
-`slice` works on the raw document content by character position
221
+
-`next` requires chunking first and iterates through the chunk buffer
222
+
196
223
### Nested Recursion (Worker-Spawns-Worker)
197
224
198
225
Workers can spawn child workers for true recursive parallel decomposition. This enables processing of arbitrarily large documents through hierarchical delegation.
Copy file name to clipboardExpand all lines: Solutions/Rlm.Cli/Rlm.Cli.csproj
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,6 @@
50
50
51
51
<PropertyGroup>
52
52
<PackageId>rlm</PackageId>
53
-
<Version>1.0.0</Version>
54
53
<Authors>endjin</Authors>
55
54
<Description>A .NET CLI tool for processing large documents that exceed LLM context windows. Implements streaming content decomposition, multi-turn processing, and result aggregation.</Description>
0 commit comments