obsidian-agent-fleet 0.11.0 → 0.12.0

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/README.md CHANGED
@@ -32,7 +32,7 @@ Agent Fleet is an Obsidian plugin that lets you build, configure, and run AI age
32
32
 
33
33
  🔌 **MCP Integration** — Add, remove, authenticate, and inspect MCP servers from the dashboard. One-click OAuth 2.1 with automatic CLI token injection — agents can use authenticated servers immediately.
34
34
 
35
- 🧠 **Agent Memory** — Agents persist context across sessions using `[REMEMBER]` tags stored as markdown.
35
+ 🧠 **Agent Memory** — A two-tier, self-curating memory (curated working set + append-only ground truth) that agents write via a `remember` tool or `[REMEMBER]` tags, on both Claude and Codex. An optional nightly **reflection** consolidates it and can propose new skills from recurring patterns (approval-gated).
36
36
 
37
37
  📊 **Dashboard** — Overview with run charts, success rates, token/cost tracking, activity timeline, fleet status, streaming output from active agents, and focused run-detail panels that lead with the final result and hide the full reasoning transcript behind a toggle.
38
38
 
@@ -135,7 +135,7 @@ agents/my-agent/
135
135
  | **Allow/Deny Lists** | Fine-grained tool control (e.g., allow `Bash(curl *)`, deny `Bash(rm -rf *)`). Enforced on both backends — Claude Code natively, Codex via execpolicy command rules (see [Backends](#backends)) |
136
136
  | **Skills** | Shared skills from the skill library |
137
137
  | **MCP Servers** | Which MCP servers the agent can access |
138
- | **Memory** | Persistent context across sessions via `[REMEMBER]` tags |
138
+ | **Memory** | Two-tier self-curating memory: `remember` tool / `[REMEMBER]` tags → working set + raw archive, with optional nightly reflection |
139
139
  | **Heartbeat** | Autonomous periodic run with schedule and instruction |
140
140
 
141
141
  **Permission Modes:**
@@ -407,12 +407,20 @@ The main overview with:
407
407
 
408
408
  ### Agent Memory
409
409
 
410
- Agents persist context across sessions:
410
+ A two-tier, self-curating memory that works on **task, heartbeat, and chat** runs and on **both Claude Code and Codex** backends. Per agent, under `_fleet/memory/<agent>/`:
411
411
 
412
- 1. Agent includes `[REMEMBER]important context[/REMEMBER]` in its output
413
- 2. Extracted and appended to `_fleet/memory/<agent-name>.md`
414
- 3. Injected into the agent's prompt on every future run
415
- 4. Memory is agent-scoped shared across all conversations including Slack channels
412
+ - **`working.md`** curated, **token-budgeted** memory (`memory_token_budget`, default 1500) injected into every run, organized into Preferences (pinned) / Procedures / Observations / Recent.
413
+ - **`raw/<date>.md`** append-only ground-truth log of everything captured (never injected), so summaries can always be re-derived.
414
+
415
+ **How an agent records something** (two channels, same sink):
416
+ 1. The **`remember` tool** — `remember(fact, pin?, section?)`, auto-enabled for memory agents (preferred, structured).
417
+ 2. The **`[REMEMBER] … [/REMEMBER]`** text tag as a fallback (`[REMEMBER:pin]` for standing preferences).
418
+
419
+ Captures land in `working.md` immediately, so the next run/turn sees them. Memory is agent-scoped (shared across all conversations, including channels).
420
+
421
+ **Reflection ("dreaming")** — enable `reflection_enabled` and a nightly run (`reflection_schedule`, default `0 3 * * *`) consolidates memory from the raw log: dedups, resolves contradictions, summarizes from ground truth to fit the budget, and keeps pinned preferences. With `reflection_propose_skills`, recurring friction becomes an approval-gated **skill proposal** in the Inbox. A failed reflection never wipes memory. Trigger manually with **Reflect now** on the agent.
422
+
423
+ > Legacy single-file memory (`_fleet/memory/<agent>.md`) is migrated automatically. `memory_max_entries` is superseded by `memory_token_budget`.
416
424
 
417
425
  ---
418
426
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "obsidian-agent-fleet",
3
- "version": "0.11.0",
3
+ "version": "0.12.0",
4
4
  "description": "Obsidian plugin for file-backed AI agents, task scheduling, channels (Slack), heartbeat, and interactive chat.",
5
5
  "license": "MIT",
6
6
  "main": "plugin/main.js",