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.
Files changed (2) hide show
  1. package/README.md +8 -16
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,32 +1,24 @@
1
1
  # hillclimb
2
2
 
3
- CLI to extract AI coding-tool session logs (Claude Code, Cursor, Codex, opencode) and upload them to a Hillclimb workspace. Runs entirely via `npx` — no global install required.
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 login # sign in (opens your browser)
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
- Once a repo is initialized, every subsequent coding session in that repo auto-uploads its transcript when the session ends.
11
+ Run in any git repo. Sessions auto-upload when they end.
14
12
 
15
- ## Interactive export
13
+ ```sh
14
+ npx hillclimb status
15
+ ```
16
16
 
17
- Run `npx hillclimb` with no arguments inside a repo to pick a source, time range, and output format for a one-off export (zip to `~/Downloads`).
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. All hooks invoke `npx hillclimb …` so upgrading is just clearing the npx cache the package never needs to be on `PATH`.
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hillclimb",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Extract and export AI coding tool logs grouped by repo",
5
5
  "license": "MIT",
6
6
  "type": "module",