feat(kiloclaw): add BYOK setup link to settings page#3313
Conversation
Code Review SummaryStatus: 1 Issue Found | Recommendation: Address before merge Executive SummaryThe latest commit replaced Overview
Issue Details (click to expand)WARNING
Files Reviewed (1 file)
Fix these issues in Kilo Cloud Reviewed by claude-4.6-sonnet-20260217 · 391,007 tokens Review guidance: REVIEW.md from base branch |
adding it back here, but I don't think that this is a risk as we own the page. Co-authored-by: kilo-code-bot[bot] <240665456+kilo-code-bot[bot]@users.noreply.github.com>
| .{' '} | ||
| <a | ||
| href="https://kilo.ai/docs/getting-started/byok" | ||
| rel="noopener noreferrer" |
There was a problem hiding this comment.
WARNING: rel="noopener noreferrer" is present but target="_blank" was removed
The previous commit added target="_blank" (missing rel); this commit swapped them instead of adding both. The link now opens in the same tab, and the rel attribute is meaningless without target="_blank". Both attributes are needed together:
| rel="noopener noreferrer" | |
| target="_blank" | |
| rel="noopener noreferrer" |
(Add target="_blank" back on the line above this one, or restore both attributes on the <a> tag.)
Summary
Users configuring default models in KiloClaw settings had no easy way to discover or navigate to BYOK (Bring Your Own Key) setup. This adds a link to the Kilo BYOK settings page and the BYOK setup guide documentation directly below the default model selector, guiding users to configure their own model provider keys.
Verification
/byoknavigates to Kilo BYOK settings pageVisual Changes
Reviewer Notes
N/A