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
|
@@ -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(
|
|
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(
|
|
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,
|
|
3663
|
+
Math.max(0, mergedActivities.length - viewerRows)
|
|
3658
3664
|
)
|
|
3659
3665
|
);
|
|
3660
3666
|
}
|
package/package.json
CHANGED