Skip to main content

Feature-rich interactive CLI for AI agents with token tracking, prompt templates, aliases, and configuration

Project description

Basic Agent Chat Loop

PyPI version Python 3.8+ Tests codecov License: MIT

A feature-rich, interactive CLI for AI agents with token tracking, prompt templates, agent aliases, and extensive configuration options.

Features

  • ๐Ÿท๏ธ Agent Aliases - Save agents as short names (chat_loop pete instead of full paths)
  • ๐Ÿ“ฆ Auto-Setup - Automatically install agent dependencies from requirements.txt or pyproject.toml
  • ๐Ÿ”” Audio Notifications - Play sound when agent completes a turn (cross-platform support)
  • ๐Ÿ“œ Command History - Navigate previous queries with โ†‘โ†“ arrows (persisted to ~/.chat_history)
  • โœ๏ธ Multi-line Input - Type \\ to enter multi-line mode for code blocks
  • ๐Ÿ’ฐ Token Tracking - Track tokens and costs per query and session
  • ๐Ÿ“ Prompt Templates - Reusable prompts from ~/.prompts/
  • โš™๏ธ Configuration - YAML-based config with per-agent overrides
  • ๐Ÿ“Š Status Bar - Real-time metrics (queries, tokens, duration)
  • ๐Ÿ“ˆ Session Summary - Full statistics displayed on exit
  • ๐ŸŽจ Rich Formatting - Enhanced markdown rendering with syntax highlighting
  • ๐Ÿ”„ Error Recovery - Automatic retry logic with exponential backoff
  • ๐Ÿ” Agent Metadata - Display model, tools, and capabilities

Installation

Quick Install (Recommended)

pip install basic-agent-chat-loop

That's it! The package will automatically create:

  • ~/.chatrc - Configuration file with recommended defaults
  • ~/.prompts/ - Sample prompt templates (on first use)

Platform-Specific Options

Windows: Command history support (pyreadline3) is now installed automatically on Windows - no extra steps needed!

AWS Bedrock integration:

pip install basic-agent-chat-loop[bedrock]

From Source

For development or the latest features:

git clone https://github.com/Open-Agent-Tools/Basic-Agent-Chat-Loop.git
cd Basic-Agent-Chat-Loop
pip install -e ".[dev]"

See docs/INSTALL.md for detailed installation instructions and troubleshooting.

Quick Start

Basic Usage

# Run with agent path
chat_loop path/to/your/agent.py

# Or use an alias (after saving)
chat_loop myagent

Agent Aliases

Save frequently used agents for quick access:

# Save an agent as an alias
chat_loop --save-alias myagent path/to/agent.py

# Use the alias from anywhere
chat_loop myagent

# List all saved aliases
chat_loop --list-aliases

# Remove an alias
chat_loop --remove-alias myagent

Example with real agents:

# Save your agents
chat_loop --save-alias pete ~/agents/product_manager/agent.py
chat_loop --save-alias dev ~/agents/senior_developer/agent.py

# Use them from anywhere
cd ~/projects/my-app
chat_loop dev  # Get coding help
chat_loop pete  # Get product feedback

Aliases are stored in ~/.chat_aliases and work from any directory.

Auto-Setup Dependencies

Automatically install agent dependencies with the --auto-setup flag (or -a for short):

# Auto-install dependencies when running an agent
chat_loop myagent --auto-setup
chat_loop path/to/agent.py -a

# Works with any of these dependency files:
# - requirements.txt (most common)
# - pyproject.toml (modern Python projects)
# - setup.py (legacy projects)

Smart detection: If you run an agent without --auto-setup and dependency files are detected, you'll see a helpful suggestion:

chat_loop myagent
๐Ÿ’ก Found requirements.txt in agent directory. Run with --auto-setup (or -a) to install dependencies automatically

What gets installed:

  • requirements.txt โ†’ pip install -r requirements.txt
  • pyproject.toml โ†’ pip install -e <agent_directory>
  • setup.py โ†’ pip install -e <agent_directory>

