View on GitHub

AICTX

Repo-local continuity runtime for coding agents

AICTX - Repo-Local Continuity Runtime for Coding Agents

Welcome to AICTX documentation. This site is your complete guide to understanding, installing, and using AICTX.

What is AICTX?

AICTX helps coding agents maintain continuity across sessions. Instead of starting cold each time, agents resume from where they left off with:

Quick Navigation

Getting Started

Understanding AICTX

Advanced Topics

Operations

Supported Agents

AICTX works with:

Why AICTX?

Without AICTX:

Session 1 → Do work → Chat ends
Session 2 → Start cold → Rediscover repo → Repeat mistakes

With AICTX:

Session 1 → Do work → Record continuity
Session 2 → Resume from capsule → Continue immediately

See the Demo for measured results.

Installation

pip install aictx
aictx install
aictx init

Then use your coding agent normally. AICTX handles continuity automatically.

See Installation for details.

Quick Example

Resume from last session:

aictx resume --repo . --task "continue parser work" --json

Returns continuity context:

Resuming: parser edge cases
Last progress: BLOCKED status added
Next: expand tests/test_parser.py
Known failure: pytest unavailable outside .venv
Suggested command: .venv/bin/python -m pytest -q

Then at the end of your session:

aictx finalize --repo . --status success --summary "Parser now handles all edge cases" --json

Community

License

MIT License - See LICENSE


Ready to get started?Installation Guide