Conversation
Malkovsky
commented
Apr 5, 2026
- Added project related commands
- Added kilo code dispatcher job
|
@nikolay ping |
| node-version: 20 | ||
|
|
||
| - name: Install Kilo CLI | ||
| run: npm install -g @kilocode/cli |
There was a problem hiding this comment.
SUGGESTION: Cache the npm global install to reduce workflow runtime
Installing @kilocode/cli on every run adds cold-start time. Consider enabling npm cache via actions/setup-node (cache: npm) or caching the global install directory to speed repeated dispatch runs.
Code Review SummaryStatus: 2 Issues Found | Recommendation: Address before merge Overview
Issue Details (click to expand)SUGGESTION
Fix these issues in Kilo Cloud Files Reviewed (0 files)
Reviewed by gpt-5.2-codex-20260114 · 91,641 tokens |
|
@nikolay ping |
|
pong |
|
@nikolay ping |
1 similar comment
|
@nikolay ping |
|
|
||
| const body = outputContent.trim() || '(empty Kilo output)'; | ||
|
|
||
| await github.rest.issues.createComment({ |
There was a problem hiding this comment.
SUGGESTION: review_comment_id input is now ignored
The workflow still accepts review_comment_id, but the script always posts a top-level issue comment. If callers pass a review comment ID expecting a threaded reply, this will change behavior. Consider removing the input or restoring the reply path.
|
pong |
|
@nikolay ping |
1 similar comment
|
@nikolay ping |
|
@Malkovsky pong |
Test to see how it is posted |
99a71aa to
7ba6e36
Compare
* Updated presets * Added ping and perf-review AI commands * Added a workflow that runs a kilo session, supposed to be triggered by the comment and reply to it
7ba6e36 to
0e93226
Compare
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #36 +/- ##
==========================================
+ Coverage 86.17% 86.24% +0.07%
==========================================
Files 11 11
Lines 2850 2850
Branches 561 562 +1
==========================================
+ Hits 2456 2458 +2
+ Misses 257 254 -3
- Partials 137 138 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|