@crouton-kit/humanloop 0.4.11 → 0.4.13

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.
@@ -775,7 +775,13 @@ export class InboxController {
775
775
  if (selected === undefined)
776
776
  return [` ${DIM}Select a pending interaction.${RESET}`];
777
777
  const source = sourceLabel(selected.source);
778
- const lines = [` ${BOLD}${CYAN}${selected.title}${RESET}`, '', ` ${DIM}${selected.kind}${source === undefined ? '' : ` · ${source}`}${RESET}`];
778
+ const lines = [` ${BOLD}${CYAN}${selected.title}${RESET}`, ''];
779
+ if (selected.kind === 'review') {
780
+ for (const rendered of renderMarkdown(selected.subtitle, Math.max(1, width - 2)))
781
+ lines.push(` ${rendered}`);
782
+ lines.push('');
783
+ }
784
+ lines.push(` ${DIM}${selected.kind}${source === undefined ? '' : ` · ${source}`}${RESET}`);
779
785
  if (selected.kind === 'review') {
780
786
  lines.push('', ` ${DIM}${selected.file}${RESET}`);
781
787
  const draft = readJson(progressPath(selected.dir))?.comments;
@@ -1 +1 @@
1
- export declare const TERMRENDER_VERSION = "4.12.1";
1
+ export declare const TERMRENDER_VERSION = "4.12.2";
@@ -1 +1 @@
1
- export const TERMRENDER_VERSION = '4.12.1';
1
+ export const TERMRENDER_VERSION = '4.12.2';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crouton-kit/humanloop",
3
- "version": "0.4.11",
3
+ "version": "0.4.13",
4
4
  "description": "Human-in-the-loop decision TUI — agents write questions, humans answer them",
5
5
  "engines": {
6
6
  "node": ">=22.19.0"