-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathherdr-plugin.toml
More file actions
49 lines (41 loc) · 1.24 KB
/
Copy pathherdr-plugin.toml
File metadata and controls
49 lines (41 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
id = "afogel.shepherdr"
name = "shepherdr"
version = "0.1.0"
min_herdr_version = "0.7.0"
description = "Shepherd delegated coding agents into visible, auditable herdr panes you can watch, resume, and take over"
platforms = ["macos"]
[[build]]
command = ["cargo", "install", "--path", "."]
[[actions]]
id = "second-opinion"
title = "Second opinion (codex reviews this diff)"
contexts = ["workspace", "pane"]
command = ["shepherdr", "action", "second-opinion"]
[[actions]]
id = "resume-last"
title = "Resume last dispatch (reopen newest session, headed)"
contexts = ["workspace", "pane"]
command = ["shepherdr", "action", "resume-last"]
[[actions]]
id = "noop"
title = "Noop"
contexts = ["workspace"]
command = ["shepherdr", "action", "noop"]
[[panes]]
id = "board"
title = "Workers board"
placement = "overlay"
command = ["shepherdr", "board"]
[[events]]
on = "worktree.created"
command = ["shepherdr", "event", "worktree-created"]
[[keys.command]]
key = "prefix+r"
type = "plugin_action"
command = "afogel.shepherdr.second-opinion"
description = "codex second opinion on the focused diff"
[[keys.command]]
key = "prefix+shift+r"
type = "plugin_action"
command = "afogel.shepherdr.resume-last"
description = "resume the newest resumable dispatch in a headed pane"