docs(kiro): clarify IDE vs CLI setup (#0000)#7067
Conversation
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
|
Warning Rate limit exceeded
To keep reviews running without waiting, you can enable usage-based add-on for your organization. This allows additional reviews beyond the hourly cap. Account admins can enable it under billing. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Run ID: 📒 Files selected for processing (4)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: ed1aa81f5e
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| On Windows PowerShell: | ||
|
|
||
| ```powershell | ||
| where perllsp |
There was a problem hiding this comment.
Use
where.exe in PowerShell verification commands
This PowerShell snippet will fail for many Windows users because where is a built-in alias for Where-Object, and PowerShell resolves aliases before external executables; as written, where perllsp invokes the cmdlet instead of where.exe, so the binary-path verification step does not work. Replace it with where.exe perllsp (or Get-Command perllsp) to keep the troubleshooting flow functional on PowerShell.
Useful? React with 👍 / 👎.
|
Closing as duplicate of #7070 - consolidating duplicate kiro documentation PRs |
Motivation
perllsponPATHfor IDE users because the VS Code/OpenVSX extension can auto-download the binary.Description
docs/EDITORS/KIRO_SETUP.mdto split Kiro IDE vs Kiro CLI, document installingEffortlessMetrics.perl-lsp-rsfrom OpenVSX, document optional manualperllspbinary settings, and include a recommended CLIlsp.jsonexample withinitialization_optionsand common extensions/project patterns.docs/how-to/EDITOR_SETUP.mdto prefer the OpenVSX extension for Kiro IDE in the editor matrix and to add an IDE-first + CLI custom-LSP quick-start.docs/how-to/TROUBLESHOOTING.mdcovering IDE auto-download, manualperllspchecks,/code initguidance,/code statusand/code logscommands, and the custom-LSP capability caveat.docs/reference/CONFIG.mdto use the canonical executable nameperllspand added an Amazon Kiro-specific config snippet and guidance for manual binary management.Testing
cargo xtask fmtto format the repository and the command completed successfully.Codex Task