Skip to content

Release v0.6.3

Choose a tag to compare

@wu-changxing wu-changxing released this 30 Jan 14:10

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_key callback
  • 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.3

system_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