Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ In your AI agent, run:
/stage-chapters
```

This organizes your local changes into reviewable chapters and opens a browser UI. Everything happens on your machine.
This organizes your local changes into reviewable chapters and prints a local review URL for you to open when ready. Everything happens on your machine.

You can leave draft feedback comments on files and diff lines in the browser UI. The agent receives them only after you press **Submit feedback**.

### Options

Expand Down
2 changes: 2 additions & 0 deletions mise.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[tools]
node = "25.9.0"
15 changes: 15 additions & 0 deletions packages/cli/drizzle/0005_mixed_rick_jones.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
CREATE TABLE `feedback_comment` (
`id` text PRIMARY KEY NOT NULL,
`createdAt` integer NOT NULL,
`updatedAt` integer NOT NULL,
`runId` text NOT NULL,
`target` text NOT NULL,
`body` text NOT NULL,
`status` text DEFAULT 'draft' NOT NULL,
`submittedAt` text,
`submissionId` text,
FOREIGN KEY (`runId`) REFERENCES `chapter_run`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE INDEX `feedback_comment_run_id_idx` ON `feedback_comment` (`runId`);--> statement-breakpoint
CREATE INDEX `feedback_comment_submission_id_idx` ON `feedback_comment` (`submissionId`);
Loading