repr-cli 0.2.7__tar.gz → 0.2.9__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.
Files changed (39) hide show
  1. {repr_cli-0.2.7 → repr_cli-0.2.9}/PKG-INFO +19 -5
  2. {repr_cli-0.2.7 → repr_cli-0.2.9}/README.md +18 -4
  3. {repr_cli-0.2.7 → repr_cli-0.2.9}/pyproject.toml +1 -1
  4. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/__init__.py +1 -1
  5. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/__main__.py +37 -0
  6. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/cli.py +378 -218
  7. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/doctor.py +37 -0
  8. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/llm.py +37 -0
  9. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/openai_analysis.py +32 -23
  10. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/privacy.py +37 -0
  11. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/telemetry.py +37 -0
  12. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/templates.py +6 -1
  13. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/ui.py +37 -0
  14. repr_cli-0.2.9/repr/updater.py +282 -0
  15. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr_cli.egg-info/PKG-INFO +19 -5
  16. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr_cli.egg-info/SOURCES.txt +1 -0
  17. {repr_cli-0.2.7 → repr_cli-0.2.9}/setup.py +37 -0
  18. {repr_cli-0.2.7 → repr_cli-0.2.9}/LICENSE +0 -0
  19. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/api.py +0 -0
  20. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/auth.py +0 -0
  21. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/config.py +0 -0
  22. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/discovery.py +0 -0
  23. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/extractor.py +0 -0
  24. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/hooks.py +0 -0
  25. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/keychain.py +0 -0
  26. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/storage.py +0 -0
  27. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr/tools.py +0 -0
  28. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr_cli.egg-info/dependency_links.txt +0 -0
  29. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr_cli.egg-info/entry_points.txt +0 -0
  30. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr_cli.egg-info/requires.txt +0 -0
  31. {repr_cli-0.2.7 → repr_cli-0.2.9}/repr_cli.egg-info/top_level.txt +0 -0
  32. {repr_cli-0.2.7 → repr_cli-0.2.9}/setup.cfg +0 -0
  33. {repr_cli-0.2.7 → repr_cli-0.2.9}/tests/test_environment_variables.py +0 -0
  34. {repr_cli-0.2.7 → repr_cli-0.2.9}/tests/test_network_sandboxing.py +0 -0
  35. {repr_cli-0.2.7 → repr_cli-0.2.9}/tests/test_privacy_guarantees.py +0 -0
  36. {repr_cli-0.2.7 → repr_cli-0.2.9}/tests/test_profile_export.py +0 -0
  37. {repr_cli-0.2.7 → repr_cli-0.2.9}/tests/test_repo_identity.py +0 -0
  38. {repr_cli-0.2.7 → repr_cli-0.2.9}/tests/test_stories_review.py +0 -0
  39. {repr_cli-0.2.7 → repr_cli-0.2.9}/tests/test_token_budget.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: repr-cli
3
- Version: 0.2.7
3
+ Version: 0.2.9
4
4
  Summary: A beautiful, privacy-first CLI that analyzes your code repositories and generates a compelling developer profile
5
5
  Author-email: Repr <hello@repr.dev>
6
6
  License: MIT License
@@ -71,7 +71,7 @@ Turn commits into professional narratives for interviews, performance reviews, a
71
71
  > *"I used repr to prep for my Meta interview in 30 minutes. Turned 2 years of commits into 8 STAR-format stories. Nailed every behavioral question."*
72
72
  > **— Sarah, Senior Backend Engineer**
73
73
 
74
- > *"Our sprint demos went from chaos to polished in 5 minutes. Just run `repr since '2 weeks ago'` and export. Stakeholders love it."*
74
+ > *"Our sprint demos went from chaos to polished in 5 minutes. Just run `repr commits --days 14` and export. Stakeholders love it."*
75
75
  > **— Marcus, Engineering Manager**
76
76
 
77
77
  > *"I run repr in a fully air-gapped environment. Zero network calls, 100% local. It's the only tool I trust for this."*
