What is IST?
Integrated Session Tools (IST) is a toolkit that supercharges your AI coding sessions with Claude Code or Cursor.
The Problem
When working with AI assistants on coding tasks:
- Sessions are isolated - no communication between multiple AI instances
- Context is lost when sessions restart
- No consistent methodology for AI-assisted development
- Managing multiple AI workers is chaotic
The Solution
IST provides:
| Tool | What it does |
|---|---|
| Session Logging | Persistent logs across session restarts |
| Inter-session Messaging | AI agents can communicate with each other |
| Profiles | Pre-configured behaviors (MWD, TDA patterns) |
| Session Management | Start, monitor, and coordinate multiple sessions |
Key Concepts
MWD (Microwise Development)
A methodology optimized for AI-assisted development:
- Micro commits (small, focused changes)
- Clear task boundaries
- Incremental progress tracking
TDA (Top-Down Agent)
A pattern for coordinating multiple AI agents:
- Manager: Delegates tasks, monitors progress
- Worker: Executes specific tasks autonomously
Quick Example
# Install everything with one command
npx @anthropic-ist/setup install
# Start a session with MWD methodology
ilogsession start my-project -p mwd
# Or use Manager/Worker pattern
ilogsession start mgr -p tda-manager
ilogsession start worker1 -p tda-worker
Next Steps
- Quick Start - Get running in 5 minutes
- Installation - Detailed setup guide
- MWD Concept - Learn the methodology