You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added clipboard utilities: copy_to_clipboard and paste_from_clipboard
tools, enabling copying the last assistant response to the system clipboard
and pasting clipboard content into the chat via /paste.
Updated the gemspec to include the new clipboard tools in s.extra_rdoc_files, s.files, and s.test_files.
Enabled several tools by default: get_cve, file_context, directory_structure, browse, write_file, read_file, and search_web.
Renamed the think_loud? flag to think? throughout the codebase, updating
all related logic and tests.
Replaced the old /paste command with clipboard integration, adding a perform_paste_from_clipboard method and a paste_from_clipboard tool.
Added an interactive help mode triggered by /help me, with a new help
prompt template and updated README documentation.
Implemented MessageList#find_last to locate the most recent message
matching a block, with an optional content filter to skip empty messages.
Updated the copy_to_clipboard tool description and success message to “The
last response has been successfully copied to the system clipboard.”
Adjusted Conversation#save_conversation and Conversation#load_conversation to quote Pathname objects correctly in
output messages.