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

Introducing Aionic Anthology: A Framework for Structuring Claude's AI Tasks
The Aionic Anthology framework organizes Claude's AI tasks by separating context into categories and adding a risk evaluation system to improve task execution.
PullMD v2.4.1 Adds Native MCP Connector for claude.ai Web and Multi-User Auth
PullMD v2.4.1 now supports the claude.ai web custom connector dialog via OAuth 2.1 + PKCE-S256 and adds multi-user auth modes. Turn any URL into clean Markdown via self-hosted MCP.

Silent Tool Failures in Coding Agents: A Hidden Efficiency Drain
Coding agents often encounter tool failures that go unnoticed because they fall back to alternative strategies, wasting tokens and reducing quality. The open-source tool Vibeyard detects these failures and suggests fixes.

Kstack: Skill Pack for Claude Code to Monitor and Troubleshoot Kubernetes
Kstack is an open-source skill pack that adds slash commands like /investigate, /audit-security, and /cluster-status to Claude Code (and other AI agents) for monitoring and troubleshooting K8s clusters. It uses kubectl, Kubetail, Trivy, and Pluto behind the scenes.