You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
task = "Native structural PR gate producer. Review only the bounded evidence prompt provided by the orchestrator and emit one canonical adf:gate-result block. Do not post comments or statuses."
25
+
task = "Native structural PR gate producer. Review only the bounded evidence prompt provided by the orchestrator and emit one canonical adf:gate-result block. Do not call tools, post comments, or update statuses."
# Event-dispatched via the native PR gate path (DispatchTask::ReviewPr).
4
+
# The orchestrator builds a bounded evidence prompt containing the PR diff,
5
+
# changed files, linked issue, and acceptance criteria, then delivers it to
6
+
# the agent via stdin. The agent validates the change against the linked
7
+
# issue, acceptance criteria, user-visible behaviour, and release readiness,
8
+
# then emits one canonical <!-- adf:gate-result {...} --> block.
9
+
#
10
+
# Gate context: adf/validation
11
+
# Discipline: requirements validation
12
+
#
13
+
# The orchestrator owns all Gitea comment/status posting and gate-result
14
+
# parsing. This agent must NOT post comments, update statuses, or attempt
15
+
# to read skills outside its working directory.
16
+
#
17
+
# NO schedule field -- event-driven, not cron.
18
+
# Subscription-only models only (C1 constraint).
19
+
20
+
[[agents]]
21
+
name = "pr-validator"
22
+
layer = "Safety"
23
+
cli_tool = "/home/alex/.local/bin/claude"
24
+
model = "sonnet"
25
+
fallback_model = "kimi-for-coding/k2p5"
26
+
persona = "Carthos"
27
+
max_cpu_seconds = 1800
28
+
grace_period_secs = 30
29
+
task = "Native requirements validation PR gate producer. Validate only the bounded evidence prompt provided by the orchestrator and emit one canonical adf:gate-result block. Do not call tools, post comments, or update statuses."
# Event-dispatched via the native PR gate path (DispatchTask::ReviewPr).
4
+
# The orchestrator builds a bounded evidence prompt containing the PR diff,
5
+
# changed files, test evidence, and design intent, then delivers it to the
6
+
# agent via stdin. The agent verifies the implementation evidence against
7
+
# the design intent and test coverage, then emits one canonical
8
+
# <!-- adf:gate-result {...} --> block.
9
+
#
10
+
# Gate context: adf/verification
11
+
# Discipline: design and test verification
12
+
#
13
+
# The orchestrator owns all Gitea comment/status posting and gate-result
14
+
# parsing. This agent must NOT post comments, update statuses, or attempt
15
+
# to read skills outside its working directory.
16
+
#
17
+
# NO schedule field -- event-driven, not cron.
18
+
# Subscription-only models only (C1 constraint).
19
+
20
+
[[agents]]
21
+
name = "pr-verifier"
22
+
layer = "Safety"
23
+
cli_tool = "/home/alex/.local/bin/claude"
24
+
model = "sonnet"
25
+
fallback_model = "kimi-for-coding/k2p5"
26
+
persona = "Carthos"
27
+
max_cpu_seconds = 1800
28
+
grace_period_secs = 30
29
+
task = "Native design and test verification PR gate producer. Verify only the bounded evidence prompt provided by the orchestrator and emit one canonical adf:gate-result block. Do not call tools, post comments, or update statuses."
0 commit comments