Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/claw/tui/input_handler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def self.completions(prefix, binding:, memory: nil)

# Slash commands
candidates.concat(Claw::Commands::COMMANDS.map { |c| "/#{c}" })
candidates.concat(%w[/plan /role /cd /source /doc /find /shell /memory /forget /help /ask /new])
candidates.concat(%w[/help /ask /new /plan /cd /source /doc /find])

# Memory keywords
if memory
Expand Down
2 changes: 1 addition & 1 deletion lib/claw/tui/object_explorer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Claw
module TUI
# Object exploration commands (pry-style): /ls, /cd, /source, /doc, /find, /whereami.
# Object exploration commands (pry-style): /cd, /source, /doc, /find.
module ObjectExplorer
# @param binding [Binding]
# @return [Hash] { type:, data: }
Expand Down
2 changes: 1 addition & 1 deletion lib/claw/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module Claw
VERSION = "0.2.2"
BUILD = "20260407-010"
BUILD = "20260407-011"
end
Loading