Kiro CLI rovides a convenient way to respond to specific parts of Kiro's previous message through the /reply command. It opens an editor with Kiro's last response quoted with > prefixes, allowing you to easily address individual points or provide structured feedback.
The command uses your system's default editor, and falls back to vi if no editor is configured
When Kiro asks several clarifying questions, use /reply to address each one:
> What programming language are you using? Python > What framework are you working with? Django > What specific error are you encountering? I'm getting a 404 error when trying to access my API endpoints.
When Kiro provides a detailed explanation, respond to specific parts:
> Here are three approaches you could take: > 1. Use a database migration > 2. Update the model directly > 3. Create a custom management command I'd like to go with option 1. Can you show me how to create the migration? > Make sure to backup your data first. Already done - I have a full backup from this morning.
When Kiro suggests multiple changes, organize your responses clearly:
> I recommend these improvements: > - Add error handling for network requests > - Implement input validation > - Add logging for debugging Agreed on all points. For the error handling: - Should I use try/catch blocks or a decorator pattern? For logging: - What level of detail do you recommend?
The command provides clear feedback about its operation:
/reply when Kiro's response contains multiple points that need individual attentionView related pages
Responding to messages