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
5 changes: 5 additions & 0 deletions .changeset/feedback-bug-alias.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@moonshot-ai/kimi-code": patch
---

Add /bug as an alias for the /feedback slash command. Type /bug to submit feedback.
2 changes: 1 addition & 1 deletion apps/kimi-code/src/tui/commands/registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ export const BUILTIN_SLASH_COMMANDS = [
},
{
name: 'feedback',
aliases: [],
aliases: ['bug'],
description: 'Send feedback to make Kimi Code better',
priority: 60,
availability: 'always',
Expand Down
1 change: 1 addition & 0 deletions apps/kimi-code/test/tui/commands/registry.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ describe('built-in slash command registry', () => {
expect(findBuiltInSlashCommand('quit')?.name).toBe('exit');
expect(findBuiltInSlashCommand('q')?.name).toBe('exit');
expect(findBuiltInSlashCommand('clear')?.name).toBe('new');
expect(findBuiltInSlashCommand('bug')?.name).toBe('feedback');
expect(findBuiltInSlashCommand('btw')?.name).toBe('btw');
expect(findBuiltInSlashCommand('mcp')?.name).toBe('mcp');
expect(findBuiltInSlashCommand('status')?.name).toBe('status');
Expand Down
2 changes: 1 addition & 1 deletion docs/en/reference/slash-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Prompt mode exits with code `0` when the goal completes, `3` when it blocks, and
| `/mcp` | — | List MCP servers and their connection status in the current session | Yes |
| `/plugins` | — | Open the interactive plugin manager | Yes |
| `/version` | — | Display the Kimi Code CLI version number | Yes |
| `/feedback` | | Submit feedback with optional diagnostic logs and codebase context | Yes |
| `/feedback` | `/bug` | Submit feedback with optional diagnostic logs and codebase context | Yes |

## Exit

Expand Down
2 changes: 1 addition & 1 deletion docs/zh/reference/slash-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Prompt 模式在目标完成时以退出码 `0` 退出,在目标阻塞时以 `
| `/mcp` | — | 列出当前会话中的 MCP server 及连接状态 | 是 |
| `/plugins` | — | 打开交互式 plugin 管理器 | 是 |
| `/version` | — | 显示 Kimi Code CLI 版本号 | 是 |
| `/feedback` | | 提交反馈,可附加诊断日志和代码库上下文 | 是 |
| `/feedback` | `/bug` | 提交反馈,可附加诊断日志和代码库上下文 | 是 |

## 退出

Expand Down
Loading