Tocket CLI: A Context Engineering Framework for AI Coding Agents

What Tocket Does
Tocket is a CLI tool that addresses context loss when switching between AI coding agents like Cursor and Claude. Instead of relying on massive .cursorrules files or single prompt.txt files that become unmanageable as projects grow, Tocket creates a structured "Memory Bank" within your repository.
How It Works
The tool scaffolds a .context/ folder containing several markdown files that any AI agent can read and write to:
activeContext.md- Tracks what's being worked on right nowsystemPatterns.md- Contains architecture rulestechContext.md- Documents the tech stack (Tocket auto-detects this from your package.json)progress.md- Tracks milestones
Getting Started
To try Tocket with zero configuration for Cursor/Claude users:
npx @pedrocivita/tocket initRun this command in your project root. The tool will:
- Auto-detect your frameworks (React, Vite, Node, etc.)
- Generate the .context folder
- Create a .cursorrules file pre-configured to instruct AI agents to read the memory bank before acting
Key Features
The core protocol (TOCKET.md) is completely agent-agnostic. The tool is described as a "Context Engineering Framework" rather than another AI agent. The repository is available at https://github.com/pedrocivita/tocket.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude Code v2.1.143: Plugin Dependency Enforcement, PowerShell Defaults, and Background Session Fixes
Anthropic released Claude Code v2.1.143 with plugin dependency enforcement, PowerShell -ExecutionPolicy Bypass, new worktree isolation option, and numerous fixes for background sessions, Windows Terminal, and macOS file access.

Queuelo: A Lightweight Approval API for LLM Agents
Queuelo is a simple API layer that lets LLM agents pause before irreversible actions. Agents POST action requests, you get notified to approve or reject, and the agent receives the answer via webhook.

TailClaude: Open Source Web UI for Accessing Claude Code Sessions from Mobile and Browser
TailClaude is an open source web UI that lets you access and continue Claude Code sessions from your phone or any browser in under a minute using Tailscale. The project was built with Claude Code assistance for scaffolding, SSE streaming backend, mobile-first chat UI, and QR code integration.

Claude Code as a Compiler: A Practical Reframe for AI Development
A Reddit post argues Claude Code functions as a compiler translating English to working software, drawing parallels to historical computing breakthroughs like Grace Hopper's A-0 and FORTRAN. The author describes generating 400 lines across 6 files from a 3-paragraph English description, catching two issues in 25 minutes.