Documents
workflow
workflow
Type
External
Status
Published
Created
Jun 13, 2026
Updated
Jun 13, 2026
Source
View

Community workflow#

Issue flow#

filed → approved → queued → claimed → done

StageMeaning
filedIssue opened and status/triage applied
approvedstatus/approved added by a maintainer
queuedstatus/queued is added automatically with status/approved
claimedstatus/claimed
doneIssue closed after three verifies or maintainer override

Pipeline widget#

Actionadon keeps the pipeline widget in the issue body and rewrites it in place at every stage.

Filed#

DAKOTA · issue pipeline
─────────────────────────────────────────────────
  ▶ filed report received
  · approved —
  · queued —
  · claimed —
  · done —
─────────────────────────────────────────────────
  report: attached/missing · confirms: N
  area: name · priority: name
  next action: same bug? ujust confirm NNN

Approved#

DAKOTA · issue pipeline
─────────────────────────────────────────────────
  ✓ filed report received
  ▶ approved cleared for the build queue
  · queued —
  · claimed —
  · done —
─────────────────────────────────────────────────
  report: attached/missing · confirms: N
  area: name · priority: name
  next action: comment /claim to take this

Queued#

DAKOTA · issue pipeline
─────────────────────────────────────────────────
  ✓ filed report received
  ✓ approved cleared for the build queue
  ▶ queued open for contributors
  · claimed —
  · done —
─────────────────────────────────────────────────
  report: attached/missing · confirms: N
  area: name · priority: name
  next action: comment /claim to take this

Claimed#

DAKOTA · issue pipeline
─────────────────────────────────────────────────
  ✓ filed report received
  ✓ approved cleared for the build queue
  ✓ queued open for contributors
  ▶ claimed @username
  · done —
─────────────────────────────────────────────────
  report: attached/missing · confirms: N
  area: name · priority: name
  next action: /unclaim to return to queue if stuck

Done#

DAKOTA · issue pipeline
─────────────────────────────────────────────────
  ✓ filed report received
  ✓ approved cleared for the build queue
  ✓ queued open for contributors
  ✓ claimed @username
  ▶ done fix shipped
─────────────────────────────────────────────────
  report: attached/missing · verified: N/3
  area: name · priority: name
  next action: ujust verify NNN — three verifies closes the case

Metadata rows are pulled live from GitHub at every transition:

  • report: — gist URL present in the body shows attached; no gist URL shows missing
  • confirms: — count of comments containing ujust confirm on open issues
  • verified: — count of comments containing ujust verify, shown as N/3 on closed issues
  • area: — extracted from area/* labels
  • priority: — extracted from priority/* labels

Triage signals#

  • report: attached means the full telemetry bundle is already there. Prioritize it over issues without a report and do not ask for data already in the gist.
  • confirms: N means N distinct hardware instances reproduced it. Treat high counts as higher priority.
  • verified: N/3 drives closure. Do not close the issue until it hits 3 or a maintainer explicitly overrides it.
  • High priority plus no assignee is a good immediate claim target.

Data donation pattern#

ujust report is a deliberate data donation. The reporter reviews the gist before filing, keeps ownership of it, and can delete it later. That is not telemetry.

ujust confirm adds another hardware instance without opening a duplicate. ujust verify adds post-fix evidence on real hardware and moves the issue toward closure.

flow/agent-donation issues: write the report as a comment, cite sources, close the issue. Do not open a PR.

Actionadon bot#

CommentWho can use itEffect
/claimanyoneAdds status/claimed, assigns the commenter
/unclaimassignee or write+Removes status/claimed, unassigns
/approve or /lgtmwrite+Adds lgtm

The widget lives in the issue body and is updated in place. Zero pipeline comments. One edit per stage.

<!-- actionadon-pipeline --> is the sentinel block Actionadon uses to find the widget. Do not remove it by hand.

Adding status/approved, or using /approve or /lgtm, also auto-queues the issue by adding status/queued.

Hive#

Copy files/hive/hive-project.yaml.example to /etc/hive/hive-project.yaml and load files/hive/agent-policies/ as per-agent CLAUDE.md overrides.

Labels#

LabelMeaning
status/triageNeeds human review — set kind, priority, and area
status/discussingNot ready for the agent queue
status/approvedApproved — ready for contributors
status/queuedHas a spec, ready to claim — comment /claim
status/claimedIn active work — comment /unclaim to return
agent/blockedBlocked — needs human input before work can continue
holdDo not touch
do-not-mergeDo not merge or automate
lgtmMaintainer approved — ready to merge
tests:passe2e tests passed; enables label-gated auto-merge
kind:bug / kind:improvement / kind:tech-debt / kind:github-actionChange type
flow/agent-donationInvestigation request — report comment, not code
flow/project-report / flow/issue-review / flow/pr-reviewHive scanner flow routing
needs-human/agent-oopsAgent error — do not touch; humans only

Hive exempt (do not touch): hold, do-not-merge, status/discussing, status/approved, status/claimed, agent/blocked, needs-human/agent-oops, duplicate, wontfix, stale

Image stream and branch model#

Dakota publishes three streams from the main branch:

main (source of truth)
  └─► build.yml (nightly + merge_group + workflow_dispatch)
          └─► publish.yml (workflow_run on build success)
                  ├─► :sha — immutable per-build tag
                  └─► :testing — promoted after e2e smoke passes
                              weekly-testing-promotion.yml
                              (Sunday 06:00 UTC, production environment approval)
                                       ├─► :latest (+ fast-forwards latest branch)
                                       └─► :stable (+ fast-forwards stable branch)
StreamTagCadenceGate
Development:shaEvery merge to mainNone
Testing:testingNightlye2e smoke
Latest:latestWeekly (Sunday)production environment approval
Stable:stableWeekly (Sunday)Same as :latest

All code merges to main. The :testing Docker tag is the published nightly result built from main. The testing, latest, and stable git branches are bookmarks fast-forwarded by the promotion workflows — they are not development branches.

Branch protection is only on main. Required status checks: validate + e2e.

Branch flow for contributors#

# Branch from upstream/main (never fork's local main)
git checkout upstream/main -b feat/my-change

# Work, validate, commit
just validate
git commit -m "feat(bluefin): ..."

# Push and open PR against main
git push upstream feat/my-change
gh pr create --repo projectbluefin/dakota --base main
workflow | Dosu