This makes sharing agents easierโ€”just include a requirements.txt with your agent and users can install everything with one command.

Prompt Templates

The package automatically creates sample templates in ~/.prompts/ on first use:

  • explain.md - Explain code in detail
  • review.md - Code review with best practices
  • debug.md - Help debugging issues
  • optimize.md - Performance optimization suggestions
  • test.md - Generate test cases
  • document.md - Add documentation

Use templates in chat:

chat_loop myagent
You: /review src/app.py
You: /explain utils.py
You: /test my_function

Create custom templates:

# Create your own template
cat > ~/.prompts/security.md <<'EOF'
# Security Review

Please review this code for security vulnerabilities:

{input}

Focus on:
- Input validation
- Authentication/authorization
- Data sanitization
- Common security patterns
EOF

# Use it in chat
You: /security auth.py

Configuration

A configuration file (~/.chatrc) is automatically created on first use with recommended defaults. You can customize it to your preferences:

features:
  show_tokens: true           # Display token counts
  show_metadata: true         # Show agent model/tools info
  rich_enabled: true          # Enhanced formatting

ui:
  show_status_bar: true       # Top status bar
  show_duration: true         # Query duration

audio:
  enabled: true               # Play sound when agent completes
  notification_sound: null    # Custom WAV file (null = bundled sound)

behavior:
  max_retries: 3              # Retry attempts on failure
  timeout: 120.0              # Request timeout (seconds)

# Per-agent overrides
agents:
  'Product Pete':
    features:
      show_tokens: false
    audio:
      enabled: false          # Disable audio for this agent

Audio Notifications

Audio notifications alert you when the agent completes a response. Enabled by default with a bundled notification sound.

Platforms supported:

  • macOS (using afplay)
  • Linux (using aplay or paplay)
  • Windows (using winsound)

Configure audio in ~/.chatrc:

audio:
  enabled: true
  notification_sound: null    # Use bundled sound

  # Or specify a custom WAV file:
  # notification_sound: /path/to/custom.wav

Per-agent overrides:

agents:
  'Silent Agent':
    audio:
      enabled: false  # Disable audio for this agent

See CONFIG.md for full configuration options.

Commands

Command Description
help Show help message
info Show agent details (model, tools)
templates List available prompt templates
/name Use prompt template from ~/.prompts/name.md
clear Clear screen and reset agent session
exit, quit Exit chat (shows session summary)

Multi-line Input

Press \\ to enter multi-line mode:

You: \\
... def factorial(n):
...     if n <= 1:
...         return 1
...     return n * factorial(n - 1)
...
[Press Enter on empty line to submit]

Token Tracking

During Chat

When show_tokens: true in config:

------------------------------------------------------------
Time: 6.3s โ”‚ 1 cycle โ”‚ Tokens: 4.6K (in: 4.4K, out: 237) โ”‚ Cost: $0.017

Session Summary

Always shown on exit:

============================================================
Session Summary
------------------------------------------------------------
  Duration: 12m 34s
  Queries: 15
  Tokens: 67.8K (in: 45.2K, out: 22.6K)
  Total Cost: $0.475
============================================================

Programmatic Usage

from basic_agent_chat_loop import ChatLoop

# Create chat interface
chat = ChatLoop(
    agent=your_agent,
    name="My Agent",
    description="Agent description",
    config_path=Path("~/.chatrc")  # Optional
)

# Run interactive loop
chat.run()

Requirements

Core Dependencies

  • Python 3.8+
  • pyyaml>=6.0.1 - Configuration file parsing
  • rich>=13.7.0 - Enhanced terminal rendering

Optional Dependencies

  • pyreadline3>=3.4.1 - Command history on Windows (now auto-installed on Windows)
  • anthropic-bedrock>=0.8.0 - AWS Bedrock integration (install with [bedrock])

Built-in Features

  • readline (built-in on Unix) - Command history on macOS/Linux

Platform Support

  • โœ… macOS - Full support with native readline
  • โœ… Linux - Full support with native readline
  • โœ… Windows - Full support with automatic pyreadline3 installation

