little-coder 1.0.2 → 1.0.3

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
@@ -2,6 +2,13 @@
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.0.3] — 2026-04-28
6
+
7
+ ### Changed
8
+ - README and `install.sh` now lead with `little-coder --model llamacpp/qwen3.6-35b-a3b` as the canonical example. That's the configuration little-coder is tuned for: small local model + custom scaffolding. Cloud models (Anthropic, OpenAI) move into the secondary list.
9
+
10
+ ---
11
+
5
12
  ## [v1.0.2] — 2026-04-28
6
13
 
7
14
  ### Changed
package/README.md CHANGED
@@ -32,14 +32,16 @@ That's the whole install. No clone, no `npm install` in a workspace, no PATH fid
32
32
 
33
33
  ```bash
34
34
  cd ~/your-project
35
- little-coder --model anthropic/claude-haiku-4-5
35
+ little-coder --model llamacpp/qwen3.6-35b-a3b
36
36
  ```
37
37
 
38
- Other models work the same way:
38
+ This is the canonical setup little-coder is tuned for: a local llama.cpp server hosting Qwen3.6-35B-A3B. See **[Local model setup (optional)](#local-model-setup-optional)** below for how to serve it.
39
+
40
+ Cloud models work the same way:
39
41
 
40
42
  ```bash
43
+ little-coder --model anthropic/claude-haiku-4-5
41
44
  little-coder --model openai/gpt-4o-mini "What does this codebase do?"
42
- little-coder --model llamacpp/qwen3.6-35b-a3b # local llama.cpp server
43
45
  little-coder --model ollama/qwen3.5 # local Ollama
44
46
  little-coder --list-models # see everything pi knows about
45
47
  ```
@@ -145,7 +147,7 @@ git clone https://github.com/itayinbarr/little-coder.git
145
147
  cd little-coder
146
148
  npm install
147
149
  npm link # makes the local checkout available as `little-coder`
148
- little-coder --model anthropic/claude-haiku-4-5
150
+ little-coder --model llamacpp/qwen3.6-35b-a3b
149
151
  ```
150
152
 
151
153
  To unlink: `npm unlink -g little-coder`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "little-coder",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
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": {