agenthud 0.11.1 → 0.11.2

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/dist/index.js CHANGED
@@ -15,4 +15,4 @@ Error: Node.js ${MIN_NODE_VERSION}+ is required (current: ${process.version})
15
15
  process.exit(1);
16
16
  }
17
17
  if (!process.env.NODE_ENV) process.env.NODE_ENV = "production";
18
- import("./main-3J6HDPKN.js");
18
+ import("./main-Q5QHXBJW.js");
@@ -19,7 +19,7 @@ var ALL_TYPES = [
19
19
  "glob",
20
20
  "user"
21
21
  ];
22
- var DEFAULT_TYPES = ["response", "bash", "edit", "thinking"];
22
+ var DEFAULT_TYPES = ["user", "response", "bash", "edit", "thinking"];
23
23
  var KNOWN_WATCH_FLAGS = /* @__PURE__ */ new Set([
24
24
  "-w",
25
25
  "--watch",
@@ -69,7 +69,7 @@ Commands:
69
69
  --date YYYY-MM-DD|today|yesterday|-Nd Date to report on
70
70
  --include TYPES Comma-separated types or "all"
71
71
  Types: response,bash,edit,thinking,read,glob,user
72
- Default: response,bash,edit,thinking
72
+ Default: user,response,bash,edit,thinking
73
73
  --format FORMAT Output format: markdown (default) or json
74
74
  --detail-limit N Max chars per activity detail (default: 120, 0 = unlimited)
75
75
  --with-git Merge git commits from each session's project into the timeline
@@ -3584,7 +3584,10 @@ function App({
3584
3584
  } else {
3585
3585
  setIsLive(false);
3586
3586
  setScrollOffset(
3587
- (o) => Math.min(o + 1, Math.max(0, activities.length - viewerRows))
3587
+ (o) => Math.min(
3588
+ o + 1,
3589
+ Math.max(0, mergedActivities.length - viewerRows)
3590
+ )
3588
3591
  );
3589
3592
  }
3590
3593
  }
@@ -3622,7 +3625,10 @@ function App({
3622
3625
  setViewerCursorLine(0);
3623
3626
  setIsLive(false);
3624
3627
  setScrollOffset(
3625
- (o) => Math.min(o + viewerRows, Math.max(0, activities.length - viewerRows))
3628
+ (o) => Math.min(
3629
+ o + viewerRows,
3630
+ Math.max(0, mergedActivities.length - viewerRows)
3631
+ )
3626
3632
  );
3627
3633
  }
3628
3634
  },
@@ -3654,7 +3660,7 @@ function App({
3654
3660
  setScrollOffset(
3655
3661
  (o) => Math.min(
3656
3662
  o + Math.floor(viewerRows / 2),
3657
- Math.max(0, activities.length - viewerRows)
3663
+ Math.max(0, mergedActivities.length - viewerRows)
3658
3664
  )
3659
3665
  );
3660
3666
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agenthud",
3
- "version": "0.11.1",
3
+ "version": "0.11.2",
4
4
  "description": "CLI tool to monitor agent status in real-time. Works with Claude Code, multi-agent workflows, and any AI agent system.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",