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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.2.1"
".": "0.3.0"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

> Campfire began as a fork of [the-companion](https://github.com/The-Vibe-Company/companion) and diverged into a separate product. Pre-fork history (versions up to 0.42.0) lives in the upstream repository; Campfire's own releases start at 0.1.0.

## 0.3.0 (2026-07-07)

### Features

* **memory:** semantic memory v2 — the full rebuild. Namespace-scoped storage (global / repo / session / agent), automatic v1→v2 schema migration, lazy decay with access-based reinforcement, composite scored retrieval (similarity × decay × confidence) with a no-embedding fallback, pinning, and eviction
* **memory:** prompt enrichment now actually works — user messages are enriched with recalled memories under a 250 ms budget with per-session ordering guarantees; the UI shows a collapsible "recalled context" chip listing exactly what was injected
* **memory:** LLM-backed consolidation (JUDGE→DISTILL→CONSOLIDATE) via OpenRouter with strict JSON validation and graceful concat fallback; triggers on turn boundaries, idle, session end, and manual
* **memory:** MemoryPanel namespace overview with decayed-weight bars and pin/unpin; Settings → Memory section for decay half-lives, reinforce multipliers, and recall depths

### Fixes

* memory extraction no longer keyword-gated; thinking-block content is scrubbed before storage or promotion
* global memory endpoint returned nothing structurally; consolidation duplicated rows on every run; zero-vectors no longer pollute vector search

## 0.2.1 (2026-07-07)

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "the-campfire-workspace",
"version": "0.2.1",
"version": "0.3.0",
"private": true,
"description": "Workspace root for Campfire \u2014 the collaborative web platform for AI coding agents. The published package lives in web/.",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "the-campfire",
"version": "0.2.1",
"version": "0.3.0",
"type": "module",
"description": "Campfire \u2014 collaborative web platform for AI coding agents. Run Claude Code, Codex, Goose, Aider, and more from one browser UI with real-time collaboration, permission voting, and automation.",
"license": "MIT",
Expand Down
Loading