mintree 0.1.2 → 0.1.3

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 +6 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,19 +16,13 @@ It is a smaller, opinionated cousin of [santree](https://github.com/santiagotosc
16
16
  ## Install
17
17
 
18
18
  ```bash
19
- # mintree isn't on npm yet. Install via git clone + npm link — the
20
- # `npm install -g github:user/repo` flow has a known bug in npm 10+
21
- # where dependencies don't make it into the global install dir.
22
- git clone git@github.com:minex-labs/mintree.git ~/dev/mintree
23
- cd ~/dev/mintree
24
- npm install
25
- npm link
19
+ npm install -g mintree
26
20
 
27
- # To upgrade later:
28
- # cd ~/dev/mintree && git pull && npm install && npm run build
21
+ # Upgrade later:
22
+ # npm update -g mintree
29
23
 
30
24
  # Verify
31
- mintree --version # 0.1.0
25
+ mintree --version # should match the latest published version
32
26
  mintree doctor # checks toolchain (git, gh, claude, tmux, ...)
33
27
 
34
28
  # Enable the shell wrapper so `mintree worktree create` and the
@@ -50,6 +44,8 @@ _MT=${XDG_CACHE_HOME:-$HOME/.cache}/mintree/init-bash.bash
50
44
  EOF
51
45
  ```
52
46
 
47
+ > Working on mintree itself? Clone the repo, run `npm install` and `npm link` instead — that wires `mintree` to your local checkout so source edits show up after `npm run build`.
48
+
53
49
  `mintree doctor` should report **all required checks pass** before you continue. The most common gaps are:
54
50
 
55
51
  - `gh` not authenticated → `gh auth login`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mintree",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Issue-driven git worktrees + Claude Code sessions for repos with an opinionated SDD+TDD flow.",
5
5
  "license": "MIT",
6
6
  "author": "Martin Mineo <mmineo@canarytechnologies.com>",