relay-flow 0.2.3-alpha → 0.2.5-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +121 -10
- package/cmd/relay-flow/backend_selection_test.go +149 -0
- package/cmd/relay-flow/main.go +96 -13
- package/cmd/relay-flow/pi_wiring_test.go +64 -0
- package/cmd/relay-flow/scenario_test.go +19 -2
- package/cmd/relay-flow/serve.go +100 -19
- package/cmd/relay-flow/serve_recovery_test.go +100 -0
- package/cmd/relay-flow/temporal_init.go +170 -0
- package/cmd/relay-flow/temporal_init_test.go +217 -0
- package/cmd/relay-flow/temporal_report_test.go +733 -0
- package/examples/beads-workflow.yaml +3 -3
- package/examples/config-reference.yaml +144 -0
- package/examples/minimal-beads-task-workflow.yaml +35 -0
- package/examples/minimal-jira-task-workflow.yaml +68 -0
- package/examples/workflow-reference.yaml +112 -0
- package/go.mod +37 -16
- package/go.sum +129 -61
- package/internal/config/machine.go +33 -1
- package/internal/config/machine_test.go +76 -0
- package/internal/execution/goworkflows/engine.go +13 -38
- package/internal/execution/goworkflows/projection.go +47 -464
- package/internal/execution/projection/projection.go +867 -0
- package/internal/execution/projection/projection_test.go +347 -0
- package/internal/execution/temporal/activities.go +567 -0
- package/internal/execution/temporal/engine.go +384 -0
- package/internal/execution/temporal/engine_test.go +277 -0
- package/internal/execution/temporal/interpreter.go +736 -0
- package/internal/execution/temporal/operations.go +455 -0
- package/internal/execution/temporal/operations_test.go +101 -0
- package/internal/execution/temporal/recovery.go +194 -0
- package/internal/execution/temporal/recovery_runtime.go +41 -0
- package/internal/execution/temporal/recovery_test.go +102 -0
- package/internal/execution/temporal/snapshot_restart_test.go +72 -0
- package/internal/execution/temporal/spike_test.go +934 -0
- package/internal/execution/temporal/visibility_lag_test.go +415 -0
- package/internal/harness/opencode/opencode.go +3 -1
- package/internal/harness/opencode/opencode_test.go +1 -1
- package/internal/harness/opencode/repo_setup.go +1 -1
- package/internal/harness/pi/config_test.go +46 -0
- package/internal/harness/pi/lifecycle_test.go +69 -0
- package/internal/harness/pi/pi.go +264 -0
- package/internal/harness/pi/pi_test.go +338 -0
- package/internal/harness/pi/prompt_test.go +150 -0
- package/internal/harness/pi/testdata/pi-0.84.1/capture.json +126 -0
- package/internal/harness/pi/testdata/pi-0.84.1/noninteractive-output.txt +11 -0
- package/internal/harness/pi/testdata/pi-0.84.1/tui-output-sanitized.txt +17 -0
- package/internal/harness/pi/validation_test.go +144 -0
- package/internal/runner/herdr/baseref.go +60 -0
- package/internal/runner/herdr/herdr.go +592 -0
- package/internal/runner/herdr/herdr_test.go +708 -0
- package/internal/runner/herdr/herdrcli/contract.go +128 -0
- package/internal/runner/herdr/herdrcli/exec.go +68 -0
- package/internal/runner/herdr/herdrcli/herdrcli_test.go +274 -0
- package/internal/runner/herdr/herdrcli/live_test.go +132 -0
- package/internal/runner/herdr/herdrcli/operations.go +281 -0
- package/internal/runner/herdr/herdrcli/response.go +116 -0
- package/internal/runner/herdr/herdrcli/testdata/empty-panes.json +1 -0
- package/internal/runner/herdr/herdrcli/testdata/empty-tabs.json +1 -0
- package/internal/runner/herdr/herdrcli/testdata/error-not-git-worktree.json +1 -0
- package/internal/runner/herdr/herdrcli/testdata/error-pane-not-found.json +1 -0
- package/internal/runner/herdr/herdrcli/testdata/error-workspace-not-found.json +1 -0
- package/internal/runner/herdr/herdrcli/testdata/error-worktree-not-found.json +1 -0
- package/internal/runner/herdr/herdrcli/testdata/malformed.json +1 -0
- package/internal/runner/herdr/herdrcli/testdata/pane-close.json +6 -0
- package/internal/runner/herdr/herdrcli/testdata/pane-get.json +25 -0
- package/internal/runner/herdr/herdrcli/testdata/pane-list.json +45 -0
- package/internal/runner/herdr/herdrcli/testdata/pane-process-info-shell.json +22 -0
- package/internal/runner/herdr/herdrcli/testdata/pane-process-info.json +23 -0
- package/internal/runner/herdr/herdrcli/testdata/pane-rename.json +23 -0
- package/internal/runner/herdr/herdrcli/testdata/snapshot.json +213 -0
- package/internal/runner/herdr/herdrcli/testdata/strict-herdr.sh +175 -0
- package/internal/runner/herdr/herdrcli/testdata/tab-create.json +31 -0
- package/internal/runner/herdr/herdrcli/testdata/tab-list.json +26 -0
- package/internal/runner/herdr/herdrcli/testdata/workspace-close.json +6 -0
- package/internal/runner/herdr/herdrcli/testdata/worktree-create.json +58 -0
- package/internal/runner/herdr/herdrcli/testdata/worktree-list.json +35 -0
- package/internal/runner/herdr/herdrcli/testdata/worktree-open.json +59 -0
- package/internal/runner/orca/orca.go +33 -0
- package/internal/runner/orca/orca_test.go +33 -4
- package/internal/runner/runner.go +8 -0
- package/internal/task/beads/beads.go +0 -16
- package/internal/task/beads/config_compatibility_test.go +7 -8
- package/internal/task/jira/filters_test.go +32 -6
- package/internal/task/jira/jira.go +27 -17
- package/package.json +1 -1
|
@@ -16,13 +16,13 @@ taskConfig:
|
|
|
16
16
|
parentStatuses:
|
|
17
17
|
- open
|
|
18
18
|
issueTypes:
|
|
19
|
-
-
|
|
19
|
+
- task
|
|
20
20
|
labels:
|
|
21
21
|
- relay-ready
|
|
22
22
|
# assignees:
|
|
23
23
|
# - owner@example.com
|
|
24
|
-
# Optional
|
|
25
|
-
#
|
|
24
|
+
# Optional mailbox assignee inherited by nodes. It does not filter parent
|
|
25
|
+
# tickets; configure filters.assignees explicitly to filter pickup.
|
|
26
26
|
# assignee: owner@example.com
|
|
27
27
|
|
|
28
28
|
# transitionTo describes one lifecycle point, so configure it on a node.
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
# Complete relay-flow machine configuration reference.
|
|
2
|
+
#
|
|
3
|
+
# This example uses Jira + Orca + OpenCode. Replace the example values before
|
|
4
|
+
# use. The live machine file is ~/.relay-flow/config.yaml.
|
|
5
|
+
#
|
|
6
|
+
# One task plugin, runner plugin, and harness plugin are selected for the whole
|
|
7
|
+
# machine. Jira and Beads therefore use separate relay-flow configurations.
|
|
8
|
+
|
|
9
|
+
pollIntervalSeconds: 15
|
|
10
|
+
completedRunRetentionDays: 30
|
|
11
|
+
|
|
12
|
+
# These default to true when omitted. keepTerminalsAlive: true requires
|
|
13
|
+
# keepSessionsAlive: true.
|
|
14
|
+
keepTerminalsAlive: true
|
|
15
|
+
keepSessionsAlive: true
|
|
16
|
+
|
|
17
|
+
taskPlugin: jira
|
|
18
|
+
|
|
19
|
+
taskConfig:
|
|
20
|
+
# Root mailbox assignee. This does not filter parent tickets; use
|
|
21
|
+
# filters.assignees for ticket pickup. Replace it with a real Jira account
|
|
22
|
+
# email or omit it.
|
|
23
|
+
assignee: relay-bot@example.com
|
|
24
|
+
|
|
25
|
+
# Task-system filters are adapter-owned. These values are Jira-native.
|
|
26
|
+
filters:
|
|
27
|
+
parentStatuses:
|
|
28
|
+
- To Do
|
|
29
|
+
issueTypes:
|
|
30
|
+
- Task
|
|
31
|
+
labels:
|
|
32
|
+
- relay-ready
|
|
33
|
+
assignees:
|
|
34
|
+
- currentUser()
|
|
35
|
+
# Jira resolves currentUser() to the authenticated Jira email and does
|
|
36
|
+
# not send it as JQL. Ticket pickup is controlled only by this list;
|
|
37
|
+
# the top-level assignee controls mailbox assignment.
|
|
38
|
+
|
|
39
|
+
# Avoid setting transitionTo at root scope unless the same values should
|
|
40
|
+
# apply to every lifecycle point, including end. Prefer node-level values.
|
|
41
|
+
# transitionTo:
|
|
42
|
+
# parentStatus: In Progress
|
|
43
|
+
# taskStatus: In Progress
|
|
44
|
+
|
|
45
|
+
# Task-system text templates. The fixed report contract is appended by
|
|
46
|
+
# relay-flow and is not changed by these templates.
|
|
47
|
+
templates:
|
|
48
|
+
mailboxDescription: |-
|
|
49
|
+
Parent ticket: {{ticket}}
|
|
50
|
+
Workflow: {{workflow}}
|
|
51
|
+
Node: {{node}}
|
|
52
|
+
Node type: {{nodeType}}
|
|
53
|
+
Agent: {{agent}}
|
|
54
|
+
Mailbox: {{mailbox}}
|
|
55
|
+
|
|
56
|
+
Node work:
|
|
57
|
+
{{nodeDescription}}
|
|
58
|
+
|
|
59
|
+
Read this mailbox's comments for feedback from previous nodes.
|
|
60
|
+
|
|
61
|
+
summaryComment: |-
|
|
62
|
+
Summary for {{node}}
|
|
63
|
+
|
|
64
|
+
{{summaryReport}}
|
|
65
|
+
|
|
66
|
+
feedbackComment: |-
|
|
67
|
+
Feedback from {{sourceNode}} to {{targetNode}} mailbox {{mailbox}}
|
|
68
|
+
|
|
69
|
+
{{feedbackReport}}
|
|
70
|
+
|
|
71
|
+
runnerPlugin: orca
|
|
72
|
+
|
|
73
|
+
runnerConfig:
|
|
74
|
+
# Optional Orca base branch. When omitted, Orca derives it from the repo's
|
|
75
|
+
# primary worktree.
|
|
76
|
+
baseRef: main
|
|
77
|
+
|
|
78
|
+
harnessPlugin: opencode
|
|
79
|
+
|
|
80
|
+
harnessConfig:
|
|
81
|
+
# OpenCode supports initial, feedback, and hitl templates.
|
|
82
|
+
initial: |-
|
|
83
|
+
Task system: {{taskSystem}}
|
|
84
|
+
Use the {{taskSystem}} tools to read the parent ticket {{ticket}}.
|
|
85
|
+
|
|
86
|
+
Your mailbox is {{mailbox}}. Read its description and comments for node instructions and feedback.
|
|
87
|
+
|
|
88
|
+
feedback: |-
|
|
89
|
+
New feedback was added to the comments section of your mailbox subtask {{mailbox}}. Read it.
|
|
90
|
+
|
|
91
|
+
hitl: |-
|
|
92
|
+
Return the complete report directly. Relay-flow will show a native TUI approval dialog after the report is valid. Do not use OpenCode's Question tool for relay-flow approval.
|
|
93
|
+
|
|
94
|
+
repos:
|
|
95
|
+
payments:
|
|
96
|
+
# Code/runner repository. It must already be registered in Orca.
|
|
97
|
+
path: /work/payments
|
|
98
|
+
|
|
99
|
+
taskConfig:
|
|
100
|
+
# Jira repo-scoped required values. component is derived from the
|
|
101
|
+
# relay-flow repo name during repo registration.
|
|
102
|
+
project: PAY
|
|
103
|
+
component: payments
|
|
104
|
+
|
|
105
|
+
# Optional repo-level overrides inherit into workflows and nodes.
|
|
106
|
+
# assignee: relay-bot@example.com
|
|
107
|
+
# filters:
|
|
108
|
+
# labels:
|
|
109
|
+
# - backend
|
|
110
|
+
|
|
111
|
+
# Beads variant:
|
|
112
|
+
# taskPlugin: beads
|
|
113
|
+
# repos:
|
|
114
|
+
# payments:
|
|
115
|
+
# path: /work/payments
|
|
116
|
+
# taskConfig:
|
|
117
|
+
# beadsDir: /work/payments/.beads
|
|
118
|
+
#
|
|
119
|
+
# Beads uses the shared taskConfig fields (filters, assignee, transitionTo,
|
|
120
|
+
# templates) but does not accept Jira-only project/component fields. beadsDir
|
|
121
|
+
# is required at repo scope and must not be supplied only at root scope.
|
|
122
|
+
#
|
|
123
|
+
# Pi variant:
|
|
124
|
+
# harnessPlugin: pi
|
|
125
|
+
# harnessConfig:
|
|
126
|
+
# initial: |
|
|
127
|
+
# Task system: {{taskSystem}}
|
|
128
|
+
# Use the {{taskSystem}} tools to read the parent ticket {{ticket}}.
|
|
129
|
+
#
|
|
130
|
+
# Your mailbox is {{mailbox}}. Read its description and comments for node instructions and feedback.
|
|
131
|
+
# feedback: |
|
|
132
|
+
# New feedback was added to the comments section of your mailbox subtask {{mailbox}}. Read it.
|
|
133
|
+
#
|
|
134
|
+
# Pi accepts only initial and feedback harness templates. Pi workflow nodes
|
|
135
|
+
# may use agent: default or a native project prompt template in
|
|
136
|
+
# .pi/prompts/<agent>.md; HITL approval is provided by Pi's host UI.
|
|
137
|
+
#
|
|
138
|
+
# Herdr variant:
|
|
139
|
+
# runnerPlugin: herdr
|
|
140
|
+
# runnerConfig:
|
|
141
|
+
# session: relay-flow
|
|
142
|
+
# socketPath: /run/user/1000/herdr.sock
|
|
143
|
+
#
|
|
144
|
+
# Do not combine Orca-only baseRef with Herdr-only configuration.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Smallest Beads Task workflow.
|
|
2
|
+
# Register the code repository with a repo-scoped beadsDir before submitting.
|
|
3
|
+
# For Pi, use default or a native project prompt template from
|
|
4
|
+
# .pi/prompts/<agent>.md.
|
|
5
|
+
name: minimalBeadsTaskFlow
|
|
6
|
+
|
|
7
|
+
repos:
|
|
8
|
+
- payments
|
|
9
|
+
|
|
10
|
+
cleanupRunnerOnEnd: true
|
|
11
|
+
|
|
12
|
+
taskConfig:
|
|
13
|
+
filters:
|
|
14
|
+
parentStatuses:
|
|
15
|
+
- open
|
|
16
|
+
issueTypes:
|
|
17
|
+
- task
|
|
18
|
+
labels:
|
|
19
|
+
- relay-ready
|
|
20
|
+
|
|
21
|
+
nodes:
|
|
22
|
+
start:
|
|
23
|
+
onSuccess:
|
|
24
|
+
- target: implement
|
|
25
|
+
|
|
26
|
+
implement:
|
|
27
|
+
type: agent
|
|
28
|
+
agent: build
|
|
29
|
+
description: Implement the Beads Task and verify the changes.
|
|
30
|
+
onSuccess:
|
|
31
|
+
- target: end
|
|
32
|
+
onFailure:
|
|
33
|
+
- target: implement
|
|
34
|
+
|
|
35
|
+
end: {}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# Smallest Jira Task workflow with implementation, agent review, and HITL PR review.
|
|
2
|
+
# Register the repo with Jira project/component values before submitting.
|
|
3
|
+
# For Pi, replace build and plan with default.
|
|
4
|
+
name: minimalJiraTaskFlow
|
|
5
|
+
|
|
6
|
+
repos:
|
|
7
|
+
- payments
|
|
8
|
+
|
|
9
|
+
cleanupRunnerOnEnd: true
|
|
10
|
+
|
|
11
|
+
taskConfig:
|
|
12
|
+
filters:
|
|
13
|
+
parentStatuses:
|
|
14
|
+
- To Do
|
|
15
|
+
issueTypes:
|
|
16
|
+
- Task
|
|
17
|
+
labels:
|
|
18
|
+
- relay-ready
|
|
19
|
+
assignees:
|
|
20
|
+
- currentUser()
|
|
21
|
+
# Jira resolves currentUser() to the authenticated Jira email.
|
|
22
|
+
# Replace this list with `assignees: []` to match all assignees.
|
|
23
|
+
|
|
24
|
+
nodes:
|
|
25
|
+
start:
|
|
26
|
+
onSuccess:
|
|
27
|
+
- target: implement
|
|
28
|
+
|
|
29
|
+
implement:
|
|
30
|
+
type: agent
|
|
31
|
+
agent: build
|
|
32
|
+
description: |
|
|
33
|
+
Implement the Jira Task in the ticket worktree.
|
|
34
|
+
Run the relevant tests and verification commands.
|
|
35
|
+
onSuccess:
|
|
36
|
+
- target: review
|
|
37
|
+
when: Implementation and verification are complete.
|
|
38
|
+
onFailure:
|
|
39
|
+
- target: implement
|
|
40
|
+
when: Implementation needs another pass.
|
|
41
|
+
|
|
42
|
+
review:
|
|
43
|
+
type: agent
|
|
44
|
+
agent: plan
|
|
45
|
+
description: |
|
|
46
|
+
Review the implementation for correctness, regressions, missing tests,
|
|
47
|
+
and unresolved issues. Prepare the work for human PR review.
|
|
48
|
+
onSuccess:
|
|
49
|
+
- target: prReview
|
|
50
|
+
when: The implementation is ready for human PR review.
|
|
51
|
+
onFailure:
|
|
52
|
+
- target: implement
|
|
53
|
+
when: The review found issues requiring implementation changes.
|
|
54
|
+
|
|
55
|
+
prReview:
|
|
56
|
+
type: hitl
|
|
57
|
+
agent: plan
|
|
58
|
+
description: |
|
|
59
|
+
Review the implementation and proposed changes with a human.
|
|
60
|
+
Approve the work or request implementation changes.
|
|
61
|
+
onSuccess:
|
|
62
|
+
- target: end
|
|
63
|
+
when: The human approves the PR review.
|
|
64
|
+
onFailure:
|
|
65
|
+
- target: implement
|
|
66
|
+
when: The human requests changes.
|
|
67
|
+
|
|
68
|
+
end: {}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
# Complete workflow definition reference.
|
|
2
|
+
#
|
|
3
|
+
# This example uses Jira-native values and the OpenCode agent names build and
|
|
4
|
+
# plan. For Beads, use provider-native values: open, task, in_progress, and
|
|
5
|
+
# closed. For Pi, use default or a native project prompt template from
|
|
6
|
+
# .pi/prompts/<agent>.md.
|
|
7
|
+
|
|
8
|
+
name: referenceFlow
|
|
9
|
+
|
|
10
|
+
repos:
|
|
11
|
+
- payments
|
|
12
|
+
|
|
13
|
+
cleanupRunnerOnEnd: true
|
|
14
|
+
|
|
15
|
+
taskConfig:
|
|
16
|
+
# Optional assignee inherited by node mailboxes. It does not filter parent
|
|
17
|
+
# tickets; use filters.assignees for ticket pickup.
|
|
18
|
+
assignee: developer@example.com
|
|
19
|
+
|
|
20
|
+
filters:
|
|
21
|
+
parentStatuses:
|
|
22
|
+
- To Do
|
|
23
|
+
issueTypes:
|
|
24
|
+
- Task
|
|
25
|
+
labels:
|
|
26
|
+
- relay-ready
|
|
27
|
+
assignees:
|
|
28
|
+
- currentUser()
|
|
29
|
+
# Jira-only symbolic value: resolves to the authenticated Jira email.
|
|
30
|
+
# Other assignee values are normalized Jira emails, not JQL expressions.
|
|
31
|
+
|
|
32
|
+
# filters.assignees controls ticket pickup independently of assignee.
|
|
33
|
+
# Use an explicit empty list to include all assignees while retaining any
|
|
34
|
+
# inherited mailbox assignment:
|
|
35
|
+
# filters:
|
|
36
|
+
# assignees: []
|
|
37
|
+
# To disable mailbox assignment too, set assignee: "" at this scope.
|
|
38
|
+
|
|
39
|
+
# Prefer lifecycle-specific transitionTo values on start, work nodes, and
|
|
40
|
+
# end. A value here is inherited by every lifecycle point that reads it.
|
|
41
|
+
# transitionTo:
|
|
42
|
+
# parentStatus: In Progress
|
|
43
|
+
# taskStatus: In Progress
|
|
44
|
+
|
|
45
|
+
nodes:
|
|
46
|
+
start:
|
|
47
|
+
# start has no type, agent, description, nudgePrompt, or failure routes.
|
|
48
|
+
taskConfig:
|
|
49
|
+
transitionTo:
|
|
50
|
+
parentStatus: In Progress
|
|
51
|
+
onSuccess:
|
|
52
|
+
- target: implement
|
|
53
|
+
when: The parent ticket is ready for implementation.
|
|
54
|
+
|
|
55
|
+
implement:
|
|
56
|
+
type: agent
|
|
57
|
+
agent: build
|
|
58
|
+
description: |
|
|
59
|
+
Implement the parent ticket in the ticket worktree.
|
|
60
|
+
Run the relevant tests and verification commands.
|
|
61
|
+
nudgePrompt: |
|
|
62
|
+
Continue working on {{ticket}} at node {{node}}.
|
|
63
|
+
Read the latest mailbox feedback.
|
|
64
|
+
Valid next steps are: {{nextSteps}}.
|
|
65
|
+
Return the complete report contract.
|
|
66
|
+
taskConfig:
|
|
67
|
+
transitionTo:
|
|
68
|
+
taskStatus: In Progress
|
|
69
|
+
onSuccess:
|
|
70
|
+
- target: review
|
|
71
|
+
when: Implementation and verification are complete.
|
|
72
|
+
onFailure:
|
|
73
|
+
- target: implement
|
|
74
|
+
when: Implementation needs another pass.
|
|
75
|
+
|
|
76
|
+
review:
|
|
77
|
+
type: agent
|
|
78
|
+
agent: plan
|
|
79
|
+
description: |
|
|
80
|
+
Review the implementation for correctness, regressions, missing tests,
|
|
81
|
+
and unresolved issues. Prepare the work for human PR review.
|
|
82
|
+
taskConfig:
|
|
83
|
+
transitionTo:
|
|
84
|
+
taskStatus: In Progress
|
|
85
|
+
onSuccess:
|
|
86
|
+
- target: prReview
|
|
87
|
+
when: The implementation is ready for human PR review.
|
|
88
|
+
onFailure:
|
|
89
|
+
- target: implement
|
|
90
|
+
when: The review found issues requiring implementation changes.
|
|
91
|
+
|
|
92
|
+
prReview:
|
|
93
|
+
type: hitl
|
|
94
|
+
agent: plan
|
|
95
|
+
description: |
|
|
96
|
+
Review the implementation and proposed changes with a human.
|
|
97
|
+
Approve the work or request implementation changes.
|
|
98
|
+
taskConfig:
|
|
99
|
+
transitionTo:
|
|
100
|
+
taskStatus: In Progress
|
|
101
|
+
onSuccess:
|
|
102
|
+
- target: end
|
|
103
|
+
when: The human approves the PR review.
|
|
104
|
+
onFailure:
|
|
105
|
+
- target: implement
|
|
106
|
+
when: The human requests changes.
|
|
107
|
+
|
|
108
|
+
end:
|
|
109
|
+
# end has no type, agent, description, nudgePrompt, or routes.
|
|
110
|
+
taskConfig:
|
|
111
|
+
transitionTo:
|
|
112
|
+
parentStatus: Done
|
package/go.mod
CHANGED
|
@@ -1,13 +1,24 @@
|
|
|
1
1
|
module github.com/rajpopat27/relay-flow
|
|
2
2
|
|
|
3
|
-
go 1.
|
|
3
|
+
go 1.26.0
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
require (
|
|
6
6
|
github.com/cschleiden/go-workflows v1.4.2
|
|
7
7
|
github.com/google/renameio/v2 v2.0.1
|
|
8
8
|
github.com/google/uuid v1.6.0
|
|
9
9
|
github.com/yuin/goldmark v1.7.13
|
|
10
|
+
go.temporal.io/api v1.63.4
|
|
11
|
+
go.temporal.io/sdk v1.48.0
|
|
12
|
+
google.golang.org/protobuf v1.36.12
|
|
10
13
|
gopkg.in/yaml.v3 v3.0.1
|
|
14
|
+
modernc.org/sqlite v1.27.0
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
require (
|
|
18
|
+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
19
|
+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
|
|
20
|
+
google.golang.org/genproto/googleapis/api v0.0.0-20260825221802-da73d73af1c5 // indirect
|
|
21
|
+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260825221802-da73d73af1c5 // indirect
|
|
11
22
|
)
|
|
12
23
|
|
|
13
24
|
require (
|
|
@@ -19,7 +30,7 @@ require (
|
|
|
19
30
|
github.com/charmbracelet/bubbles v0.21.1-0.20250623103423-23b8fd6302d7 // indirect
|
|
20
31
|
github.com/charmbracelet/bubbletea v1.3.6 // indirect
|
|
21
32
|
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect
|
|
22
|
-
github.com/charmbracelet/huh v1.0.0
|
|
33
|
+
github.com/charmbracelet/huh v1.0.0
|
|
23
34
|
github.com/charmbracelet/lipgloss v1.1.0 // indirect
|
|
24
35
|
github.com/charmbracelet/x/ansi v0.9.3 // indirect
|
|
25
36
|
github.com/charmbracelet/x/cellbuf v0.0.13 // indirect
|
|
@@ -28,38 +39,49 @@ require (
|
|
|
28
39
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
29
40
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
30
41
|
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
|
|
42
|
+
github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect
|
|
31
43
|
github.com/go-errors/errors v1.4.2 // indirect
|
|
32
|
-
github.com/go-logr/logr v1.4.
|
|
44
|
+
github.com/go-logr/logr v1.4.3 // indirect
|
|
33
45
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
46
|
+
github.com/gogo/protobuf v1.3.2 // indirect
|
|
34
47
|
github.com/golang-migrate/migrate/v4 v4.16.2 // indirect
|
|
48
|
+
github.com/golang/mock v1.6.0 // indirect
|
|
49
|
+
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.2 // indirect
|
|
50
|
+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
|
|
35
51
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
36
52
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
37
53
|
github.com/jellydator/ttlcache/v3 v3.0.0 // indirect
|
|
38
54
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
|
|
39
55
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
|
40
|
-
github.com/mattn/go-isatty v0.0.20
|
|
56
|
+
github.com/mattn/go-isatty v0.0.20
|
|
41
57
|
github.com/mattn/go-localereader v0.0.1 // indirect
|
|
42
58
|
github.com/mattn/go-runewidth v0.0.16 // indirect
|
|
43
59
|
github.com/mitchellh/hashstructure/v2 v2.0.2 // indirect
|
|
44
60
|
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
|
|
45
61
|
github.com/muesli/cancelreader v0.2.2 // indirect
|
|
46
62
|
github.com/muesli/termenv v0.16.0 // indirect
|
|
63
|
+
github.com/nexus-rpc/nexus-proto-annotations v0.1.0 // indirect
|
|
64
|
+
github.com/nexus-rpc/sdk-go v0.7.0 // indirect
|
|
47
65
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
48
66
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
49
67
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
68
|
+
github.com/robfig/cron v1.2.0 // indirect
|
|
50
69
|
github.com/stretchr/objx v0.5.2 // indirect
|
|
51
|
-
github.com/stretchr/testify v1.
|
|
70
|
+
github.com/stretchr/testify v1.11.1 // indirect
|
|
52
71
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
|
53
|
-
go.opentelemetry.io/otel v1.
|
|
54
|
-
go.opentelemetry.io/otel/metric v1.
|
|
55
|
-
go.opentelemetry.io/otel/sdk v1.
|
|
56
|
-
go.opentelemetry.io/otel/trace v1.
|
|
72
|
+
go.opentelemetry.io/otel v1.43.0 // indirect
|
|
73
|
+
go.opentelemetry.io/otel/metric v1.43.0 // indirect
|
|
74
|
+
go.opentelemetry.io/otel/sdk v1.43.0 // indirect
|
|
75
|
+
go.opentelemetry.io/otel/trace v1.43.0 // indirect
|
|
57
76
|
go.uber.org/atomic v1.11.0 // indirect
|
|
58
|
-
golang.org/x/mod v0.
|
|
59
|
-
golang.org/x/
|
|
60
|
-
golang.org/x/
|
|
61
|
-
golang.org/x/
|
|
62
|
-
golang.org/x/
|
|
77
|
+
golang.org/x/mod v0.37.0 // indirect
|
|
78
|
+
golang.org/x/net v0.56.0 // indirect
|
|
79
|
+
golang.org/x/sync v0.22.0 // indirect
|
|
80
|
+
golang.org/x/sys v0.47.0 // indirect
|
|
81
|
+
golang.org/x/text v0.40.0 // indirect
|
|
82
|
+
golang.org/x/time v0.3.0 // indirect
|
|
83
|
+
golang.org/x/tools v0.47.0 // indirect
|
|
84
|
+
google.golang.org/grpc v1.82.1 // indirect
|
|
63
85
|
lukechampine.com/uint128 v1.2.0 // indirect
|
|
64
86
|
modernc.org/cc/v3 v3.40.0 // indirect
|
|
65
87
|
modernc.org/ccgo/v3 v3.16.13 // indirect
|
|
@@ -67,7 +89,6 @@ require (
|
|
|
67
89
|
modernc.org/mathutil v1.6.0 // indirect
|
|
68
90
|
modernc.org/memory v1.7.2 // indirect
|
|
69
91
|
modernc.org/opt v0.1.3 // indirect
|
|
70
|
-
modernc.org/sqlite v1.27.0 // indirect
|
|
71
92
|
modernc.org/strutil v1.1.3 // indirect
|
|
72
93
|
modernc.org/token v1.0.1 // indirect
|
|
73
94
|
)
|