Architecture

src/basic_agent_chat_loop/
โ”œโ”€โ”€ chat_loop.py          # Main orchestration
โ”œโ”€โ”€ chat_config.py        # Configuration management
โ”œโ”€โ”€ cli.py                # CLI entry point
โ”œโ”€โ”€ components/           # Modular components
โ”‚   โ”œโ”€โ”€ ui_components.py      # Colors, StatusBar
โ”‚   โ”œโ”€โ”€ token_tracker.py      # Token/cost tracking
โ”‚   โ”œโ”€โ”€ template_manager.py   # Prompt templates
โ”‚   โ”œโ”€โ”€ display_manager.py    # Display formatting
โ”‚   โ”œโ”€โ”€ agent_loader.py       # Agent loading
โ”‚   โ””โ”€โ”€ alias_manager.py      # Alias management
docs/
โ”œโ”€โ”€ ALIASES.md            # Alias system guide
โ”œโ”€โ”€ CONFIG.md             # Configuration reference
โ”œโ”€โ”€ INSTALL.md            # Installation instructions
โ””โ”€โ”€ Chat_TODO.md          # Roadmap and future features

Documentation

Development

Running Tests

# Install dev dependencies
pip install -e ".[dev]"

# Run tests
pytest

Code Quality

# Format code
black src/ tests/

# Lint
ruff check src/ tests/

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT License - see LICENSE file for details.

Changelog

See CHANGELOG.md for detailed version history.

Latest Release: v0.1.0 (2025-10-09)

Initial public release with:

  • ๐Ÿท๏ธ Agent alias system
  • ๐Ÿ“ Prompt templates with auto-setup
  • ๐Ÿ’ฐ Token tracking and cost estimation
  • โš™๏ธ YAML configuration with auto-setup
  • ๐Ÿ“Š Status bar and session summaries
  • ๐ŸŽจ Rich markdown rendering
  • ๐Ÿ”„ Automatic error recovery
  • ๐Ÿ“œ Persistent command history
  • โœ… 61% test coverage (158 tests)

Troubleshooting

See docs/TROUBLESHOOTING.md for common issues and solutions.

Quick fixes:

  • Package not found: Run pip install --upgrade basic-agent-chat-loop
  • Command not found: Ensure pip's bin directory is in your PATH
  • Import errors: Try reinstalling with pip install --force-reinstall basic-agent-chat-loop

Support

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

basic_agent_chat_loop-1.0.1.tar.gz (168.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

basic_agent_chat_loop-1.0.1-py3-none-any.whl (164.0 kB view details)

Uploaded Python 3

File details

Details for the file basic_agent_chat_loop-1.0.1.tar.gz.

File metadata

  • Download URL: basic_agent_chat_loop-1.0.1.tar.gz
  • Upload date:
  • Size: 168.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for basic_agent_chat_loop-1.0.1.tar.gz
Algorithm Hash digest
SHA256 f5105f5708387cad3ad1593a7722a6b6cc372b0bf8036f8311d8193c5dfe6116
MD5 122bbd320463c6f755ad8bfcecb5a34f
BLAKE2b-256 67c811cd75a2c4dc5f48647250026e676d9988995420d75d3aa8174a183e669b

See more details on using hashes here.

Provenance

The following attestation bundles were made for basic_agent_chat_loop-1.0.1.tar.gz:

Publisher: publish.yml on Open-Agent-Tools/Basic-Agent-Chat-Loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file basic_agent_chat_loop-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for basic_agent_chat_loop-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 598d317eb195c051e5699582fccc431bc1a9e0b9413ef8c3049f963b45de1b36
MD5 1862e09c0f4c59ce1b119511dd8bb396
BLAKE2b-256 c523fe01c704e9c614972350140820ac7bc0c9f392b76d503400ae6285fa86e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for basic_agent_chat_loop-1.0.1-py3-none-any.whl:

Publisher: publish.yml on Open-Agent-Tools/Basic-Agent-Chat-Loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page