File size: 9,574 Bytes
c981f27 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 | #!/usr/bin/env zsh
# Main command dispatcher and widget registration
# Action handler: Set active agent or execute command
# Flow:
# 1. Check if user_action is a CUSTOM command -> execute with `cmd` subcommand
# 2. If no input_text -> switch to agent (for AGENT type commands)
# 3. If input_text -> execute command with active agent context
function _forge_action_default() {
local user_action="$1"
local input_text="$2"
local command_type=""
# Validate that the command exists in show-commands (if user_action is provided)
if [[ -n "$user_action" ]]; then
local commands_list=$(_forge_get_commands)
if [[ -n "$commands_list" ]]; then
# Check if the user_action is in the list of valid commands and extract the row
local command_row=$(echo "$commands_list" | grep "^${user_action}\b")
if [[ -z "$command_row" ]]; then
echo
_forge_log error "Command '\033[1m${user_action}\033[0m' not found"
return 0
fi
# Extract the command type from the second field (TYPE column)
# Format: "COMMAND_NAME TYPE DESCRIPTION"
command_type=$(echo "$command_row" | awk '{print $2}')
# Case-insensitive comparison using :l (lowercase) modifier
if [[ "${command_type:l}" == "custom" ]]; then
# Generate conversation ID if needed (don't track previous for auto-generation)
if [[ -z "$_FORGE_CONVERSATION_ID" ]]; then
local new_id=$($_FORGE_BIN conversation new)
# Use helper but don't track previous for auto-generation
_FORGE_CONVERSATION_ID="$new_id"
fi
echo
# Execute custom command with execute subcommand
if [[ -n "$input_text" ]]; then
_forge_exec cmd execute --cid "$_FORGE_CONVERSATION_ID" "$user_action" "$input_text"
else
_forge_exec cmd execute --cid "$_FORGE_CONVERSATION_ID" "$user_action"
fi
return 0
fi
fi
fi
# If input_text is empty, just set the active agent (only for AGENT type commands)
if [[ -z "$input_text" ]]; then
if [[ -n "$user_action" ]]; then
if [[ "${command_type:l}" != "agent" ]]; then
echo
_forge_log error "Command '\033[1m${user_action}\033[0m' not found"
return 0
fi
echo
# Set the agent in the local variable
_FORGE_ACTIVE_AGENT="$user_action"
_forge_log info "\033[1;37m${_FORGE_ACTIVE_AGENT:u}\033[0m \033[90mis now the active agent\033[0m"
fi
return 0
fi
# Generate conversation ID if needed (don't track previous for auto-generation)
if [[ -z "$_FORGE_CONVERSATION_ID" ]]; then
local new_id=$($_FORGE_BIN conversation new)
# Use direct assignment here - no previous to track for auto-generation
_FORGE_CONVERSATION_ID="$new_id"
fi
echo
# Only set the agent if user explicitly specified one
if [[ -n "$user_action" ]]; then
_FORGE_ACTIVE_AGENT="$user_action"
fi
# Execute the forge command directly with proper escaping
_forge_exec_interactive -p "$input_text" --cid "$_FORGE_CONVERSATION_ID"
# Start background sync job if enabled and not already running
_forge_start_background_sync
# Start background update check
_forge_start_background_update
}
function forge-accept-line() {
# Save the original command for history
local original_buffer="$BUFFER"
# Parse the buffer first in parent shell context to avoid subshell issues
local user_action=""
local input_text=""
# Check if the line starts with any of the supported patterns
if [[ "$BUFFER" =~ "^:([a-zA-Z][a-zA-Z0-9_-]*)( (.*))?$" ]]; then
# Action with or without parameters: :foo or :foo bar baz
user_action="${match[1]}"
# Only use match[3] if the second group (space + params) was actually matched
if [[ -n "${match[2]}" ]]; then
input_text="${match[3]}"
else
input_text=""
fi
elif [[ "$BUFFER" =~ "^: (.*)$" ]]; then
# Default action with parameters: : something
user_action=""
input_text="${match[1]}"
else
# For non-:commands, use normal accept-line
zle accept-line
return
fi
# Add the original command to history before transformation
print -s -- "$original_buffer"
CURSOR=${#BUFFER}
zle redisplay
# Handle aliases - convert to their actual agent names
case "$user_action" in
ask)
user_action="sage"
;;
plan)
user_action="muse"
;;
esac
# ⚠️ IMPORTANT: When adding a new command here, you MUST also update:
# crates/forge_main/src/built_in_commands.json
# Add a new entry: {"command": "name", "description": "Description [alias: x]"}
#
# Naming convention: shell commands should follow Object-Action (e.g., provider-login).
#
# ZLE-dispatched Forge commands bypass zsh preexec/precmd hooks, so emit
# OSC 133 markers explicitly. Ghostty uses these markers to distinguish the
# prompt from command output during window resize/reflow.
_forge_osc133_emit "B"
_forge_osc133_emit "C"
# Dispatch to appropriate action handler using pattern matching
case "$user_action" in
new|n)
_forge_action_new "$input_text"
;;
info|i)
_forge_action_info
;;
dump|d)
_forge_action_dump "$input_text"
;;
compact)
_forge_action_compact
;;
retry|r)
_forge_action_retry
;;
help)
_forge_action_help
;;
agent|a)
_forge_action_agent "$input_text"
;;
conversation|c)
_forge_action_conversation "$input_text"
;;
conversation-tree|ct)
_forge_action_conversation_tree
;;
config-model|cm)
_forge_action_model "$input_text"
;;
model|m)
_forge_action_session_model "$input_text"
;;
config-reload|cr|model-reset|mr)
_forge_action_config_reload
;;
reasoning-effort|re)
_forge_action_reasoning_effort "$input_text"
;;
config-reasoning-effort|cre)
_forge_action_config_reasoning_effort "$input_text"
;;
config-commit-model|ccm)
_forge_action_commit_model "$input_text"
;;
config-suggest-model|csm)
_forge_action_suggest_model "$input_text"
;;
tools|t)
_forge_action_tools
;;
config|env|e)
_forge_action_config
;;
config-edit|ce)
_forge_action_config_edit
;;
skill)
_forge_action_skill
;;
edit|ed)
_forge_action_editor "$input_text"
local action_status=$?
_forge_osc133_emit "D;$action_status"
_forge_osc133_emit "A"
# Note: editor action intentionally modifies BUFFER and handles its own prompt reset
return $action_status
;;
commit)
_forge_action_commit "$input_text"
;;
commit-preview)
_forge_action_commit_preview "$input_text"
local action_status=$?
_forge_osc133_emit "D;$action_status"
_forge_osc133_emit "A"
# Note: commit action intentionally modifies BUFFER and handles its own prompt reset
return $action_status
;;
suggest|s)
_forge_action_suggest "$input_text"
local action_status=$?
_forge_osc133_emit "D;$action_status"
_forge_osc133_emit "A"
# Note: suggest action intentionally modifies BUFFER and handles its own prompt reset
return $action_status
;;
clone)
_forge_action_clone "$input_text"
;;
rename|rn)
_forge_action_rename "$input_text"
;;
conversation-rename)
_forge_action_conversation_rename "$input_text"
;;
copy)
_forge_action_copy
;;
workspace-sync|sync)
_forge_action_sync
;;
workspace-init|sync-init)
_forge_action_sync_init
;;
workspace-status|sync-status)
_forge_action_sync_status
;;
workspace-info|sync-info)
_forge_action_sync_info
;;
provider-login|login|provider)
_forge_action_login "$input_text"
;;
logout)
_forge_action_logout "$input_text"
;;
*)
_forge_action_default "$user_action" "$input_text"
;;
esac
local action_status=$?
_forge_osc133_emit "D;$action_status"
_forge_osc133_emit "A"
# Centralized reset after all actions complete
# This ensures consistent prompt state without requiring each action to call _forge_reset
# Exceptions: editor, commit-preview, and suggest actions return early as they intentionally modify BUFFER
_forge_reset
return $action_status
}
|