Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Changelog

## [1.3.1] - 2026-05-29
## [1.4.0] - 2026-05-29

### feat: RAG coding harness with Python scraper + hybrid search (#64)

Adds an opt-in retrieval harness that scrapes snippet-sized code chunks
from curated repositories and serves them via hybrid (keyword + vector)
search. New surface: `bin/rag-index.js` + `smallcode-rag-index` bin and
the `rag:index` npm script (builds `.smallcode/rag/index.json` from chunks
scraped by `scripts/rag_scraper.py`), `src/rag/` (`index_store.js`,
`retriever.js`, `curated_repos.json`), docs in `docs/rag-harness.md`, and
`test/rag.test.js`. No new npm dependencies — the scraper runs via Python.

### fix: strict chat templates reject mid-conversation system messages (#62)

Expand All @@ -24,6 +34,8 @@ at positions other than 0.
request now carries exactly one system message at index 0.
- Test coverage: `test/message_normalizer.test.js` (9 cases).

## [1.3.1] - 2026-05-29

### fix: compatibility issues #57, #58, #59

Three reported environment-compatibility bugs:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smallcode",
"version": "1.3.1",
"version": "1.4.0",
"description": "AI coding agent optimized for small LLMs (8B-35B parameters)",
"main": "src/api/index.js",
"bin": {
Expand Down
Loading