Skip to content

Commit 878698f

Browse files
committed
Add documentation for new commands: dashboard, debug, doctor, init, inline, integrations, issue, launch, profile, quit, restart, setup, theme, translate, update, and user
- Created detailed markdown files for each command with usage, options, examples, and related features.
1 parent c7cee1d commit 878698f

File tree

16 files changed

+1538
-0
lines changed

16 files changed

+1538
-0
lines changed
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
---
2+
doc_meta:
3+
validated: 2025-12-23
4+
commit: 57090ffe
5+
status: validated
6+
testable_headless: false
7+
category: command
8+
title: kiro-cli dashboard
9+
description: Open the Kiro CLI dashboard application
10+
keywords: [dashboard, gui, application, interface]
11+
related: [chat, login]
12+
---
13+
14+
# kiro-cli dashboard
15+
16+
Open the Kiro CLI dashboard application.
17+
18+
## Overview
19+
20+
The dashboard command launches the Kiro CLI graphical user interface. Provides a visual interface for interacting with Kiro CLI features and managing conversations.
21+
22+
## Usage
23+
24+
### Basic Usage
25+
26+
```bash
27+
kiro-cli dashboard
28+
```
29+
30+
## Options
31+
32+
| Option | Short | Description |
33+
|--------|-------|-------------|
34+
| `--verbose` | `-v` | Increase logging verbosity (can be repeated) |
35+
| `--help` | `-h` | Print help information |
36+
37+
## Examples
38+
39+
### Example 1: Open Dashboard
40+
41+
```bash
42+
kiro-cli dashboard
43+
```
44+
45+
Opens the Kiro CLI dashboard application.
46+
47+
## Related Features
48+
49+
- [kiro-cli chat](chat.md) - Command-line chat interface
50+
- [kiro-cli login](login.md) - Authentication required
51+
52+
## Limitations
53+
54+
- Requires graphical environment
55+
- Not available in headless/SSH environments
56+
- May require authentication
57+
58+
## Technical Details
59+
60+
**Interface**: Graphical user interface for Kiro CLI
61+
62+
**Platform**: Desktop application
Lines changed: 200 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
1+
---
2+
doc_meta:
3+
validated: 2025-12-23
4+
commit: 57090ffe
5+
status: validated
6+
testable_headless: true
7+
category: command
8+
title: kiro-cli debug
9+
description: Debug the app with various diagnostic and troubleshooting tools
10+
keywords: [debug, troubleshoot, logs, diagnostics, devtools]
11+
related: [diagnostic, logdump]
12+
---
13+
14+
# kiro-cli debug
15+
16+
Debug the app with various diagnostic and troubleshooting tools.
17+
18+
## Overview
19+
20+
The debug command provides various debugging and diagnostic utilities for troubleshooting Kiro CLI issues. Includes app debugging, log viewing, accessibility testing, and system diagnostics.
21+
22+
## Usage
23+
24+
```bash
25+
kiro-cli debug <subcommand>
26+
```
27+
28+
## Options
29+
30+
| Option | Short | Description |
31+
|--------|-------|-------------|
32+
| `--verbose` | `-v` | Increase logging verbosity (can be repeated) |
33+
| `--help` | `-h` | Print help information |
34+
35+
## Subcommands
36+
37+
### app
38+
Debug the app.
39+
40+
```bash
41+
kiro-cli debug app
42+
```
43+
44+
### build
45+
Switch to another branch of a Fig.js app.
46+
47+
```bash
48+
kiro-cli debug build
49+
```
50+
51+
### autocomplete-window
52+
Toggle/set autocomplete window debug mode.
53+
54+
```bash
55+
kiro-cli debug autocomplete-window
56+
```
57+
58+
### logs
59+
Show debug logs.
60+
61+
```bash
62+
kiro-cli debug logs
63+
```
64+
65+
### input-method
66+
Input method debugger.
67+
68+
```bash
69+
kiro-cli debug input-method
70+
```
71+
72+
### prompt-accessibility
73+
Prompt accessibility testing.
74+
75+
```bash
76+
kiro-cli debug prompt-accessibility
77+
```
78+
79+
### sample
80+
Sample desktop process.
81+
82+
```bash
83+
kiro-cli debug sample
84+
```
85+
86+
### verify-codesign
87+
Debug application codesigning.
88+
89+
```bash
90+
kiro-cli debug verify-codesign
91+
```
92+
93+
### accessibility
94+
Accessibility debugging.
95+
96+
```bash
97+
kiro-cli debug accessibility
98+
```
99+
100+
### key-tester
101+
Key tester utility.
102+
103+
```bash
104+
kiro-cli debug key-tester
105+
```
106+
107+
### diagnostics
108+
Watch diagnostics.
109+
110+
```bash
111+
kiro-cli debug diagnostics
112+
```
113+
114+
### query-index
115+
Query remote repository for updates.
116+
117+
```bash
118+
kiro-cli debug query-index
119+
```
120+
121+
### devtools
122+
Open devtools of specific webview.
123+
124+
```bash
125+
kiro-cli debug devtools
126+
```
127+
128+
### get-index
129+
Display remote index.
130+
131+
```bash
132+
kiro-cli debug get-index
133+
```
134+
135+
### list-intellij-variants
136+
List installed IntelliJ variants.
137+
138+
```bash
139+
kiro-cli debug list-intellij-variants
140+
```
141+
142+
### shell
143+
Use minimal shell config.
144+
145+
```bash
146+
kiro-cli debug shell
147+
```
148+
149+
### fix-permissions
150+
Fix shell config permissions.
151+
152+
```bash
153+
kiro-cli debug fix-permissions
154+
```
155+
156+
### refresh-auth-token
157+
Refresh authentication token.
158+
159+
```bash
160+
kiro-cli debug refresh-auth-token
161+
```
162+
163+
## Examples
164+
165+
### Example 1: View Debug Logs
166+
167+
```bash
168+
kiro-cli debug logs
169+
```
170+
171+
### Example 2: Test Accessibility
172+
173+
```bash
174+
kiro-cli debug accessibility
175+
```
176+
177+
### Example 3: Fix Permissions
178+
179+
```bash
180+
kiro-cli debug fix-permissions
181+
```
182+
183+
## Related Features
184+
185+
- [kiro-cli diagnostic](diagnostic.md) - System diagnostics
186+
- [/logdump](../slash-commands/logdump.md) - Create log archive
187+
188+
## Limitations
189+
190+
- Debug commands are for troubleshooting only
191+
- Some commands may require elevated permissions
192+
- Output varies by platform and configuration
193+
194+
## Technical Details
195+
196+
**Purpose**: Debugging and diagnostic utilities
197+
198+
**Platform**: Cross-platform debug tools
199+
200+
**Permissions**: Some commands may require elevated access

0 commit comments

Comments
 (0)