Savecontext banner
greenfieldlabs-inc greenfieldlabs-inc

Savecontext

AI community

Description

The operating layer for AI coding agents.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

SaveContext

**The OS for AI coding agents**

[![npm version](https://img.shields.io/npm/v/@savecontext/mcp?color=brightgreen)](https://www.npmjs.com/package/@savecontext/mcp) [![crates.io](https://img.shields.io/crates/v/savecontext-cli)](https://crates.io/crates/savecontext-cli) [![License: AGPL-3.0](https://img.shields.io/badge/License-AGPL--3.0-blue.svg)](https://www.gnu.org/licenses/agpl-3.0) [![MCP](https://img.shields.io/badge/MCP-Compatible-orange)](https://modelcontextprotocol.io)

[Website](https://savecontext.dev) • [NPM](https://www.npmjs.com/package/@savecontext/mcp) • [Crates.io](https://crates.io/crates/savecontext-cli) • [Changelog](https://savecontext.dev/changelog)


SaveContext gives AI coding agents the operational layer they're missing — sessions, issue tracking, time tracking, plans, semantic search, and multi-agent coordination, all stored locally in SQLite and available through a native CLI (`sc`) or any MCP-compatible client.

No cloud account. No API keys. No rate limits.

Quick Install

cargo install savecontext-cli && sc init

Requires Rust. See Installation for alternatives.


Quick Start

# Start a session
sc session start "building auth system"

# Save context as you work
sc save auth-choice "JWT with refresh tokens" -c decision -p high
sc save login-done "Login endpoint complete with rate limiting" -c progress

# Track work with issues
sc issue create "Add auth middleware" -t task -p 3
sc issue create "Fix token refresh bug" -t bug -p 4
sc issue claim SC-a1b2

# Check current state
sc status

To connect an MCP-compatible client (Claude Code, Cursor, Codex, Gemini, etc.):

bunx @savecontext/mcp

Then add it to your client's MCP configuration — see [Configuration](#configuration).


Why SaveContext?

The Problem

AI coding agents lose all context between conversations.