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
4 changes: 4 additions & 0 deletions crates/forge_main/src/built_in_commands.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
"command": "config-suggest-model",
"description": "Set the model used for command suggestion generation [alias: csm]"
},
{
"command": "config",
"description": "List current configuration values"
},
{
"command": "new",
"description": "Start new conversation [alias: n]"
Expand Down
6 changes: 6 additions & 0 deletions shell-plugin/lib/actions/config.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,12 @@ function _forge_select_and_set_config() {
)
}

# Action handler: Show config list
function _forge_action_config() {
echo
_forge_exec config list
}

# Action handler: Show tools
function _forge_action_tools() {
echo
Expand Down
3 changes: 3 additions & 0 deletions shell-plugin/lib/dispatcher.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,9 @@ function forge-accept-line() {
tools|t)
_forge_action_tools
;;
config)
_forge_action_config
;;
skill)
_forge_action_skill
;;
Expand Down
Loading