hillclimb 0.1.3 → 0.1.5
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 +20 -2
- package/dist/cli.js +522 -316
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Extract AI coding tool sessions (Claude Code, Cursor, Codex, opencode) and uploa
|
|
|
5
5
|
## Quickstart
|
|
6
6
|
|
|
7
7
|
```sh
|
|
8
|
-
npx hillclimb
|
|
8
|
+
npx hillclimb
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Run in any git repo. Sessions auto-upload when they end.
|
|
@@ -18,7 +18,25 @@ Shows login and hook status for the current repo.
|
|
|
18
18
|
|
|
19
19
|
## Hooks
|
|
20
20
|
|
|
21
|
-
`hillclimb
|
|
21
|
+
`hillclimb` detects which tools you use (`~/.claude`, `~/.cursor`, `~/.codex`, `~/.local/share/opencode`) and installs upload + git-trace hooks for each. You might want to gitignore the respective directories for the tools you use in your repo.
|
|
22
|
+
|
|
23
|
+
To manually export historical logs instead of configuring auto-upload, run:
|
|
24
|
+
|
|
25
|
+
```sh
|
|
26
|
+
npx hillclimb export
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Logs
|
|
30
|
+
|
|
31
|
+
Hillclimb writes one log file per day to `~/.hillclimb/logs/YYYY-MM-DD.log`. Timestamps and the daily filename are in Pacific Time, so logs line up with Hillclimb's internal clock regardless of your timezone.
|
|
32
|
+
|
|
33
|
+
Each hook firing tags every line it writes (parent + worker) with a short correlation ID, e.g. `[a1b2c3]`. To follow one flow across interleaved hook runs:
|
|
34
|
+
|
|
35
|
+
```sh
|
|
36
|
+
grep '\[a1b2c3\]' ~/.hillclimb/logs/$(TZ=America/Los_Angeles date +%F).log
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
HTTP calls log method, path, status, and latency. Auth codes and presigned-URL signatures are deliberately omitted.
|
|
22
40
|
|
|
23
41
|
## License
|
|
24
42
|
|