Release v0.6.3
What's Changed
✨ Features
- system_reminder plugin - Injects contextual guidance into tool results to nudge agent behavior (like Claude Code's system reminders)
- TUI Input improvements - Add Shift+Tab support and
on_special_keycallback - useful_prompts module - Add Coding Agent Prompt template (
co copy coding_agent)
🔧 Improvements
- Use hidden directory for browser agent profile (cleaner user directories)
Installation
pip install connectonion==0.6.3system_reminder Plugin
from connectonion import Agent
from connectonion.useful_plugins import system_reminder
agent = Agent("assistant", tools=[write_file], plugins=[system_reminder])The plugin automatically adds contextual reminders to tool results, like "Consider running tests" after writing code files.
Customize reminders with co copy system_reminder.
Full Changelog: v0.6.2...v0.6.3