little-coder 1.5.0 → 1.5.1
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/.pi/extensions/branding/index.ts +15 -1
- package/CHANGELOG.md +13 -0
- package/README.md +1 -1
- package/package.json +1 -1
|
@@ -22,6 +22,13 @@ import { fileURLToPath } from "node:url";
|
|
|
22
22
|
|
|
23
23
|
const TAGLINE = "A coding agent tuned for small local models";
|
|
24
24
|
|
|
25
|
+
// Brand accent — "honey" #E15A1F from the brand book (v1.0). Emitted as a
|
|
26
|
+
// 24-bit truecolor SGR so the cursor matches the documented hex exactly,
|
|
27
|
+
// independent of the active pi theme's named "accent" colour. \x1b[39m resets
|
|
28
|
+
// only the foreground, leaving any surrounding bold/style intact.
|
|
29
|
+
const HONEY = "\x1b[38;2;225;90;31m";
|
|
30
|
+
const honeyFg = (s: string): string => `${HONEY}${s}\x1b[39m`;
|
|
31
|
+
|
|
25
32
|
function readVersion(): string {
|
|
26
33
|
// .pi/extensions/branding/index.ts → up 3 → package root (where package.json lives).
|
|
27
34
|
// The same path math works in the local checkout (loaded via tsx) and in the
|
|
@@ -40,8 +47,15 @@ function readVersion(): string {
|
|
|
40
47
|
const VERSION = readVersion();
|
|
41
48
|
|
|
42
49
|
function buildHeader(theme: Theme): string[] {
|
|
50
|
+
// Brand-book "prompt lockup" (the variant the brand reserves for terminals
|
|
51
|
+
// and dark surfaces): a honey prompt caret, the wordmark in the foreground,
|
|
52
|
+
// and the honey block cursor — "lc▌"'s ready-to-type punchline, applied to
|
|
53
|
+
// the full wordmark. Honey stays the only accent, well under the brand's
|
|
54
|
+
// ~10%-of-layout cap.
|
|
43
55
|
const logo =
|
|
44
|
-
|
|
56
|
+
honeyFg("> ") +
|
|
57
|
+
theme.bold("little-coder") +
|
|
58
|
+
honeyFg("▌") +
|
|
45
59
|
theme.fg("dim", ` v${VERSION}`);
|
|
46
60
|
const tagline = theme.fg("muted", TAGLINE);
|
|
47
61
|
const dim = (s: string) => theme.fg("dim", s);
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to little-coder are documented here. The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and little-coder's public interface (CLI, providers, tools, skills) follows semver starting at `v0.0.1` post-rename.
|
|
4
4
|
|
|
5
|
+
## [v1.5.1] — 2026-05-22
|
|
6
|
+
|
|
7
|
+
A branding release — no behaviour changes. little-coder now wears the v1.0 brand book: the warm **paper / ink / honey** palette (`#F2EBDC` · `#1A1410` · `#E15A1F`), the `lc▌` block-cursor mark, and IBM Plex Mono. The "ready to type" cursor is the punchline — it ties the CLI heritage into the identity without saying so.
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- **README hero is now the brand-book terminal banner.** A single self-contained SVG (`assets/banner.svg`, recreating the brand book's "github readme · hero" slide) replaces the old startup screenshot: ink terminal card, `lc▌` monogram in honey, the wordmark + tagline, and the verifiable headline numbers (`qwen3.6-35b-a3b`, terminal-bench 2.0 24.6%, aider polyglot 45.56%). IBM Plex Mono is embedded so it renders in-face on GitHub, with a `ui-monospace` fallback.
|
|
11
|
+
- **TUI header adopts the honey "prompt lockup."** The interactive startup header (`.pi/extensions/branding/index.ts`) now renders `> little-coder▌` with a honey prompt caret and block cursor — the brand's variant for terminals and dark surfaces. Honey is emitted as a 24-bit truecolor SGR so it matches `#E15A1F` exactly regardless of the active pi theme.
|
|
12
|
+
|
|
13
|
+
### Removed
|
|
14
|
+
- The stale purple (`#7c3aed`) `docs/assets/startup.svg` mockup (`v0.0.1` / `ollama/qwen3.5`), now superseded by the on-brand banner.
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
5
18
|
## [v1.5.0] — 2026-05-22
|
|
6
19
|
|
|
7
20
|
A reliability + UX release centered on the harness's intervention machinery. Issue [#8](https://github.com/itayinbarr/little-coder/issues/8) reproduced on 1.4.3 through a *new* mechanism, and chasing it down fixed a cluster of related symptoms: thinking never actually turning off after a budget breach, a spurious "empty response" nag after interrupts, and a noisy stack of warnings around every harness decision. Harness interventions now speak with one voice, and the thinking-budget cap is more generous.
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**A coding agent tuned for small local models, built on top of [pi](https://pi.dev).**
|
|
4
4
|
|
|
5
|
-

|
|
6
6
|
|
|
7
7
|
The research story behind all this — why scaffold–model fit matters, how a 9.7 B Qwen beat frontier entries on Aider Polyglot, and what the load-bearing mechanisms actually do — is written up on Substack: **[*Honey, I Shrunk the Coding Agent*](https://open.substack.com/pub/itayinbarr/p/honey-i-shrunk-the-coding-agent)**. Start there if you want the "why"; stay here for the "how".
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "little-coder",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "A pi-based coding agent optimized for small local language models. Reproduces the whitepaper's scaffold-model-fit adaptations as pi extensions.",
|
|
5
5
|
"homepage": "https://github.com/itayinbarr/little-coder",
|
|
6
6
|
"repository": {
|