indusagi-coding-agent 0.1.60 → 0.1.62

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/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.62] - Latest Release
4
+
5
+ ### Added
6
+ - **Rich Markdown Rendering**: Assistant replies now render as styled terminal output instead of raw markdown — themed headings, bold/italic, depth-aware ordered/unordered lists, blockquotes, inline code, and OSC-8 links — via a new `marked`-based markdown→ANSI pipeline (`react-ink/markdown/`) with an LRU token cache and a no-markdown fast-path.
7
+ - **Syntax-Highlighted Code**: Fenced code blocks and `read` / `write` / `edit` tool bodies are now syntax-highlighted (highlight.js, JS-only — no native dependency), with a plain-text fallback for unknown languages.
8
+ - **Markdown Tables**: GFM tables render as aligned flexbox columns (measured column widths, bold header, per-column alignment) instead of raw pipe strings.
9
+ - **Flicker-Free Streaming**: Streaming assistant output uses a stable-prefix boundary (`StreamingMarkdown`) — completed blocks are parsed once and frozen, and only the growing last block re-lexes per delta, eliminating the whole-answer reflow and the swap flicker.
10
+ - **Colored Diff Blocks**: `edit` / `write` tool results render as a colored diff — themed added/removed backgrounds, a right-aligned line-number gutter, three context lines, and multi-hunk separators (via the `diff` package's `structuredPatch`, pure Ink).
11
+ - **Word-Level Diff Highlighting**: Adjacent changed lines get intra-line word-level emphasis (`diffWordsWithSpace`), suppressed above a ~40% change threshold to avoid noise.
12
+ - **Two-Tone Banner Emblem**: The startup masthead gains an original two-tone block-glyph emblem beside the wordmark.
13
+ - **Personalized Welcome**: A "Welcome back{, name}!" line sourced from the signed-in account display name (falls back to "Welcome back!").
14
+ - **Auto Condensed Banner**: The full masthead shows on first launch / version bump; repeat launches of an already-seen version use the condensed one-line header (persisted `lastSeenVersion`, with an `INDUS_FORCE_FULL_LOGO` override).
15
+ - **Optional Color-Sweep Flourish**: A gated color sweep over the wordmark/emblem — off by default and suppressed under reduced-motion and non-TTY.
16
+ - **Color-Blind Themes**: Two daltonized schemes (`midnight-cb`, `daylight-cb`) where success is blue rather than green, so affirm vs alarm are distinguishable without relying on the red-green axis.
17
+ - **Live Theme Preview**: The theme picker now previews the whole console live as you move the highlight — **Enter** keeps it, **Esc** reverts to the scheme you opened with (previously every touch persisted irrevocably).
18
+
19
+ ### Changed
20
+ - **Framework UI Components**: The `indusagi` framework (`react-ink`) gains the markdown, syntax-highlight, table, streaming, and diff components, plus 12 new theme roles (inline-code / heading / blockquote bar, diff added/removed backgrounds, and syntax-highlight scopes) that the console binds to its palette.
21
+ - **Framework Dependency**: Pinned to the published `indusagi@^0.12.34` (the version that ships the new react-ink markdown/diff components), resolved from the registry rather than the local sibling.
22
+ - **Startup Banner**: The full `INDUS CODE` masthead now shows on every launch, and the changelog block is no longer surfaced at startup (use `/changelog` on demand).
23
+ - **Single-Source Version**: `--version` and the banner now read one `VERSION` constant (co-located with the brand), so they can no longer drift.
24
+ - **Version Bump**: Updated package version to `0.1.62`.
25
+
26
+ ### Fixed
27
+ - **Accurate Context Usage**: The footer's `ctx:%` now reflects the latest turn's context occupancy instead of the cumulative session token total — it no longer inflates (e.g. 84.9% on a near-empty context).
28
+ - **Streaming Narration**: Fixed the live streaming preview that concatenated every narration segment and clipped each one's first word; each segment now streams cleanly on its own.
29
+
30
+ ## [0.1.61] - Latest Release
31
+
32
+ ### Fixed
33
+ - **CLI silent no-op when installed globally**: `indus` / `indusagi` (including `--version` / `-v`) produced no output when run through a global `npm install -g` symlink — the entry-point check compared raw paths, which never matched the linked bin, so the program never started. The check now resolves both sides through realpath.
34
+
3
35
  ## [0.1.60] - Latest Release
4
36
 
5
37
  ### Changed