rlmgrep 0.1.6__tar.gz → 0.1.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rlmgrep
3
- Version: 0.1.6
3
+ Version: 0.1.7
4
4
  Summary: Grep-shaped CLI search powered by DSPy RLM
5
5
  Author: rlmgrep
6
6
  License: MIT
@@ -70,7 +70,8 @@ Common options:
70
70
  - `--no-recursive` do not recurse directories
71
71
  - `-a`, `--text` treat binary files as text
72
72
  - `-y`, `--yes` skip file count confirmation
73
- - `--stdin-files` treat stdin as newline-delimited file paths
73
+ - `--files-from-stdin` treat stdin as newline-delimited file paths (e.g., `rg -l`)
74
+ - `--files-from-rg` alias for `--files-from-stdin`
74
75
  - `--model`, `--sub-model` override model names
75
76
  - `--api-key`, `--api-base`, `--model-type` override provider settings
76
77
  - `--max-iterations`, `--max-llm-calls` cap RLM search effort
@@ -180,6 +181,14 @@ If more than one provider key is set and the model does not make the provider ob
180
181
  - Converted image/audio text is cached in sidecar files named `<original>.<ext>.md` next to the original file and reused on subsequent runs.
181
182
  - Use `-a/--text` to force binary files to be read as text (UTF-8 with replacement).
182
183
 
184
+ ## Skill (Anthropic-style)
185
+
186
+ A ready-to-copy skill lives in:
187
+
188
+ - `skills/rlmgrep-usage/SKILL.md`
189
+
190
+ Install it by copying the folder into your agent’s skills directory (for example, `~/.claude/skills/rlmgrep-usage/`), then invoke it as `$rlmgrep-usage` in prompts. This is a lightweight, documentation-only skill meant to guide when to use rlmgrep vs `rg`/`grep`.
191
+
183
192
  ## Development
184
193
 
185
194
  - Install locally: `pip install -e .` or `uv tool install .`
@@ -58,7 +58,8 @@ Common options:
58
58
  - `--no-recursive` do not recurse directories
59
59
  - `-a`, `--text` treat binary files as text
60
60
  - `-y`, `--yes` skip file count confirmation
61
- - `--stdin-files` treat stdin as newline-delimited file paths
61
+ - `--files-from-stdin` treat stdin as newline-delimited file paths (e.g., `rg -l`)
62
+ - `--files-from-rg` alias for `--files-from-stdin`
62
63
  - `--model`, `--sub-model` override model names
63
64
  - `--api-key`, `--api-base`, `--model-type` override provider settings
64
65
  - `--max-iterations`, `--max-llm-calls` cap RLM search effort
@@ -168,6 +169,14 @@ If more than one provider key is set and the model does not make the provider ob
168
169
  - Converted image/audio text is cached in sidecar files named `<original>.<ext>.md` next to the original file and reused on subsequent runs.
169
170
  - Use `-a/--text` to force binary files to be read as text (UTF-8 with replacement).
170
171
 
172
+ ## Skill (Anthropic-style)
173
+
174
+ A ready-to-copy skill lives in:
175
+
176
+ - `skills/rlmgrep-usage/SKILL.md`
177
+
178
+ Install it by copying the folder into your agent’s skills directory (for example, `~/.claude/skills/rlmgrep-usage/`), then invoke it as `$rlmgrep-usage` in prompts. This is a lightweight, documentation-only skill meant to guide when to use rlmgrep vs `rg`/`grep`.
179
+
171
180
  ## Development
172
181
 
173
182
  - Install locally: `pip install -e .` or `uv tool install .`
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "rlmgrep"
3
- version = "0.1.6"
3
+ version = "0.1.7"
4
4
  description = "Grep-shaped CLI search powered by DSPy RLM"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -1,2 +1,2 @@
1
1
  __all__ = ["__version__"]
2
- __version__ = "0.1.6"
2
+ __version__ = "0.1.7"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rlmgrep
3
- Version: 0.1.6
3
+ Version: 0.1.7
4
4
  Summary: Grep-shaped CLI search powered by DSPy RLM
5
5
  Author: rlmgrep
6
6
  License: MIT
@@ -70,7 +70,8 @@ Common options:
70
70
  - `--no-recursive` do not recurse directories
71
71
  - `-a`, `--text` treat binary files as text
72
72
  - `-y`, `--yes` skip file count confirmation
73
- - `--stdin-files` treat stdin as newline-delimited file paths
73
+ - `--files-from-stdin` treat stdin as newline-delimited file paths (e.g., `rg -l`)
74
+ - `--files-from-rg` alias for `--files-from-stdin`
74
75
  - `--model`, `--sub-model` override model names
75
76
  - `--api-key`, `--api-base`, `--model-type` override provider settings
76
77
  - `--max-iterations`, `--max-llm-calls` cap RLM search effort
@@ -180,6 +181,14 @@ If more than one provider key is set and the model does not make the provider ob
180
181
  - Converted image/audio text is cached in sidecar files named `<original>.<ext>.md` next to the original file and reused on subsequent runs.
181
182
  - Use `-a/--text` to force binary files to be read as text (UTF-8 with replacement).
182
183
 
184
+ ## Skill (Anthropic-style)
185
+
186
+ A ready-to-copy skill lives in:
187
+
188
+ - `skills/rlmgrep-usage/SKILL.md`
189
+
190
+ Install it by copying the folder into your agent’s skills directory (for example, `~/.claude/skills/rlmgrep-usage/`), then invoke it as `$rlmgrep-usage` in prompts. This is a lightweight, documentation-only skill meant to guide when to use rlmgrep vs `rg`/`grep`.
191
+
183
192
  ## Development
184
193
 
185
194
  - Install locally: `pip install -e .` or `uv tool install .`
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes