← Back to REEN
Changelog
March 5, 2026
feature Plan Evolution Tracking — Automatic Audit Log
- PostgreSQL AFTER UPDATE triggers — automatic change tracking for tasks and plans (title, status, description, dates, briefing)
- Events API:
GET /api/gant/plans/{id}/events with filters by task, event type, actor + pagination
- changeNote: optional
change_reason and change_evidence in update calls — recorded in audit log
- History UI: plan-level History tab (grouped by day) + task sidebar timeline
- Cancelled status: new task/plan status with visual treatment (opacity, dashed border, line-through)
- MCP Server:
cancelled in status enum, change_reason/change_evidence in update_task/update_plan
March 3, 2026
engineering reen-cli v0.2.0 — Model Name Normalization
- Daemon now uses API model names (gpt, claude, gemini, grok) in all WebSocket events — fixes "Stop codex" button sticking in UI
- Model alias resolution:
@gpt in browser correctly routes to codex CLI and vice versa
- Daemon hint in Conference UI: fixed
--backend → --server flag reference
- Cancel from UI properly maps API names back to CLI process names
- reen-cli published from canonical
daemon.mjs — standalone architecture with node-pty
February 27, 2026
feature Conference STOP/GO — AI Listening Gate
- GO activates AI listening — @mentions trigger AI responses
- STOP deactivates — messages saved but AI models do not respond
- Green dot indicator in sidebar: visible when conference is active (GO), hidden when stopped
- New conferences created in
playing state by default
- Daemon connectivity check — notification with install instructions when GO pressed without daemon
February 27, 2026
feature Strategic Plans — Visual Canvas
- New Strategic Plans in Engineering — infinite canvas for organizing Gantt plans visually
- Drag-and-drop plan cards with live status, progress bars, and task counts
- Typed edges between cards:
dependency, feeds, blocks (color-coded)
- 8 new MCP tools for strategic plans management
- MCP Server total: 49 tools (was 41)
- Sidebar context menu: Rename, Move to project, Delete
February 22, 2026
research Research Mode v2.1 — MCP Pipeline
- Server-side LLM removed (~340 lines) — pipeline stops at
segments_ready for local AI analysis
- 7 new MCP tools:
research_upload_book, research_list_books, research_get_book, research_get_book_status, research_get_segments, research_submit_analysis, research_delete_book
- New endpoints:
GET /segments (returns text + expected output schema), POST /analyze (accepts cards + edges from local AI), POST /books/json (JSON upload)
- UI rebrand: Feed → Radar, book → document, accent color
#3B82F6 → #0E1458 (deep navy)
- Resizable detail panel with drag handle, auto-poll for external analysis completion
- MCP Server total: 41 tools (was 27)
February 21, 2026
research Research Mode v2 — Knowledge Graph
- Upload documents (text or PDF) and visualize them as interactive knowledge graphs of chapters
- 3 PostgreSQL tables:
research_books, research_cards, research_edges
- 3-stage pipeline: extract → segment → analyze (cards per chapter + edges between chapters)
- React Flow v11 + dagre auto-layout, color-coded nodes by importance (1–5)
- Card detail panel: simple/technical summary toggle, key terms, evidence quotes
- Edge types:
depends_on, extends, illustrates with confidence scores
- New Library tab in sidebar navigation (book icon, authenticated users only)
- Full dark mode support (day / twilight / night)
February 19, 2026
feature GantView Optimistic UI
- Instant CRUD updates in GantView — create, delete, and edit tasks without waiting for server response
- SSE (Server-Sent Events) seamlessly reconciles optimistic state with server-confirmed data
February 19, 2026
infra MCP get_plan Optimization
- New
detail_level parameter: summary (narrative + compact task tree) vs full (everything)
- 95% context compression for large plans (60K → 3K chars)
February 19, 2026
infra Farm Monitor
- Real-time GPU farm metrics: CPU%, Temperature, RAM, Disk, Uptime
- Edge collector v2 deployed on Farm 1 & Farm 2
- Derived metrics:
_compute_cpu_rate(), RAM/Disk percentages from Prometheus data
February 18, 2026
feature Task Positioning & Reorder
- Tasks and subtasks now have a
position field for explicit ordering
- New
POST /api/gant/tasks/reorder endpoint — move tasks to any position, siblings shift automatically
create_task / create_subtask: optional position parameter (omit to append at end)
- MCP: new
reorder_task tool, position param added to create_task and create_subtask
- Frontend sorts tasks by position for consistent display
- Auto-migration: existing tasks get position based on creation order
February 18, 2026
feature Artifacts Tab
- New "Artifacts" tab in plan view — store notes and files during plan implementation
- Card grid layout with markdown preview, click opens full editor (like Narrative)
- Markdown editing with live preview toggle, file upload/download per artifact
- API:
GET/POST /api/gant/artifacts/{plan_id}, PATCH/DELETE /api/gant/artifacts/{id}
- Dark theme support (Twilight + Night)
February 17, 2026
feature AI Conference v2.0
- Sequential / Parallel mode toggle — choose how AI agents respond (one by one or simultaneously)
- Markdown table rendering in conference chat messages
- Conference initial prompt now serves as system prompt for AI daemon
February 17, 2026
social X (Twitter) Integration
February 16, 2026
feature Conference Model Selector
- Checkboxes for active AI models (Claude, GPT, Gemini, Grok) in conference input area
- REST API:
GET/PUT /api/conferences/{id}/agents
- MCP tool:
update_conference_agents
- Optimistic UI toggle with server rollback
- Grok (xAI) added as a new model across the platform
February 16, 2026
infra Ex-Help Inline Pack & MCP 24 Tools
- Public share packs now inline text file contents (md, json, txt, yaml, csv) as code blocks
- AI directive:
# INSTRUCTION heading — "Execute immediately, do NOT ask questions"
- Ex-Help sidebar: attached files displayed with name, size, and download link
- SSE real-time updates for Ex-Help (no page reload needed)
- MCP Server: 24 tools (+3 new:
delete_exhelp, share_exhelp, list_plan_files)
February 16, 2026
feature Narrative Simplification
- Narrative tab simplified: clean textarea-only interface with manual save (floppy icon)
- Removed file upload section from Narrative (files live in Ex-Help only)
February 16, 2026
feature Ex-Help Share Links & Initial Prompt
- Share Link: generate a public URL for any Ex-Help request (7-day TTL)
- Public pack endpoint:
GET /api/public/exhelp/{token} — no auth required
- AI instruction header in shared packs — external AI treats initial_prompt as primary task
- Initial Prompt field in Ex-Help sidebar — system-level instructions for external AI
- Share UI: Generate & Copy button, regenerate support, expiration hint
February 15, 2026
feature Ex-Help Card View & Sidebar
- Ex-Help tab redesigned: card list with status badges and problem preview
- Right sidebar on card click: problem editor, attached files, answer field, pack generation
- Sidebar design matches conference Initial Prompt sidebar (fixed, resizable, floppy save)
February 15, 2026
infra API & MCP Coverage
- Narrative REST API:
GET/PUT /api/gant/plans/{id}/narrative
- Conference Initial Prompt:
GET/PUT /api/conferences/{id}/initial-prompt
- MCP Server expanded: 21 tools (was 12) — narrative, ex-help, conferences
- New MCP tools: get/update_narrative, list/create/update_exhelp, get_exhelp_pack, list_conferences, get/update_conference_initial_prompt
February 14, 2026
feature Plan View Tabs
- Narrative tab: markdown editor with auto-save and file attachments
- Ex-Help tab: AI consultation requests with context pack generation
- Diagram / Narrative / Ex-Help tab switching per plan
- WebSocket stability improvements
February 12, 2026
infra MCP Server
- Native MCP server for AI agents (Claude Code, Cursor, Codex)
- 12 tools: plans CRUD, tasks CRUD, subtasks, dates, progress tracking
- stdio transport, retry with exponential backoff, token redaction
- TypeScript + @modelcontextprotocol/sdk
February 10, 2026
feature AI Conference
- Multi-party AI conferences with real-time chat (Claude, GPT, Gemini)
- File upload support in conference sessions
- Per-user conference storage with auto-migration
February 8, 2026
research Research Feed
February 7, 2026
feature Gantt Charts
- Interactive Gantt charts with timeline, phases, and subtasks
- Real-time progress tracking
- Project hierarchy: projects → plans → tasks