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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@matterailab/orbcode",
"version": "6.7.8",
"version": "6.7.9",
"description": "OrbCode CLI — agentic coding in your terminal, powered by Axon models by MatterAI",
"type": "module",
"bin": {
Expand Down
2 changes: 2 additions & 0 deletions src/ui/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ const SLASH_COMMANDS: SlashCommand[] = [
{ name: "/logout", description: "sign out and remove the saved token" },
{ name: "/version", description: "show the OrbCode CLI version" },
{ name: "/exit", description: "quit OrbCode CLI" },
{ name: "/quit", description: "quit OrbCode CLI" },
];

const WHEEL_SCROLL_LINES = 3;
Expand Down Expand Up @@ -1259,6 +1260,7 @@ export function App({
break;
}
case "/exit":
case "/quit":
endAndExit("prompt_input_exit");
break;
default:
Expand Down