@@ -167,7 +167,7 @@ For full step-by-step guides, see the [documentation](https://repr.dev/docs/cli/
167
167
 
168
168
  ```bash
169
169
  repr init ~/code
170
- repr week
170
+ repr commits --days 7
171
171
  repr generate --local
172
172
  ```
173
173
 
@@ -186,7 +186,7 @@ repr review
186
186
  ### Weekly reflection
187
187
 
188
188
  ```bash
189
- repr week
189
+ repr commits --days 7
190
190
  repr generate --local
191
191
  repr story edit <id>
192
192
  repr story feature <id>
@@ -204,6 +204,20 @@ repr story view <id>
204
204
 
205
205
  [Full guide →](https://repr.dev/docs/cli/workflows/interview-prep)
206
206
 
207
+ ### Generate from a specific timeframe
208
+
209
+ ```bash
210
+ # Last 30 days
211
+ repr generate --days 30 --local
212
+
213
+ # Since a specific date
214
+ repr generate --since 2024-01-01 --local
215
+
216
+ # Natural language dates
217
+ repr generate --since "2 weeks ago" --local
218
+ repr generate --since monday --local
219
+ ```
220
+
207
221
  ### Publish your profile (optional)
208
222
 
209
223
  ```bash
@@ -274,7 +288,7 @@ repr llm use byok:openai
274
288
  | **Local LLM** | `repr generate --local` | Talks only to your local endpoint. |
275
289
  | **BYOK** | `repr llm add <provider>` | Calls your provider directly with your key. |
276
290
  | **Cloud** | `repr generate --cloud` | Requires login; you initiate all network calls. |
277
- | **Offline** | `repr week` / `repr stories` | Pure local operations. |
291
+ | **Offline** | `repr commits` / `repr stories` | Pure local operations. |
278
292
 
279
293
  ## Command help
280
294
 
@@ -14,7 +14,7 @@ Turn commits into professional narratives for interviews, performance reviews, a
14
14
  > *"I used repr to prep for my Meta interview in 30 minutes. Turned 2 years of commits into 8 STAR-format stories. Nailed every behavioral question."*
15
15
  > **— Sarah, Senior Backend Engineer**
16
16
 
17
- > *"Our sprint demos went from chaos to polished in 5 minutes. Just run `repr since '2 weeks ago'` and export. Stakeholders love it."*
17
+ > *"Our sprint demos went from chaos to polished in 5 minutes. Just run `repr commits --days 14` and export. Stakeholders love it."*
18
18
  > **— Marcus, Engineering Manager**
19
19
 
20
20
  > *"I run repr in a fully air-gapped environment. Zero network calls, 100% local. It's the only tool I trust for this."*
@@ -110,7 +110,7 @@ For full step-by-step guides, see the [documentation](https://repr.dev/docs/cli/
110
110
 
111
111
  ```bash
112
112
  repr init ~/code
113
- repr week
113
+ repr commits --days 7
114
114
  repr generate --local
115
115
  ```
116
116
 
@@ -129,7 +129,7 @@ repr review
129
129
  ### Weekly reflection
130
130
 
131
131
  ```bash
132
- repr week
132
+ repr commits --days 7
133
133
  repr generate --local
134
134
  repr story edit <id>
135
135
  repr story feature <id>
@@ -147,6 +147,20 @@ repr story view <id>
147
147
 
148
148
  [Full guide →](https://repr.dev/docs/cli/workflows/interview-prep)
149
149
 
150
+ ### Generate from a specific timeframe
151
+
152
+ ```bash
153
+ # Last 30 days
154
+ repr generate --days 30 --local
155
+
156
+ # Since a specific date
157
+ repr generate --since 2024-01-01 --local
158
+
159
+ # Natural language dates
160
+ repr generate --since "2 weeks ago" --local
161
+ repr generate --since monday --local
162
+ ```
163
+
150
164
  ### Publish your profile (optional)
151
165
 
152
166
  ```bash
@@ -217,7 +231,7 @@ repr llm use byok:openai
217
231
  | **Local LLM** | `repr generate --local` | Talks only to your local endpoint. |
218
232
  | **BYOK** | `repr llm add <provider>` | Calls your provider directly with your key. |
219
233
  | **Cloud** | `repr generate --cloud` | Requires login; you initiate all network calls. |
220
- | **Offline** | `repr week` / `repr stories` | Pure local operations. |
234
+ | **Offline** | `repr commits` / `repr stories` | Pure local operations. |
221
235
 
222
236
  ## Command help
223
237
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "repr-cli"
7
- version = "0.2.7"
7
+ version = "0.2.9"
8
8
  description = "A beautiful, privacy-first CLI that analyzes your code repositories and generates a compelling developer profile"
9
9
  readme = "README.md"
10
10
  license = {file = "LICENSE"}
@@ -10,6 +10,6 @@ try:
10
10
  __version__ = version("repr-cli")
11
11
  except Exception:
12
12
  # Fallback for PyInstaller builds where metadata isn't available
13
- __version__ = "0.2.7"
13
+ __version__ = "0.2.8"
14
14
  __author__ = "Repr"
15
15
  __email__ = "hello@repr.dev"