hillclimb 0.1.0 → 0.1.1
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 +8 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,32 +1,24 @@
|
|
|
1
1
|
# hillclimb
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Extract AI coding tool sessions (Claude Code, Cursor, Codex, opencode) and upload them to a Hillclimb workspace.
|
|
4
4
|
|
|
5
5
|
## Quickstart
|
|
6
6
|
|
|
7
7
|
```sh
|
|
8
|
-
npx hillclimb
|
|
9
|
-
npx hillclimb init # connect the current repo; installs tool-native auto-upload hooks
|
|
10
|
-
npx hillclimb status # show login + hook status for this repo
|
|
8
|
+
npx hillclimb init
|
|
11
9
|
```
|
|
12
10
|
|
|
13
|
-
|
|
11
|
+
Run in any git repo. Sessions auto-upload when they end.
|
|
14
12
|
|
|
15
|
-
|
|
13
|
+
```sh
|
|
14
|
+
npx hillclimb status
|
|
15
|
+
```
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
Shows login and hook status for the current repo.
|
|
18
18
|
|
|
19
19
|
## Hooks
|
|
20
20
|
|
|
21
|
-
`hillclimb init` detects which tools you use (`~/.claude`, `~/.cursor`, `~/.codex`, `~/.local/share/opencode`) and installs upload + git-trace hooks for each.
|
|
22
|
-
|
|
23
|
-
## Configuration
|
|
24
|
-
|
|
25
|
-
- `~/.hillclimb/identity.json` — saved login (cookie), `0600`
|
|
26
|
-
- `~/.hillclimb/projects.json` — per-repo workspace binding, `0600`
|
|
27
|
-
- `~/.hillclimb/logs/<date>.log` — local upload log (not transmitted)
|
|
28
|
-
|
|
29
|
-
Override the API host via `HILLCLIMB_API_URL`.
|
|
21
|
+
`hillclimb init` 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.
|
|
30
22
|
|
|
31
23
|
## License
|
|
32
24
|
|