Crispy VS Code Extension Adds Agent Memory and Multi-Agent Features for Claude and Codex

Crispy is a VS Code extension that provides a richer control layer on top of Claude Code and Codex CLIs, addressing common terminal limitations like conversation forking, agent switching, and memory retention.
Key Features
- Agent Memory — Every transcript is indexed locally on CPU with full-text and semantic search via local embeddings. Your agent can search and read back real past conversations. No cloud storage or API calls after initial model download. Backfills from existing agent transcripts.
- Multi-Agent / Superthink — Dispatch child sessions to Claude or Codex for parallel perspectives, with ability to resume later. In-process operation, no MCP configuration required.
- Conversation Forking — Fork or rewind conversations from any message, opening side-by-side views.
- Dedicated Tool Views — File edits show real diffs, bash shows output, searches show results.
- Quote Response Text — Select text and hit quote to insert directly into Chat Input with a comment.
- Local Voice-to-Text — Uses Moonshine Base STT with four render modes.
- Consistent UI — Same interface across Claude and Codex, with Gemini CLI and OpenCode support planned.
Technical Details
Crispy runs Claude Code and Codex underneath — not a standalone AI. It's open source under MIT license and available for Linux, macOS, and Windows. The extension can be installed from Open VSX or GitHub.
📖 Read the full source: r/ClaudeAI
👀 See Also

Two MCP Tools for Claude Code: Idea Validation and Trading Agent Memory
A developer built two MCP tools for Claude Code: idea-reality-mcp checks GitHub and Hacker News before coding to avoid duplicates, while tradememory-protocol provides memory for AI trading agents to store trades with context and track strategy performance. Both are open source and available on PyPI.

New Tool Injects Instructions into Claude Code Based on Context Usage
A developer created a tool that monitors context usage and injects custom instructions to prevent mid-task compaction disasters.

Open-source methodology for agentic AI partnership with Claude
A developer has published a 25,000-word paper and open-sourced templates for building a persistent partnership system with Claude that uses shared memory across sessions, cognitive monitoring, and multi-AI consultation.

OpenClaw-Superpowers: A Native Port of Jesse Vincent's Superpowers Framework Without Claude Code Dependency
A Reddit user ported obra/superpowers to OpenClaw with dedicated agents (coding orchestrator, implementer, reviewer) and native commands like sessions_spawn and update_plan, removing Claude Code dependency.