summaryrefslogtreecommitdiff
path: root/internal/hexaiaction/types.go
blob: d3cda4e34b6d29b9556a42719cd7252bc336b3ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package hexaiaction

// Summary: Core types and constants for hexai-tmux-action.

type ActionKind string

const (
	ActionSkip        ActionKind = "skip"
	ActionRewrite     ActionKind = "rewrite"
	ActionDiagnostics ActionKind = "diagnostics"
	ActionDocument    ActionKind = "document"
	ActionGoTest      ActionKind = "gotest"
	ActionSimplify    ActionKind = "simplify"
	ActionCustom      ActionKind = "custom"
)

// InputParts represents parsed stdin input for actions.
type InputParts struct {
	Selection   string
	Diagnostics []string
}