Attribute●Since v0.0 COMMANDS
COMMANDS: tuple[SlashCommand, ...] = (
SlashCommand(name='/agents', description='Browse and switch between available agents', bypass_tier=(BypassTier.
IMMEDIATE_UI
)
,
hidden_keywords
=
'switch profile persona'
)
,
SlashCommand
(
name
=
'/clear'
,
description
=
'Clear chat and start new thread'
,
bypass_tier
=
(
BypassTier
.
QUEUED
)
,
hidden_keywords
=
'reset'
)
,
SlashCommand
(
name
=
'/editor'
,
description
=
'Open prompt in external editor ($EDITOR)'
,
bypass_tier
=
(
BypassTier
.
QUEUED
)
)
,
SlashCommand
(
name
=
'/mcp'
,
description
=
'Show active MCP servers and tools'
,
bypass_tier
=
(
BypassTier
.
SIDE_EFFECT_FREE
)
,
hidden_keywords
=
'servers'
)
,
SlashCommand
(
name
=
'/model'
,
description
=
'Switch or configure model (--model-params, --default)'
,
bypass_tier
=
(
BypassTier
.
IMMEDIATE_UI
)
)
,
SlashCommand
(
name
=
'/notifications'
,
description
=
'Configure startup warning preferences'
,
bypass_tier
=
(
BypassTier
.
IMMEDIATE_UI
)
,
hidden_keywords
=
'warnings alerts suppress'
)
,
SlashCommand
(
name
=
'/offload'
,
description
=
'Free up context window space by offloading older messages'
,
bypass_tier
=
(
BypassTier
.
QUEUED
)
,
hidden_keywords
=
'compact'
,
aliases
=
(
'/compact'
,
)
)
,
SlashCommand
(
name
=
'/remember'
,
description
=
'Update memory and skills from conversation'
,
bypass_tier
=
(
BypassTier
.
QUEUED
)
,
argument_hint
=
'[context]'
)
,
SlashCommand
(
name
=
'/skill-creator'
,
description
=
'Guide for creating effective agent skills'
,
bypass_tier
=
(
BypassTier
.
QUEUED
)
,
argument_hint
=
'[task]'
)
,
SlashCommand
(
name
=
'/threads'
,
description
=
'Browse and resume previous threads'
,
bypass_tier
=
(
BypassTier
.
IMMEDIATE_UI
)
,
hidden_keywords
=
'continue history sessions'
)
,
SlashCommand
(
name
=
'/trace'
,
description
=
'Open current thread in LangSmith'
,
bypass_tier
=
(
BypassTier
.
SIDE_EFFECT_FREE
)
)
,
SlashCommand
(
name
=
'/tokens'
,
description
=
'Token usage'
,
bypass_tier
=
(
BypassTier
.
QUEUED
)
,
hidden_keywords
=
'cost'
)
,
SlashCommand
(
name
=
'/reload'
,
description
=
'Reload config from environment variables and .env'
,
bypass_tier
=
(
BypassTier
.
QUEUED
)
,
hidden_keywords
=
'refresh'
)
,
SlashCommand
(
name
=
'/theme'
,
description
=
'Switch color theme'
,
bypass_tier
=
(
BypassTier
.
IMMEDIATE_UI
)
,
hidden_keywords
=
'dark light color appearance'
)
,
SlashCommand
(
name
=
'/update'
,
description
=
'Check for and install updates'
,
bypass_tier
=
(
BypassTier
.
QUEUED
)
,
hidden_keywords
=
'upgrade'
)
,
SlashCommand
(
name
=
'/auto-update'
,
description
=
'Toggle automatic updates on or off'
,
bypass_tier
=
(
BypassTier
.
SIDE_EFFECT_FREE
)
)
,
SlashCommand
(
name
=
'/changelog'
,
description
=
'Open changelog in browser'
,
bypass_tier
=
(
BypassTier
.
SIDE_EFFECT_FREE
)
)
,
SlashCommand
(
name
=
'/version'
,
description
=
'Show version'
,
bypass_tier
=
(
BypassTier
.
CONNECTING
)
)
,
SlashCommand
(
name
=
'/feedback'
,
description
=
'Submit a bug report or feature request'
,
bypass_tier
=
(
BypassTier
.
SIDE_EFFECT_FREE
)
)
,
SlashCommand
(
name
=
'/docs'
,
description
=
'Open documentation in browser'
,
bypass_tier
=
(
BypassTier
.
SIDE_EFFECT_FREE
)
)
,
SlashCommand
(
name
=
'/help'
,
description
=
'Show help'
,
bypass_tier
=
(
BypassTier
.
QUEUED
)
)
,
SlashCommand
(
name
=
'/quit'
,
description
=
'Exit app'
,
bypass_tier
=
(
BypassTier
.
ALWAYS
)
,
hidden_keywords
=
'close leave'
,
aliases
=
(
'/q'
,
)
)
)