rudel 0.1.4 → 0.1.7
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.
- package/README.md +11 -6
- package/dist/cli.js +12259 -1670
- package/package.json +27 -2
package/README.md
CHANGED
|
@@ -34,11 +34,14 @@ Registers a [Claude Code hook](https://docs.anthropic.com/en/docs/claude-code/ho
|
|
|
34
34
|
|
|
35
35
|
Removes the auto-upload hook.
|
|
36
36
|
|
|
37
|
-
### `rudel upload
|
|
37
|
+
### `rudel upload [session]`
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
Upload session transcripts. Run without arguments to interactively select projects for batch upload, or pass a session ID / file path to upload a single session.
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
|
+
# Interactive project picker (batch upload)
|
|
43
|
+
rudel upload
|
|
44
|
+
|
|
42
45
|
# Upload by session ID
|
|
43
46
|
rudel upload abc123
|
|
44
47
|
|
|
@@ -46,12 +49,14 @@ rudel upload abc123
|
|
|
46
49
|
rudel upload ./path/to/session.jsonl
|
|
47
50
|
|
|
48
51
|
# Preview without uploading
|
|
49
|
-
rudel upload
|
|
52
|
+
rudel upload --dry-run
|
|
50
53
|
|
|
51
|
-
# Auto-classify
|
|
52
|
-
rudel upload
|
|
54
|
+
# Auto-classify sessions
|
|
55
|
+
rudel upload --classify
|
|
53
56
|
```
|
|
54
57
|
|
|
58
|
+
When run without arguments, `rudel upload` scans `~/.claude/projects/` for all projects with session transcripts and presents an interactive picker. The current project (matched from your working directory) and its subfolders are pre-selected. Use arrow keys to navigate, space to toggle, and enter to confirm.
|
|
59
|
+
|
|
55
60
|
### `rudel whoami`
|
|
56
61
|
|
|
57
62
|
Show the currently authenticated user.
|
|
@@ -63,4 +68,4 @@ Clear stored credentials.
|
|
|
63
68
|
## Links
|
|
64
69
|
|
|
65
70
|
- **Web App**: [app.rudel.ai](https://app.rudel.ai)
|
|
66
|
-
- **Issues**: [GitHub Issues](https://github.com/
|
|
71
|
+
- **Issues**: [GitHub Issues](https://github.com/obsessiondb/rudel/issues)
|