Skip to main content
Reference

Slash Commands

All built-in slash commands, aliases, and usage in Qoder CLI interactive sessions

In an interactive session, commands starting with / are slash commands, used to perform in-session operations without exiting. Typing / brings up the command completion list, and /help displays all available commands. This page lists all built-in slash commands grouped by function. Some commands may not be visible depending on current feature flags or versions (see Conditional Commands at the end of this page).

Sessions and Conversations

CommandDescription
/newCreate a new empty session.
/clearClear the current session content.
/continueResume the most recent session for the current project.
/resumeRestore a historical session.
/renameRename the current session.
/branchBranch a new session from the current one.
/exportExport the current session content.
/copyCopy the last response.
/compactCompress context to free up space.
/rewindRoll back to a specific checkpoint.
/quitExit the CLI.

Models and Reasoning

CommandDescription
/modelSelect the conversational model.
/effortSet the reasoning effort level.
/fastSwitch to Fast Mode.
/context-windowSet the context window.

Work Modes

CommandDescription
/planEnter Plan mode.
/goalManage session goals (see Goal Command Reference).
/loopExecute prompts or commands in a recurring loop (see Loop Command Reference).
/questIntelligent Workflow Orchestrator that guides you through feature development step-by-step using dedicated subagents.
/tasksOpen the background task panel (aliases /bg, /background).
/workflowsOpen the workflow panel (alias /workflow-tasks).
/kanbanOpen the Kanban panel.

Code and Review

CommandDescription
/diffView the code diff.
/reviewReview code changes.
/initInitialize the project (generate the project instructions file).
/setup-githubConfigure GitHub Actions integration (not available in the CN edition).

Configuration and UI

CommandDescription
/settingsOpen the Settings Panel (alias /config).
/themeSwitch the color theme.
/statuslineConfigure the status bar.
/editorConfigure editor integration.
/vimToggle Vim mode.
/voiceToggle voice input.
/shortcutsView the keyboard shortcut list.

Extensions and Tools

CommandDescription
/mcpManage MCP servers.
/toolsView the list of available tools.
/skillsManage Agent Skills.
/agentsManage Agents.
/hooksManage Hooks.
/commandsReload and list all available commands.
/pluginsManage plugins (alias /plugin).
/marketplaceBrowse the Plugin Marketplace (alias /market).
/memoryManage long-term memory.

Built-in Skills

The following commands are provided by built-in Skills and can also be automatically invoked by Agents on demand:
CommandDescription
/debugDebug assistant to help locate and fix issues.
/verifyVerify if results meet expectations.
/simplifySimplify code or workflows.
/security-scanQoder cloud security scan (supports L2 lightweight and L3 deep review).
/runLaunch and drive the project's actual application to observe the effects of changes at runtime.
/run-skill-generatorCreate or improve project-specific run skills.
/batchSpawn parallel working agents in an isolated git worktree to apply batch changes across multiple files (requires the current directory to be a Git repository).
/rememberReview automatically accumulated memory entries and propose promotion suggestions (requires auto-memory to be enabled).
/mcp-configManage MCP server configurations.
For the complete list and use cases, see Built-in Agent and Skills.

Account and Status

CommandDescription
/loginSign in or switch authentication methods (alias /signin).
/logoutSign out and clear locally cached credentials (alias /signout).
/statusView account and session status.
/profileView user profile.
/usageView usage statistics.
/upgradeUpgrade the account subscription plan.
/insightsView insight analysis.
/privacyManage privacy settings.
/permissionsManage permissions (view and adjust permission rules).

Remote and Other

CommandDescription
/remote-controlRemotely control the session.
/remote-envManage remote environments.
/add-dirAdd trusted directories.
/contextManage context.
/docsOpen documentation.
/helpDisplay help information.
/aboutDisplay about information.
/feedbackSubmit feedback.
/release-notesView the changelog.

Conditional Commands

Some commands are only visible or available when specific conditions are met:
  • /agents, /plan, /workflows, /marketplace: Available only when the corresponding feature flags are enabled.
  • /skills: Requires Skills support and administrator permissions to be enabled.
  • /mcp: Displays a disabled prompt when MCP is disabled.
  • /setup-github: Not available in the CN edition.
  • If a command is turned off by a feature gate, a corresponding disabled prompt will be displayed when typed.

Next Steps