carryctx 0.0.2

Persistent project context for coding agents
docs.rs failed to build carryctx-0.0.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

CarryCtx

A local-first project state and continuity manager for coding agents.

CarryCtx is a CLI that preserves and restores project context across coding-agent sessions, windows, and Git worktrees. It provides structured task management, progress tracking, checkpoint-based state capture, and session lifecycle — all backed by a shared SQLite database.

English | 简体中文

Installation

Cargo (recommended)

cargo install carryctx

npm

npm install -g carryctx
# or
bun add -g carryctx

GitHub Releases

Download the prebuilt binary for your platform from the releases page.

Homebrew (future)

brew install carryctx/tap/carryctx

AUR (Arch Linux)

yay/paru -S carryctx
yay/paru -S carryctx-bin

Quick start

cd your-project
carryctx init
carryctx agent register --name my-agent --provider claude-code
carryctx task create --title "My first task"
carryctx task claim CTX-0001
carryctx session start
carryctx resume

Agent Skill Setup

Load the CarryCtx skill to give your coding agent first-class CarryCtx awareness:

npx skills add https://github.com/Xuepoo/carryctx-skills --skill carryctx

The skill teaches agents to manage sessions, tasks, progress, and checkpoints through CarryCtx — enabling persistent context across agent restarts and worktree switches.

Documentation

License

MIT