hillclimb 0.1.0

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Hillclimb
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # hillclimb
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.
4
+
5
+ ## Quickstart
6
+
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
11
+ ```
12
+
13
+ Once a repo is initialized, every subsequent coding session in that repo auto-uploads its transcript when the session ends.
14
+
15
+ ## Interactive export
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`).
18
+
19
+ ## Hooks
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`.
30
+
31
+ ## License
32
+
33
+ MIT — see [LICENSE](LICENSE).