Skip to content

Commit 1b241dd

Browse files
committed
feat(discuss): suggest reusable rule candidates
1 parent 1bed748 commit 1b241dd

File tree

7 files changed

+652
-29
lines changed

7 files changed

+652
-29
lines changed

TODO.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ This roadmap is derived from deep research into Greptile's public docs, blog, MC
9696
57. [x] Add a "train the reviewer" callout when thumbs coverage on a review is low.
9797
58. [x] Add review-change comparisons so users can diff one review run against the next on the same PR.
9898
59. [x] Add better surfacing for incremental PR reviews so users know when only the delta was reviewed.
99-
60. [ ] Add discussion workflows that can convert repeated human comments into candidate rules or context snippets.
99+
60. [x] Add discussion workflows that can convert repeated human comments into candidate rules or context snippets.
100100

101101
## 7. Analytics, Reporting, and Quality Dashboards
102102

src/commands/misc/discussion.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#[path = "discussion/candidates.rs"]
2+
mod candidates;
13
#[path = "discussion/command.rs"]
24
mod command;
35
#[path = "discussion/prompt.rs"]
@@ -9,4 +11,4 @@ mod thread;
911
#[path = "discussion/types.rs"]
1012
mod types;
1113

12-
pub use command::discuss_command;
14+
pub use command::{discuss_command, DiscussCommandRequest};

0 commit comments

Comments
 (0)