main
 1# frozen_string_literal: true
 2
 3Elelem::Plugins.register(:compact) do |agent|
 4  agent.commands.register("compact", description: "Compress context") do
 5    response = agent.turn("Summarize: accomplishments, state, next steps. Brief.")
 6    agent.conversation.clear!
 7    agent.conversation.add(role: "user", content: "Context: #{response}")
 8    agent.terminal.say "  → compacted"
 9  end
10end