hunkdiff 0.3.0 → 0.4.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.
Files changed (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # hunk
2
2
 
3
+ <p align="center">
4
+ <a href="https://github.com/modem-dev/hunk/actions/workflows/ci.yml?branch=main"><img src="https://img.shields.io/github/actions/workflow/status/modem-dev/hunk/ci.yml?branch=main&style=for-the-badge&label=CI" alt="CI status"></a>
5
+ <a href="https://github.com/modem-dev/hunk/releases"><img src="https://img.shields.io/github/v/release/modem-dev/hunk?style=for-the-badge" alt="Latest release"></a>
6
+ <a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-blue.svg?style=for-the-badge" alt="MIT License"></a>
7
+ </p>
8
+
3
9
  Hunk is a terminal diff viewer for reviewing agent-authored changesets with a desktop-style UI.
4
10
 
5
11
  - full-screen multi-file review stream
@@ -104,6 +110,8 @@ Takeaway:
104
110
 
105
111
  Hunk can run a local MCP daemon that brokers commands to live Hunk TUI sessions.
106
112
 
113
+ Opening a normal Hunk review session now tries to register with the daemon automatically and will auto-start it on loopback when needed. You can still run the daemon explicitly:
114
+
107
115
  ```bash
108
116
  hunk mcp serve
109
117
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hunkdiff",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Desktop-inspired terminal diff viewer for understanding agent-authored changesets.",
5
5
  "bin": {
6
6
  "hunk": "./bin/hunk.cjs"
@@ -30,9 +30,9 @@
30
30
  "node": ">=18"
31
31
  },
32
32
  "optionalDependencies": {
33
- "hunkdiff-darwin-arm64": "0.3.0",
34
- "hunkdiff-darwin-x64": "0.3.0",
35
- "hunkdiff-linux-x64": "0.3.0"
33
+ "hunkdiff-darwin-arm64": "0.4.0",
34
+ "hunkdiff-darwin-x64": "0.4.0",
35
+ "hunkdiff-linux-x64": "0.4.0"
36
36
  },
37
37
  "license": "MIT",
38
38
  "publishConfig": {